/* torecon – Apple-style Design System */
:root {
  --bg: #FFFFFF;
  --bg-alt: #F5F5F7;
  --bg-dark: #1D1D1F;
  --text: #1D1D1F;
  --text-secondary: #6E6E73;
  --text-tertiary: #86868B;
  --accent: #0071E3;
  --accent-hover: #0077ED;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.15);
  --nav-bg: rgba(255,255,255,0.80);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  --container: 980px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
}

/* ─── Typography ─────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h1 { font-size: clamp(40px, 7vw, 80px); }
h2 { font-size: clamp(28px, 4.5vw, 52px); }
h3 { font-size: 22px; font-weight: 600; }
h4 { font-size: 17px; font-weight: 600; }
p { line-height: 1.65; }
a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.8; }

/* ─── Language Bar ───────────────────────────── */
.lang-bar {
  background: var(--bg-dark);
  padding: 6px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}
.lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.65);
  padding: 2px 10px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.lang-btn.active, .lang-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

/* ─── Navigation ─────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
  padding: 6px 14px;
  border-radius: 20px;
  transition: var(--transition);
  display: block;
}
.nav-links a:hover { background: var(--bg-alt); opacity: 1; }
.nav-links a.active { color: var(--accent); }
.nav-internal {
  border: 1px solid var(--border-strong) !important;
  color: var(--text-secondary) !important;
  font-weight: 400 !important;
  font-size: 12px !important;
  margin-left: 8px;
  background: none !important;
}
.nav-internal:hover { background: var(--bg-alt) !important; opacity: 1 !important; color: var(--text) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── Container ──────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 980px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); opacity: 1; }
.btn-secondary {
  background: rgba(0,0,0,0.05);
  color: var(--text);
}
.btn-secondary:hover { background: rgba(0,0,0,0.1); opacity: 1; }
.btn-outline-white {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); opacity: 1; }
.btn-text {
  background: none;
  color: var(--accent);
  padding: 8px 0;
}
.btn-text::after { content: ' →'; }
.btn-text:hover { opacity: 0.75; }

/* ─── Hero ───────────────────────────────────── */
.hero {
  text-align: center;
  padding: 100px 24px 80px;
  background: var(--bg);
}
.hero-eyebrow {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0;
}
.hero h1 {
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub {
  font-size: clamp(19px, 2.5vw, 24px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Section base ───────────────────────────── */
section { padding: 80px 0; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-headline {
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.section-sub {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.55;
}
.section-header { margin-bottom: 56px; }
.section-header-center { text-align: center; }
.section-header-center .section-sub { margin: 0 auto; }

.bg-alt { background: var(--bg-alt); }
.bg-dark {
  background: var(--bg-dark);
  color: #fff;
}
.bg-dark .section-eyebrow { color: rgba(255,255,255,0.55); }
.bg-dark .section-headline { color: #fff; }
.bg-dark .section-sub { color: rgba(255,255,255,0.65); }

/* ─── Stats strip ────────────────────────────── */
.stats-strip {
  background: var(--bg-alt);
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ─── About / Profile ────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
}
.profile-photo-wrap { text-align: center; }
.profile-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg);
}
.profile-initials {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0071E3, #0A2FA8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-lg);
}
.profile-name-sub {
  font-size: 14px;
  color: var(--text-tertiary);
  text-align: center;
}
.about-text .about-title {
  font-size: 17px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0;
}
.about-text p { color: var(--text-secondary); margin-bottom: 16px; font-size: 17px; }
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #0A66C2;
  color: #fff;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}
.btn-linkedin:hover { background: #004182; opacity: 1; }
.btn-linkedin svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

/* Contact page: photo in sidebar */
.contact-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.contact-photo-initials {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0071E3, #0A2FA8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.contact-person-name { font-weight: 600; font-size: 17px; margin-bottom: 2px; }
.contact-person-title { font-size: 14px; color: var(--text-tertiary); margin-bottom: 16px; }
.btn-linkedin-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #0A66C2;
  color: #fff;
  border-radius: 980px;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  margin-bottom: 32px;
}
.btn-linkedin-sm:hover { background: #004182; opacity: 1; }
.btn-linkedin-sm svg { width: 14px; height: 14px; fill: #fff; }

@media (max-width: 768px) {
  .about-layout { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .about-actions { justify-content: center; }
}

/* ─── Feature cards ──────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--bg);
}
.feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}
.feature-card h3 {
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ─── News cards ─────────────────────────────── */
.news-stand {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.news-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.news-card-top {
  padding: 24px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.news-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,113,227,0.08);
  padding: 3px 10px;
  border-radius: 20px;
}
.news-date {
  font-size: 13px;
  color: var(--text-tertiary);
}
.news-card-body {
  padding: 0 24px 28px;
  flex: 1;
}
.news-card-body h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.news-card-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 12px;
}
.news-read-more {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
}
a.news-card { text-decoration: none; color: inherit; cursor: pointer; }
a.news-card h3 { color: var(--text); }

/* ─── References – Logo Grid ─────────────────── */
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 48px 0;
}
.logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 28px;
  width: 160px;
  height: 90px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.logo-tile:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  border-color: transparent;
  transform: translateY(-2px);
}
.logo-tile img {
  max-width: 120px;
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.75);
  transition: filter .25s;
}
.logo-tile:hover img {
  filter: grayscale(0) opacity(1);
}
.logo-missing {
  font-size: 10px;
  color: #ff3b30;
  word-break: break-all;
  text-align: center;
  line-height: 1.3;
}

/* ─── CTA section ────────────────────────────── */
.cta-section {
  background: var(--bg-dark);
  text-align: center;
  padding: 100px 24px;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 21px; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Page header ────────────────────────────── */
.page-header {
  background: var(--bg-alt);
  padding: 72px 24px 64px;
  border-bottom: 1px solid var(--border);
}
.page-header .container { text-align: center; }
.page-header h1 { margin-bottom: 12px; }
.page-header p { font-size: 19px; color: var(--text-secondary); max-width: 520px; margin: 0 auto; }

/* ─── Contact ────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-info-block { margin-bottom: 32px; }
.contact-info-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 17px;
  color: var(--text);
}
.contact-info-value a { color: var(--accent); }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,113,227,0.12);
}
textarea.form-control { min-height: 140px; resize: vertical; }

/* ─── Internal / Login ───────────────────────── */
.login-page {
  min-height: 100vh;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.login-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.login-logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  display: block;
}
.login-logo span { color: var(--accent); }
.login-card h2 {
  font-size: 22px;
  margin-bottom: 6px;
  margin-top: 24px;
}
.login-card .login-sub {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.login-error {
  background: rgba(255,59,48,0.08);
  color: #D70015;
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
  text-align: left;
}
.login-card .form-group { text-align: left; }
.login-card .btn { width: 100%; justify-content: center; margin-top: 8px; padding: 13px; font-size: 16px; }

/* ─── Dashboard ──────────────────────────────── */
.dashboard-wrap { display: flex; min-height: 100vh; }
.sidebar {
  width: 240px;
  background: var(--bg-dark);
  flex-shrink: 0;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
}
.sidebar-logo {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  padding: 0 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.sidebar-logo span { color: var(--accent); }
.sidebar-nav { list-style: none; flex: 1; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--transition);
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.sidebar-nav a.active { border-left: 2px solid var(--accent); }
.sidebar-footer { padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.sidebar-footer a { color: rgba(255,255,255,0.5); font-size: 13px; }
.sidebar-footer a:hover { color: #fff; }

.dash-main { flex: 1; background: var(--bg-alt); overflow-y: auto; }
.dash-topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dash-topbar h1 { font-size: 20px; }
.dash-content { padding: 32px; }

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.kpi-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.kpi-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}
.kpi-value {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}
.kpi-delta {
  font-size: 13px;
  color: #34C759;
  margin-top: 4px;
}

.dash-panel {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.dash-panel h3 {
  font-size: 17px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.dash-list { list-style: none; }
.dash-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
}
.dash-list li:last-child { border-bottom: none; }
.dash-list li span:first-child { color: var(--text); font-weight: 500; }

/* ─── Footer ─────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  display: block;
}
.footer-brand .footer-logo span { color: var(--accent); }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 240px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: #fff; opacity: 1; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: #fff; opacity: 1; }

/* ─── Imprint / Legal ────────────────────────── */
.legal-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 24px;
}
.legal-content h2 { font-size: 22px; margin: 40px 0 12px; }
.legal-content p, .legal-content address { font-size: 16px; color: var(--text-secondary); font-style: normal; line-height: 1.7; }

/* ─── Newsletter ─────────────────────────────── */
.wip-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFF9E6;
  border: 1.5px solid #F5C518;
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 48px;
  font-size: 15px;
  color: #7A5800;
}
.wip-banner .wip-icon { font-size: 28px; flex-shrink: 0; }
.wip-banner strong { display: block; font-weight: 600; margin-bottom: 2px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.pricing-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.pricing-card.featured {
  background: var(--bg-dark);
  border-color: var(--accent);
}
.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-period,
.pricing-card.featured li { color: rgba(255,255,255,0.85); }
.pricing-card.featured .pricing-name { color: var(--accent); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-name {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.pricing-price {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-period {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}
.pricing-card ul {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-card ul li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; justify-content: center; opacity: 0.5; cursor: not-allowed; }

.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
/* Base chip – display only (homepage) */
.topic-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: default;
  transition: var(--transition);
}
/* Interactive chip (newsletter) */
.topic-interactive {
  cursor: pointer;
  user-select: none;
}
.topic-interactive:hover { background: #EAEAEC; border-color: rgba(0,0,0,0.15); }
.topic-interactive.selected {
  border-color: var(--accent);
  background: rgba(0,113,227,0.06);
}
.topic-interactive.selected .topic-chip-label { color: var(--accent); }
.topic-interactive.chip-disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}
/* Check indicator */
.topic-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  flex-shrink: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 11px;
  color: transparent;
}
.topic-interactive.selected .topic-check {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.topic-interactive.selected .topic-check::after { content: '✓'; }
.topic-chip-icon { font-size: 20px; flex-shrink: 0; }
.topic-chip-text { flex: 1; min-width: 0; }
.topic-chip-label { font-size: 14px; font-weight: 500; color: var(--text); }
.topic-chip-freq { font-size: 12px; color: var(--text-tertiary); margin-top: 1px; }

.newsletter-form-wrap {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.newsletter-form-disabled {
  position: absolute;
  inset: 0;
  background: rgba(245,245,247,0.75);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--radius-lg);
  z-index: 10;
}
.newsletter-form-disabled .wip-icon-lg { font-size: 48px; }
.newsletter-form-disabled p { font-size: 16px; font-weight: 600; color: var(--text); text-align: center; max-width: 260px; line-height: 1.4; }


/* ─── Divider ────────────────────────────────── */
hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ─── Webdesign service section ──────────────── */
@media (max-width: 680px) {
  .webdesign-compare { grid-template-columns: 1fr !important; }
  .webdesign-trust   { flex-direction: column; }
  .webdesign-header  { grid-template-columns: 1fr !important; }
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.96); backdrop-filter: blur(20px); padding: 12px 16px 20px; gap: 0; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 16px; border-radius: 8px; }
  .nav-internal { margin-left: 0; margin-top: 8px; }
  .hamburger { display: flex; }
  .site-nav { position: relative; }
  .nav-inner { position: relative; }

  h1 { letter-spacing: -0.03em; }
  .hero { padding: 64px 20px 56px; }
  section { padding: 56px 0; }
  .cards-grid, .news-grid { grid-template-columns: 1fr; }
  .logo-grid { gap: 14px; padding: 32px 0; }
  .logo-tile { width: 130px; height: 76px; padding: 14px 18px; }
  .logo-tile img { max-width: 96px; max-height: 44px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .dashboard-wrap { flex-direction: column; }
  .sidebar { width: 100%; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-actions, .cta-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr; }
  .login-card { padding: 36px 24px; }
}

/* ─── Cookie Consent Banner ───────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(29, 29, 31, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.4s ease;
}
#cookie-banner.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
}
#cookie-banner.cookie-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 260px;
}
.cookie-text p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.cookie-text a {
  color: #0A84FF;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.cookie-btn:hover { opacity: 0.85; transform: scale(1.02); }
.cookie-btn--secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.cookie-btn--primary {
  background: var(--accent);
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ─── WhatsApp Floating Button ────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.25s ease,
              background 0.2s ease;
  animation: waFabIn 0.5s 1.2s cubic-bezier(0.34,1.56,0.64,1) both;
}
.whatsapp-fab:hover {
  background: #20BD5A;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55), 0 2px 10px rgba(0,0,0,0.18);
  opacity: 1;
}
.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  flex-shrink: 0;
}
@keyframes waFabIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
@media (max-width: 480px) {
  .whatsapp-fab { bottom: 20px; right: 18px; width: 50px; height: 50px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
}
