/* ============================================================
   SWISSCORE — WordPress Theme Stylesheet
   Design system extracted from landing.html
   © 2026 RSDN SA
   ============================================================ */

/* === CSS CUSTOM PROPERTIES === */
:root {
  --swiss-red: #DC143C;
  --swiss-red-dark: #a8092e;
  --swiss-red-light: rgba(220,20,60,0.08);
  --swiss-red-glow: rgba(220,20,60,0.22);
  --stone-grey: #4A4A4A;
  --pure-white: #FFFFFF;
  --soft-white: #F7F5F3;
  --bg-dark: #2a2a2a;
  --text-light: #f7f5f3;
  --muted-light: #b0b0b0;
  --line-dark: rgba(74,74,74,0.12);
  --shadow: 0 18px 60px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 80px rgba(0,0,0,0.16);
  --shadow-card: 0 8px 32px rgba(18,24,40,0.04);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --max-width: 1280px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-snappy: cubic-bezier(0.2, 0, 0, 1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: var(--stone-grey);
  background: var(--pure-white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* === LAYOUT === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.section-padding { padding: 120px 0; }
.section-padding-sm { padding: 80px 0; }

/* === TYPOGRAPHY === */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 16px; font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 700; color: var(--swiss-red);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.6; }
.section-title {
  font-size: clamp(34px, 4.5vw, 60px); line-height: 1;
  letter-spacing: -0.04em; font-weight: 800; color: var(--stone-grey);
}
.section-title em { font-style: normal; color: var(--swiss-red); }
.section-subtitle {
  margin-top: 16px; max-width: 640px;
  font-size: 18px; color: rgba(74,74,74,0.72); line-height: 1.7;
}

/* WordPress content typography */
.entry-content h1 { font-size: clamp(34px, 4.5vw, 56px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 24px; }
.entry-content h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin: 48px 0 20px; }
.entry-content h3 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin: 36px 0 16px; }
.entry-content h4 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; }
.entry-content p { font-size: 17px; line-height: 1.75; color: rgba(74,74,74,0.85); margin-bottom: 20px; }
.entry-content a { color: var(--swiss-red); border-bottom: 1px solid rgba(220,20,60,0.3); transition: border-color 0.3s; }
.entry-content a:hover { border-color: var(--swiss-red); }
.entry-content ul, .entry-content ol { margin: 20px 0; padding-left: 24px; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { font-size: 17px; line-height: 1.75; color: rgba(74,74,74,0.85); margin-bottom: 8px; }
.entry-content blockquote {
  border-left: 4px solid var(--swiss-red);
  padding: 20px 28px; margin: 32px 0;
  background: var(--swiss-red-light); border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 18px; font-weight: 500; line-height: 1.6; color: var(--stone-grey);
}
.entry-content pre {
  background: var(--bg-dark); color: var(--text-light);
  padding: 24px; border-radius: var(--radius-md);
  overflow-x: auto; font-size: 14px; line-height: 1.6; margin: 24px 0;
}
.entry-content code { background: rgba(74,74,74,0.06); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }
.entry-content pre code { background: none; padding: 0; }
.entry-content img { border-radius: var(--radius-lg); margin: 32px 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.entry-content th, .entry-content td { padding: 12px 16px; border-bottom: 1px solid var(--line-dark); text-align: left; font-size: 15px; }
.entry-content th { font-weight: 700; background: var(--soft-white); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 700;
  font-size: 14px; letter-spacing: 0.02em; border: 1px solid transparent;
  cursor: pointer; transition: all .3s var(--ease-out-expo);
  will-change: transform; font-family: inherit;
}
.btn-primary {
  background: var(--swiss-red); color: white;
  box-shadow: 0 8px 28px var(--swiss-red-glow);
}
.btn-primary:hover { background: var(--swiss-red-dark); transform: translateY(-2px); box-shadow: 0 12px 36px var(--swiss-red-glow); }
.btn-ghost {
  color: var(--stone-grey); border-color: rgba(74,74,74,0.2); background: transparent;
}
.btn-ghost:hover { border-color: var(--swiss-red); color: var(--swiss-red); }
.btn-white {
  background: white; color: var(--stone-grey); font-weight: 800;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.btn-white:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.14); transform: translateY(-2px); }
.btn-light {
  background: rgba(255,255,255,0.14); color: white; border-color: rgba(255,255,255,0.2);
}
.btn-light:hover { background: rgba(255,255,255,0.22); }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--line-dark);
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}
.admin-bar .navbar { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .navbar { top: 46px; } }
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px; background: var(--swiss-red); color: white;
  border-radius: 10px; display: grid; place-items: center;
  font-weight: 900; font-size: 13px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-weight: 800; font-size: 15px; letter-spacing: 0.04em; color: var(--stone-grey); }
.logo-tagline { font-size: 11px; color: rgba(74,74,74,0.5); letter-spacing: 0.06em; }
.nav-links { display: flex; gap: 24px; font-size: 14px; font-weight: 500; }
.nav-links a {
  color: rgba(74,74,74,0.7); position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px;
  background: var(--swiss-red); transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}
.nav-links a:hover,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a { color: var(--swiss-red); }
.nav-links a:hover::after,
.nav-links .current-menu-item > a::after,
.nav-links .current_page_item > a::after { transform: scaleX(1); transform-origin: left; }
.nav-cta .btn { font-size: 13px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--stone-grey); margin: 5px 0; transition: .3s; }

/* Dropdown (sub-menu) */
.nav-links li { position: relative; }
.nav-links .sub-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: white; border-radius: var(--radius-md);
  box-shadow: var(--shadow); border: 1px solid var(--line-dark);
  padding: 12px 0; min-width: 200px;
  opacity: 0; visibility: hidden; transition: all 0.3s var(--ease-out-expo);
  display: flex; flex-direction: column;
}
.nav-links li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-links .sub-menu a {
  padding: 8px 20px; font-size: 14px; display: block; white-space: nowrap;
}
.nav-links .sub-menu a:hover { background: var(--swiss-red-light); }
.nav-links .sub-menu a::after { display: none; }

/* === HERO === */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 42%), var(--swiss-red);
  color: white; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  width: 100%; padding: 140px 0 100px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 48px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,0.6); margin-bottom: 20px;
}
.hero-eyebrow::before { content: ""; width: 28px; height: 1px; background: rgba(255,255,255,0.4); }
.hero-title {
  font-size: clamp(42px, 6.5vw, 88px); line-height: 0.94;
  letter-spacing: -0.05em; font-weight: 900; margin-bottom: 24px;
}
.hero-title em { font-style: normal; color: rgba(255,255,255,0.65); font-weight: 300; }
.hero-body {
  font-size: clamp(17px, 1.6vw, 20px); max-width: 560px;
  color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num { font-size: 36px; font-weight: 900; letter-spacing: -0.04em; line-height: 1; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.hero-visual {
  position: relative; display: flex; align-items: center;
  justify-content: center; min-height: 480px;
}
.shield-emblem {
  width: 100%; max-width: 420px; height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.18));
}

/* === SOCIAL PROOF === */
.proof-section {
  background: var(--soft-white); padding: 40px 0;
  border-bottom: 1px solid var(--line-dark);
}
.proof-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.proof-item {
  font-size: 14px; font-weight: 600; color: rgba(74,74,74,0.35);
  letter-spacing: 0.08em; text-transform: uppercase; transition: color .3s;
}
.proof-item:hover { color: rgba(74,74,74,0.6); }

/* === BENEFITS / CARDS === */
.benefits-section { padding: 120px 0; }
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.benefit-card {
  position: relative; padding: 32px; border-radius: var(--radius-xl);
  border: 1px solid rgba(74,74,74,0.08);
  background: white; box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease-out-expo), box-shadow .4s var(--ease-out-expo);
  overflow: hidden; transform-style: preserve-3d; will-change: transform;
}
.card-shine {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  border-radius: var(--radius-xl);
}
.benefit-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--swiss-red-light); color: var(--swiss-red);
  display: grid; place-items: center; font-size: 20px; margin-bottom: 20px;
}
.benefit-card h3 {
  font-size: 20px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--stone-grey); margin-bottom: 10px;
}
.benefit-card p {
  font-size: 15px; color: rgba(74,74,74,0.7); line-height: 1.65; margin-bottom: 16px;
}
.benefit-result {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--swiss-red);
  padding-top: 16px; border-top: 1px solid rgba(74,74,74,0.06);
}
.benefit-card-accent {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 42%), var(--swiss-red);
  color: white; border-color: transparent; box-shadow: var(--shadow);
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.benefit-card-accent h3 { color: white; font-size: 28px; }
.benefit-card-accent p { color: rgba(255,255,255,0.82); font-size: 17px; }
.benefit-card-accent .benefit-result { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.15); }
.benefit-card-accent .benefit-icon { background: rgba(255,255,255,0.14); color: white; }
.accent-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.accent-stat {
  padding: 20px; border-radius: 16px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}
.accent-stat-num { font-size: 32px; font-weight: 900; letter-spacing: -0.04em; display: block; }
.accent-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; display: block; }

/* === HOW IT WORKS === */
.how-section { padding: 120px 0; background: var(--soft-white); }
.how-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 48px; position: relative;
}
.how-step { padding: 32px 28px; text-align: center; position: relative; }
.how-step::after {
  content: ''; position: absolute; top: 40px; right: 0;
  width: 1px; height: 40%; background: var(--line-dark);
}
.how-step:last-child::after { display: none; }
.how-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--swiss-red); color: white;
  display: inline-grid; place-items: center;
  font-weight: 900; font-size: 18px; margin-bottom: 18px;
}
.how-step h3 {
  font-size: 17px; font-weight: 800; color: var(--stone-grey);
  margin-bottom: 8px; letter-spacing: -0.02em;
}
.how-step p { font-size: 14px; color: rgba(74,74,74,0.65); line-height: 1.6; }

/* === TRUST STRIP === */
.trust-section { background: var(--bg-dark); padding: 48px 0; }
.trust-grid {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.trust-pill { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8); }
.trust-pill-icon {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; display: grid; place-items: center;
  font-size: 14px; color: var(--swiss-red);
}
.trust-pill strong { display: block; font-size: 14px; color: white; }
.trust-pill span { font-size: 12px; color: rgba(255,255,255,0.45); }
.trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.08); }

/* === DIFFERENTIATION === */
.diff-section { padding: 120px 0; }
.diff-grid {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 28px; margin-top: 48px; align-items: start;
}
.diff-col { padding: 32px; border-radius: var(--radius-xl); }
.diff-col-them { background: rgba(74,74,74,0.03); border: 1px solid rgba(74,74,74,0.08); }
.diff-col-us {
  background: linear-gradient(180deg, rgba(220,20,60,0.96), rgba(168,9,46,0.98));
  color: white; box-shadow: var(--shadow-lg);
}
.diff-label {
  display: inline-block; font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700; margin-bottom: 22px;
}
.diff-label-them { color: rgba(74,74,74,0.4); }
.diff-label-us { color: rgba(255,255,255,0.7); }
.diff-list { display: grid; gap: 14px; }
.diff-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.5; }
.diff-list-them li i { color: rgba(74,74,74,0.25); margin-top: 3px; }
.diff-list-them li { color: rgba(74,74,74,0.55); }
.diff-list-us li i { color: rgba(255,255,255,0.7); margin-top: 3px; }
.diff-list-us li { color: rgba(255,255,255,0.9); }
.diff-separator { display: flex; flex-direction: column; align-items: center; gap: 12px; padding-top: 60px; }
.diff-sep-line { width: 1px; height: 60px; background: rgba(74,74,74,0.1); }
.diff-sep-logo {
  width: 48px; height: 48px; background: var(--swiss-red); color: white;
  border-radius: 14px; display: grid; place-items: center; font-weight: 900; font-size: 15px;
}

/* === TESTIMONIAL === */
.testimonial-section { padding: 100px 0; background: var(--soft-white); }
.testimonial-card { max-width: 800px; margin: 0 auto; text-align: center; }
.testimonial-card blockquote {
  font-size: clamp(22px, 3vw, 32px); font-weight: 600;
  letter-spacing: -0.02em; color: var(--stone-grey); line-height: 1.4; margin-bottom: 24px;
  border: none; background: none; padding: 0;
}
.testimonial-card blockquote em { font-style: normal; color: var(--swiss-red); }
.testimonial-card cite { display: block; font-size: 15px; font-style: normal; color: rgba(74,74,74,0.5); }

/* === CTA / CONTACT FORM === */
.cta-section { padding: 120px 0; }
.cta-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.cta-title {
  font-size: clamp(34px, 5vw, 56px); line-height: 1;
  letter-spacing: -0.04em; font-weight: 900; color: var(--stone-grey); margin-bottom: 16px;
}
.cta-title em { font-style: normal; color: var(--swiss-red); }
.cta-body {
  font-size: 18px; color: rgba(74,74,74,0.7); max-width: 560px;
  margin: 0 auto 36px; line-height: 1.7;
}
.contact-form { text-align: left; max-width: 600px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--stone-grey); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid rgba(74,74,74,0.12);
  border-radius: 12px; background: white; color: var(--stone-grey);
  font-family: inherit; font-size: 15px;
  transition: border-color .3s, box-shadow .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--swiss-red);
  box-shadow: 0 0 0 3px rgba(220,20,60,0.1);
}
.form-group-full { margin-bottom: 16px; }
.form-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
.form-note { margin-top: 14px; font-size: 12px; color: rgba(74,74,74,0.45); text-align: center; }

/* WordPress form compatibility (CF7, WPForms, etc.) */
.wpcf7 .wpcf7-form-control-wrap { display: block; }
.wpcf7 input, .wpcf7 select, .wpcf7 textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid rgba(74,74,74,0.12);
  border-radius: 12px; background: white; color: var(--stone-grey);
  font-family: inherit; font-size: 15px;
  transition: border-color .3s, box-shadow .3s;
}
.wpcf7 input:focus, .wpcf7 select:focus, .wpcf7 textarea:focus {
  outline: none; border-color: var(--swiss-red);
  box-shadow: 0 0 0 3px rgba(220,20,60,0.1);
}
.wpcf7 input[type="submit"] {
  background: var(--swiss-red); color: white; font-weight: 700;
  border: none; border-radius: 999px; padding: 14px 28px; cursor: pointer;
  box-shadow: 0 8px 28px var(--swiss-red-glow);
  transition: all .3s var(--ease-out-expo);
}
.wpcf7 input[type="submit"]:hover { background: var(--swiss-red-dark); }

/* === FOOTER === */
.site-footer {
  background: var(--bg-dark); color: rgba(255,255,255,0.6); padding: 56px 0 28px;
}
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 48px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-desc { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.45); max-width: 320px; }
.footer-motto { margin-top: 12px; font-size: 13px; font-style: italic; color: var(--swiss-red); }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-nav h5 {
  font-size: 13px; font-weight: 700; color: white;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}
.footer-nav ul { display: grid; gap: 8px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.4); transition: color .3s; }
.footer-nav a:hover { color: white; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; flex-wrap: wrap; gap: 16px;
}
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; font-size: 13px; }
.footer-legal a { color: rgba(255,255,255,0.35); transition: color .3s; }
.footer-legal a:hover { color: white; }
.footer-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.3);
}

/* === PAGE HEADER (for interior pages) === */
.page-header {
  background: var(--swiss-red); color: white;
  padding: 160px 0 80px; text-align: center;
}
.page-header .page-title {
  font-size: clamp(36px, 5vw, 64px); font-weight: 900;
  letter-spacing: -0.04em; line-height: 1;
}
.page-header .page-subtitle {
  font-size: 18px; color: rgba(255,255,255,0.7);
  max-width: 600px; margin: 16px auto 0; line-height: 1.7;
}

/* === BLOG CARDS === */
.posts-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px; margin-top: 48px;
}
.post-card {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid rgba(74,74,74,0.08); background: white;
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease-out-expo), box-shadow .4s var(--ease-out-expo);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card-thumbnail { aspect-ratio: 16/9; overflow: hidden; background: var(--soft-white); }
.post-card-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out-expo); }
.post-card:hover .post-card-thumbnail img { transform: scale(1.05); }
.post-card-body { padding: 28px; }
.post-card-meta { font-size: 12px; color: rgba(74,74,74,0.45); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.post-card-title { font-size: 20px; font-weight: 800; letter-spacing: -0.03em; color: var(--stone-grey); margin-bottom: 10px; line-height: 1.3; }
.post-card-title a { transition: color .3s; }
.post-card-title a:hover { color: var(--swiss-red); }
.post-card-excerpt { font-size: 15px; color: rgba(74,74,74,0.65); line-height: 1.6; }

/* === SIDEBAR === */
.sidebar .widget { margin-bottom: 36px; }
.sidebar .widget-title {
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--stone-grey); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 2px solid var(--swiss-red);
}

/* === PAGINATION === */
.pagination {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line-dark);
}
.pagination .page-numbers {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-weight: 700; font-size: 14px;
  border: 1px solid rgba(74,74,74,0.12); color: var(--stone-grey);
  transition: all .3s var(--ease-out-expo);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--swiss-red); color: white; border-color: var(--swiss-red);
}

/* === COMMENTS === */
.comments-area { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--line-dark); }
.comments-title { font-size: 24px; font-weight: 800; margin-bottom: 32px; }
.comment-list .comment {
  padding: 24px 0; border-bottom: 1px solid var(--line-dark);
}
.comment-author { font-weight: 700; color: var(--stone-grey); }
.comment-meta { font-size: 13px; color: rgba(74,74,74,0.5); margin-bottom: 8px; }
.comment-respond .comment-reply-title { font-size: 20px; font-weight: 800; margin-bottom: 20px; }

/* === TOAST === */
#toast-container {
  position: fixed; top: 1rem; right: 1rem; z-index: 10000;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.toast {
  padding: 14px 20px; border-radius: 14px; font-weight: 600;
  font-size: 14px; color: white; box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  transform: translateX(140%); transition: transform 0.5s var(--ease-out-expo);
  max-width: 380px;
}
.toast.show { transform: translateX(0); }
.toast-success { background: #22c55e; }
.toast-info { background: var(--swiss-red); }

/* === SCROLL ANIMATIONS === */
[data-animate] {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
[data-animate].visible { opacity: 1; transform: translateY(0); }
[data-animate-stagger] > * {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
[data-animate-stagger].visible > * { opacity: 1; transform: translateY(0); }
[data-animate-stagger].visible > *:nth-child(1) { transition-delay: 0s; }
[data-animate-stagger].visible > *:nth-child(2) { transition-delay: 0.1s; }
[data-animate-stagger].visible > *:nth-child(3) { transition-delay: 0.2s; }
[data-animate-stagger].visible > *:nth-child(4) { transition-delay: 0.3s; }
[data-animate-stagger].visible > *:nth-child(5) { transition-delay: 0.4s; }
[data-animate-stagger].visible > *:nth-child(6) { transition-delay: 0.5s; }

/* === RESPONSIVE === */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 320px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefit-card-accent { grid-column: auto; display: block; }
  .accent-stats { margin-top: 24px; }
  .how-grid { grid-template-columns: repeat(3, 1fr); }
  .how-step::after { display: none; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-separator { flex-direction: row; padding-top: 0; }
  .diff-sep-line { width: 60px; height: 1px; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .benefits-grid, .how-grid { grid-template-columns: 1fr; }
  .proof-strip { gap: 24px; }
  .trust-grid { flex-direction: column; align-items: flex-start; }
  .trust-divider { width: 60px; height: 1px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .accent-stats { grid-template-columns: 1fr; }
  .section-padding { padding: 80px 0; }
  .posts-grid { grid-template-columns: 1fr; }
}

/* Mobile nav overlay */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 150;
  background: rgba(0,0,0,0.4);
}
.nav-overlay.active { display: block; }
.nav-mobile {
  position: fixed; top: 0; right: -300px;
  width: 280px; height: 100vh; z-index: 160;
  background: white; padding: 80px 28px 28px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.1);
  transition: right .35s var(--ease-out-expo);
}
.nav-mobile.active { right: 0; }
.nav-mobile ul { display: grid; gap: 16px; margin-bottom: 28px; }
.nav-mobile a { font-size: 16px; font-weight: 600; color: var(--stone-grey); }

/* === UTILITY === */
.text-center { text-align: center; }
.text-red { color: var(--swiss-red); }
.bg-soft { background: var(--soft-white); }
.bg-dark { background: var(--bg-dark); color: var(--text-light); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* WordPress alignment */
.alignwide { max-width: calc(var(--max-width) + 120px); margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: 24px; margin-bottom: 12px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 12px; }

/* Screen reader text */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute; width: 1px; word-wrap: normal;
}
