/* ==========================================================================
   Webx IT Services — Global Stylesheet
   Theme: Security crimson / deep burgundy + white + charcoal
   ========================================================================== */

:root {
  /* Brand reds */
  --red-950: #3f0a12;
  --red-900: #58111d;
  --red-800: #731726;
  --red-700: #8f1d2c;
  --red-600: #b02337;
  --red-500: #c83846;
  --red-400: #db5763;
  --red-300: #e8a1a8;
  --red-100: #fbe4e6;
  --red-050: #fdf1f2;

  /* Neutrals */
  --ink-900: #17181c;
  --ink-800: #1f2127;
  --ink-700: #2a2d35;
  --ink-600: #3a3e48;
  --gray-500: #5c6271;
  --gray-400: #7d8493;
  --gray-300: #a3a9b6;
  --gray-200: #d8dbe2;
  --gray-150: #e8eaef;
  --gray-100: #f3f4f7;
  --gray-050: #f9fafb;
  --white: #ffffff;

  /* Gradients */
  --grad-red: linear-gradient(135deg, #8f1d2c 0%, #c83846 100%);
  --grad-red-soft: linear-gradient(135deg, #731726 0%, #b02337 60%, #c83846 100%);
  --grad-dark: linear-gradient(160deg, #1a1c22 0%, #3d101c 55%, #5f121f 100%);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(23, 24, 28, 0.06), 0 4px 12px rgba(23, 24, 28, 0.05);
  --shadow-md: 0 6px 18px rgba(23, 24, 28, 0.08), 0 2px 6px rgba(23, 24, 28, 0.06);
  --shadow-lg: 0 16px 44px rgba(23, 24, 28, 0.14), 0 4px 12px rgba(143, 29, 44, 0.08);
  --shadow-red: 0 10px 26px rgba(184, 35, 55, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --container: 1200px;
  --header-h: 76px;
}

/* ==========================================================================
   Base
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
svg { display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ink-900);
  line-height: 1.18;
  margin: 0 0 0.6em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -0.015em; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.08rem; }

p { margin: 0 0 1.1em; }
a { color: var(--red-700); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--red-500); }

ul, ol { padding-left: 1.25em; }
li { margin-bottom: 0.45em; }

strong { font-weight: 600; color: var(--ink-900); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.25rem);
}

.container-narrow { max-width: 860px; }

section { position: relative; }

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 2000;
  background: var(--red-700);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; color: #fff; }

::selection { background: var(--red-600); color: #fff; }

:focus-visible { outline: 3px solid var(--red-400); outline-offset: 2px; border-radius: 4px; }

/* ==========================================================================
   Utility
   ========================================================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-700);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--grad-red);
  border-radius: 2px;
}
.eyebrow.light { color: #f3b8c0; }
.eyebrow.light::before { background: #f7cfd4; }

.section-head {
  max-width: 720px;
  margin-bottom: 2.75rem;
}
.section-head.center { margin-inline: auto; text-align: center; }

.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section-alt { background: var(--gray-050); }
.section-dark {
  background: var(--grad-dark);
  color: #e9eaee;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-pop {
  background:
    radial-gradient(720px 320px at 18% -10%, rgba(200, 56, 70, 0.18), transparent 60%),
    radial-gradient(640px 300px at 88% 0%, rgba(200, 56, 70, 0.12), transparent 55%),
    var(--gray-100);
}

.lead { font-size: 1.14rem; color: var(--gray-500); max-width: 640px; }
.lead.light { color: #c6c9d1; }

.aspect-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
}

.glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn svg { flex: 0 0 auto; }
.btn-primary {
  background: var(--grad-red);
  color: #fff;
  box-shadow: 0 6px 18px rgba(184, 35, 55, 0.32);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(184, 35, 55, 0.42);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-secondary:hover {
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}
.btn-ghost {
  background: transparent;
  color: var(--ink-800);
  border-color: var(--gray-300);
}
.btn-ghost:hover {
  color: var(--red-700);
  border-color: var(--red-600);
  transform: translateY(-2px);
}
.btn-outline-red {
  background: transparent;
  color: var(--red-700);
  border-color: var(--red-600);
}
.btn-outline-red:hover {
  background: var(--red-700);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.btn-light {
  background: #fff;
  color: var(--red-800);
  box-shadow: var(--shadow-md);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--red-700);
}
.btn-sm { padding: 10px 18px; font-size: 0.87rem; }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-150);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(23, 24, 28, 0.09); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--grad-red);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(184, 35, 55, 0.32);
  color: #fff;
  flex: 0 0 auto;
}
.brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  line-height: 1.05;
}
.brand-text span { color: var(--red-700); display: block; font-weight: 600; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; margin-top: 2px; }
.brand-text em { font-style: normal; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 6px 2px;
  text-decoration: none;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--grad-red);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.main-nav a:hover { color: var(--red-700); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { width: 100%; }
.main-nav a[aria-current="page"] { color: var(--red-700); font-weight: 600; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-150);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.open { max-height: 420px; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 1.5rem 1.25rem;
  }
  .main-nav li { margin: 0; }
  .main-nav a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--gray-150);
  }
  .main-nav a::after { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--grad-dark);
  color: #eceef2;
  padding-block: clamp(4rem, 9vw, 7rem);
  text-align: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 380px at 50% 0%, rgba(200, 56, 70, 0.28), transparent 65%),
    radial-gradient(800px 500px at 82% 90%, rgba(143, 29, 44, 0.28), transparent 60%),
    radial-gradient(600px 420px at 8% 85%, rgba(255, 255, 255, 0.05), transparent 55%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-shield {
  display: inline-grid;
  place-items: center;
  width: clamp(96px, 12vw, 128px);
  height: clamp(96px, 12vw, 128px);
  border-radius: 32%;
  background: var(--grad-red);
  box-shadow: 0 20px 60px rgba(184, 35, 55, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  color: #fff;
  margin-bottom: 1.75rem;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero h1 {
  color: #fff;
  max-width: 880px;
  margin-inline: auto;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #ff8b93, #ff4d5d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead {
  margin-inline: auto;
  margin-bottom: 2.2rem;
  max-width: 760px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.6rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem 2.4rem;
  max-width: 900px;
  margin-inline: auto;
  color: #b9bec9;
  font-size: 0.86rem;
  font-weight: 500;
}
.hero-trust svg { width: 20px; height: 20px; color: #ff8b93; flex: 0 0 auto; }
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; }

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  background: #fff;
  border: 1px solid var(--gray-150);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  background: var(--red-050);
  border: 1px solid var(--red-100);
  color: var(--red-700);
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.card:hover .card-icon {
  background: var(--grad-red);
  color: #fff;
  border-color: transparent;
}
.card-icon svg { width: 27px; height: 27px; }

.card h3 { font-size: 1.14rem; margin-bottom: 0.5rem; }
.card p { color: var(--gray-500); font-size: 0.93rem; margin-bottom: 1rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--red-700);
  text-decoration: none;
}
.link-arrow svg { transition: transform 0.25s ease; }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow:hover { color: var(--red-500); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Blog cards
   ========================================================================== */
.post-card .card-thumb {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.1rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-150);
}
.post-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-card:hover .card-thumb img { transform: scale(1.05); }

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1rem;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 0.7rem;
}
.chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red-700);
  background: var(--red-050);
  border: 1px solid var(--red-100);
  padding: 4px 12px;
  border-radius: 999px;
}
.chip-dark { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); color: #ffb6bd; }
.post-card h3 { font-size: 1.12rem; line-height: 1.35; }
.post-card p { font-size: 0.92rem; }

/* ==========================================================================
   Feature pillars (McAfee overview)
   ========================================================================== */
.pillar {
  background: #fff;
  border: 1px solid var(--gray-150);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pillar-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--grad-red);
  color: #fff;
  display: grid;
  place-items: center;
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar h4 { margin: 0 0 0.3rem; font-size: 1.02rem; }
.pillar p { margin: 0; font-size: 0.9rem; color: var(--gray-500); }

/* ==========================================================================
   Stats / trust strip
   ========================================================================== */
.stats-strip {
  background: var(--grad-red-soft);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat .stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1;
  color: #fff;
  margin-bottom: 0.35rem;
}
.stat .stat-label { font-size: 0.87rem; color: rgba(255, 255, 255, 0.82); font-weight: 500; }
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Why choose checklist
   ========================================================================== */
.check-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.4rem; }
.check-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red-050);
  color: var(--red-700);
  border: 1px solid var(--red-100);
  display: grid;
  place-items: center;
}
.check-icon svg { width: 20px; height: 20px; }
.check-item h4 { margin: 0 0 0.2rem; font-size: 1.02rem; }
.check-item p { margin: 0; color: var(--gray-500); font-size: 0.92rem; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  overflow: hidden;
  background: var(--grad-dark);
  position: relative;
  text-align: center;
  color: #e9eaee;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(620px 380px at 50% -10%, rgba(200, 56, 70, 0.34), transparent 62%);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; }
.cta-banner .lead { margin-inline: auto; margin-bottom: 2rem; color: #c6c9d1; }

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumbs {
  font-size: 0.8rem;
  color: var(--gray-400);
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--gray-150);
  background: var(--gray-050);
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}
.breadcrumbs li { margin: 0; display: inline-flex; align-items: center; }
.breadcrumbs li:not(:last-child)::after { content: "›"; margin-left: 0.5rem; color: var(--gray-300); }
.breadcrumbs a { color: var(--gray-500); }
.breadcrumbs a:hover { color: var(--red-700); }
.breadcrumbs [aria-current="page"] { color: var(--ink-800); font-weight: 600; }

/* ==========================================================================
   Page hero (subpages)
   ========================================================================== */
.page-hero {
  background: var(--grad-dark);
  color: #eceef2;
  padding-block: clamp(3rem, 7vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 360px at 50% -20%, rgba(200, 56, 70, 0.3), transparent 60%),
    radial-gradient(560px 360px at 92% 110%, rgba(143, 29, 44, 0.25), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 0.5rem; }
.page-hero .lead { color: #c6c9d1; margin-bottom: 0; max-width: 760px; }
.page-hero .eyebrow { margin-bottom: 0.9rem; }

/* ==========================================================================
   Article layout
   ========================================================================== */
.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.6rem;
  color: var(--gray-400);
  font-size: 0.87rem;
  margin-bottom: 1.4rem;
}
.author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad-red);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-head);
}
.article-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-150);
  box-shadow: var(--shadow-md);
  margin: 1.6rem 0 2.2rem;
}
.article-figure img { width: 100%; }
.article-figure figcaption {
  font-size: 0.8rem;
  color: var(--gray-400);
  padding: 0.7rem 1rem;
  background: var(--gray-050);
  text-align: center;
}

.article-body h2 { font-size: 1.5rem; margin-top: 2.4rem; }
.article-body h3 { font-size: 1.15rem; margin-top: 1.8rem; }
.article-body ul li, .article-body ol li { margin-bottom: 0.6rem; }
.article-body blockquote {
  margin: 1.8rem 0;
  padding: 1.2rem 1.5rem;
  border-left: 4px solid var(--red-600);
  background: var(--red-050);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--ink-700);
  font-family: var(--font-head);
  font-style: italic;
}
.tip-box {
  background: var(--red-050);
  border: 1px solid var(--red-100);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  margin: 1.6rem 0;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.tip-box svg { flex: 0 0 auto; width: 24px; height: 24px; color: var(--red-700); margin-top: 2px; }
.tip-box h4 { margin: 0 0 0.3rem; }

/* Table of contents */
.toc {
  background: var(--gray-050);
  border: 1px solid var(--gray-150);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.5rem;
  margin: 1.6rem 0 2rem;
}
.toc h4 { margin-bottom: 0.8rem; text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.12em; color: var(--gray-400); }
.toc ol { margin: 0; padding-left: 1.25em; }
.toc li { margin-bottom: 0.45em; font-size: 0.94rem; }
.toc a { color: var(--gray-500); }
.toc a:hover { color: var(--red-700); }

/* Social share */
.share-row { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; margin: 2rem 0; padding-top: 1.6rem; border-top: 1px solid var(--gray-150); }
.share-label { font-weight: 600; font-size: 0.9rem; color: var(--ink-800); }
.share-btn {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  color: var(--gray-500);
  background: #fff;
  transition: all 0.25s ease;
}
.share-btn:hover { background: var(--red-700); border-color: var(--red-700); color: #fff; transform: translateY(-2px); }
.share-btn svg { width: 18px; height: 18px; }

.article-aside {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.sticky-wrap { position: sticky; top: calc(var(--header-h) + 20px); }

/* Notice box */
.notice {
  background: var(--gray-100);
  border: 1px solid var(--gray-150);
  border-left: 4px solid var(--gray-400);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  font-size: 0.88rem;
  color: var(--gray-500);
  margin: 1.6rem 0;
}
.notice strong { color: var(--ink-800); }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card {
  background: #fff;
  border: 1px solid var(--gray-150);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--ink-800);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-800);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red-600);
  box-shadow: 0 0 0 4px rgba(200, 56, 70, 0.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235c6271' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }

.form-success {
  display: none;
  background: #eaf7ef;
  border: 1px solid #bfe6cd;
  color: #1f6b3c;
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  font-weight: 500;
  font-size: 0.93rem;
  margin-top: 1rem;
}
.form-success.show { display: block; animation: fadeUp 0.4s ease; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.accordion { max-width: 820px; margin-inline: auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-150);
  border-radius: var(--radius-md);
  margin-bottom: 0.9rem;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  color: var(--ink-800);
  font-size: 0.98rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--red-600);
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23b02337' stroke-width='3'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat center;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-answer { padding: 0 1.4rem 1.2rem; color: var(--gray-500); font-size: 0.94rem; }

/* ==========================================================================
   Info cards (contact/details)
   ========================================================================== */
.info-card {
  background: #fff;
  border: 1px solid var(--gray-150);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.2rem;
}
.info-card h3 { font-size: 1.05rem; display: flex; align-items: center; gap: 10px; }
.info-card h3 svg { color: var(--red-700); flex: 0 0 auto; }
.info-card ul { list-style: none; margin: 0.6rem 0 0; padding: 0; }
.info-card li { display: flex; gap: 10px; align-items: baseline; font-size: 0.92rem; color: var(--gray-500); margin-bottom: 0.5rem; }
.info-card li svg { width: 16px; height: 16px; color: var(--red-600); flex: 0 0 auto; position: relative; top: 2px; }
.placeholder-pill {
  display: inline-block;
  background: var(--red-050);
  border: 1px dashed var(--red-300, #e8a1a8);
  color: var(--red-800);
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ==========================================================================
   Legal/prose pages
   ========================================================================== */
.prose {
  max-width: 820px;
  margin-inline: auto;
  color: var(--ink-700);
}
.prose h2 { font-size: 1.45rem; margin-top: 2.4rem; scroll-margin-top: calc(var(--header-h) + 16px); }
.prose h3 { font-size: 1.12rem; margin-top: 1.6rem; }
.prose p { color: var(--gray-500); }
.prose ul li, .prose ol li { color: var(--gray-500); }
.prose .muted { color: var(--gray-300); }
.updated-note {
  font-size: 0.82rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter-form {
  display: flex;
  gap: 0.6rem;
  width: 100%;
  max-width: 420px;
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.93rem;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.55); }
.newsletter-form input:focus { outline: none; border-color: #ff8b93; background: rgba(255, 255, 255, 0.12); }
@media (max-width: 460px) { .newsletter-form { flex-direction: column; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink-900);
  color: #b6bac4;
  border-top: 4px solid var(--red-700);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 2.4rem;
  padding-bottom: 2.6rem;
}
.footer-brand { margin-bottom: 1rem; }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-text span { color: #ff8b93; }
.footer-desc { font-size: 0.92rem; color: #9aa0ad; max-width: 320px; }
.footer-heading {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #fff;
  margin-bottom: 1.1rem;
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: #9aa0ad; font-size: 0.93rem; position: relative; padding-left: 16px; }
.footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #ff8b93;
  font-weight: 700;
}
.footer-links a:hover { color: #fff; }
.social-row { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #c3c7d0;
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
}
.social-row a:hover { background: var(--red-700); border-color: var(--red-700); color: #fff; transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.83rem;
  color: #858b97;
}
.footer-bottom a { color: #a7abb6; }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--grad-red);
  color: #fff;
  box-shadow: var(--shadow-red);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   Blog filters
   ========================================================================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 2.2rem;
}
.filter-bar .search-box {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: 999px;
  padding: 10px 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.filter-bar .search-box:focus-within { border-color: var(--red-600); box-shadow: 0 0 0 4px rgba(200, 56, 70, 0.12); }
.filter-bar .search-box svg { width: 18px; height: 18px; color: var(--gray-400); flex: 0 0 auto; }
.filter-bar .search-box input { border: none; outline: none; background: none; font-family: var(--font-body); font-size: 0.93rem; width: 100%; color: var(--ink-800); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-chip {
  border: 1.5px solid var(--gray-200);
  background: #fff;
  color: var(--ink-700);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.22s ease;
}
.filter-chip:hover { border-color: var(--red-500); color: var(--red-700); }
.filter-chip.active { background: var(--grad-red); color: #fff; border-color: transparent; box-shadow: var(--shadow-sm); }
.no-results { text-align: center; padding: 3rem 1rem; display: none; }
.no-results.show { display: block; }

/* ==========================================================================
   Animations / reveal
   ========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}