/* M365Renewal — informational site */
:root {
  --navy: #1a1a2e;
  --violet: #8b5cf6;
  --violet-soft: #ede9fe;
  --teal: #00c6a7;
  --teal-soft: #ecfdf5;
  --blue: #0078d4;
  --blue-soft: #e0f2fe;
  --text: #1e293b;
  --muted: #64748b;
  --bg: #f8fafc;
  --border: #e2e8f0;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
  --font: "Inter", system-ui, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .guide-card, .pillar, .app-section__head { transition: none; }
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1120px, 92vw); margin-inline: auto; }

a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: #005a9e; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.9rem 0;
  flex-wrap: wrap;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.site-nav {
  display: flex;
  gap: 0.25rem 1.1rem;
  flex: 1;
  flex-wrap: wrap;
}
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.35rem 0.1rem;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--navy); }
.site-nav a[aria-current="page"] {
  color: var(--navy);
  border-bottom-color: var(--violet);
}
.regional-callout {
  margin: 0 0 1.75rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}
.regional-callout--th { border-left: 4px solid #0078d4; }
.regional-callout--sg { border-left: 4px solid #00c6a7; }
.regional-callout--en { border-left: 4px solid var(--violet); }
.regional-callout__label {
  margin: 0 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: var(--navy);
}
.regional-callout__tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--bg);
  border: 1px solid var(--border);
}
.regional-callout--th .regional-callout__tag { border-color: #0078d4; color: #0078d4; }
.regional-callout--sg .regional-callout__tag { border-color: #00c6a7; color: #0d9488; }
.regional-callout--en .regional-callout__tag { border-color: var(--violet); color: var(--violet); }
.regional-callout__title { font-weight: 700; }
.regional-callout__body { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }
.regional-callout__body p { margin: 0 0 0.65rem; }
.regional-callout__body p:last-child { margin-bottom: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.35rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:active { transform: scale(0.98); }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 120, 212, 0.35);
}
.btn--primary:hover { background: #106ebe; color: #fff; box-shadow: 0 6px 20px rgba(0, 120, 212, 0.4); }
.btn--accent {
  background: linear-gradient(135deg, var(--violet) 0%, #7c3aed 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.35);
}
.btn--accent:hover { filter: brightness(1.05); color: #fff; }
.btn--ghost {
  border-color: var(--border);
  color: var(--navy);
  background: #fff;
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); }

/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 4rem;
  background: linear-gradient(145deg, #eff6ff 0%, #f8fafc 40%, #f5f3ff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 140%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--violet);
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.75rem;
  background: var(--violet-soft);
  border-radius: 999px;
}
.hero__title {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0 0 1rem;
  max-width: 16ch;
}
.hero__lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 1.75rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__visual {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Page heroes */
.page-hero {
  padding: 2.75rem 0 2.25rem;
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero--gradient {
  background: linear-gradient(135deg, var(--blue-soft) 0%, #fff 50%, var(--violet-soft) 100%);
}
.page-hero--compare {
  background: linear-gradient(135deg, #ede9fe 0%, #e0f2fe 55%, #fff 100%);
}
.page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 22ch;
}
.page-hero__lead { margin: 0.85rem 0 0; color: var(--muted); max-width: 58ch; font-size: 1.0625rem; }
.page-hero__actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.breadcrumb {
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.breadcrumb a {
  text-decoration: none;
  color: var(--blue);
  font-weight: 500;
}
.breadcrumb a:hover { text-decoration: underline; }

/* Sections */
.section { padding: 3.25rem 0; }
.section--muted { background: var(--bg); }
.section--tight { padding-top: 2rem; }
.section__header { margin-bottom: 1.75rem; max-width: 52ch; }
.section__title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--navy);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.section__subtitle { margin: 0; color: var(--muted); font-size: 1.05rem; }

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pillar {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.pillar__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 800;
}
.pillar__icon--learn { background: var(--blue-soft); color: var(--blue); }
.pillar__icon--plan { background: var(--violet-soft); color: var(--violet); }
.pillar__icon--partner { background: var(--teal-soft); color: #059669; }
.pillar h3 { margin: 0 0 0.5rem; font-size: 1.1rem; color: var(--navy); }
.pillar p { margin: 0; font-size: 0.9375rem; color: var(--muted); }

/* Guide cards */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.15rem;
}
.guide-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.guide-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.guide-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-card--blue .guide-card__icon { background: var(--blue-soft); color: var(--blue); }
.guide-card--violet .guide-card__icon { background: var(--violet-soft); color: var(--violet); }
.guide-card--teal .guide-card__icon { background: var(--teal-soft); color: #0d9488; }
.guide-card--indigo .guide-card__icon { background: #e0e7ff; color: #4f46e5; }
.guide-card--amber .guide-card__icon { background: #fef3c7; color: #d97706; }
.guide-card--rose .guide-card__icon { background: #ffe4e6; color: #e11d48; }
.guide-card__body { flex: 1; min-width: 0; }
.guide-card__title {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.guide-card__desc {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.guide-card__meta {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.guide-card__arrow {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--border);
  transition: color 0.2s, transform 0.2s;
  margin-top: 0.15rem;
}
.guide-card:hover .guide-card__arrow { color: var(--violet); transform: translateX(3px); }
.guide-card__thumb {
  flex-shrink: 0;
  width: 120px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
}
.guide-card__thumb img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }
.guide-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--violet);
  margin-bottom: 0.35rem;
}
.guide-card--cyan .guide-card__icon { background: #e0f2fe; color: #0284c7; }
.guide-card--orange .guide-card__icon { background: #ffedd5; color: #ea580c; }

/* App sections on guides hub */
.section--app {
  scroll-margin-top: 5rem; padding-top: 2rem; }
.section--app:nth-child(even) { background: var(--bg); }
.app-section__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.app-section__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-section__icon--blue { background: var(--blue-soft); color: var(--blue); }
.app-section__icon--violet { background: var(--violet-soft); color: var(--violet); }
.app-section__icon--indigo { background: #e0e7ff; color: #4f46e5; }
.app-section__icon--cyan { background: #e0f2fe; color: #0284c7; }
.app-section__icon--teal { background: var(--teal-soft); color: #0d9488; }
.app-section__icon--orange { background: #ffedd5; color: #ea580c; }
.app-section__icon--rose { background: #ffe4e6; color: #e11d48; }
.app-section__title { margin: 0; font-size: 1.45rem; color: var(--navy); letter-spacing: -0.02em; }
.app-section__count { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.9rem; }

/* Guide search (hub) */
.guide-search {
  margin-top: 1.75rem;
  max-width: 36rem;
}
.guide-search__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.guide-search__row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.guide-search__input {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem;
  font: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}
.guide-search__input:focus {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
  border-color: var(--violet);
}
.guide-search__clear {
  flex-shrink: 0;
  padding: 0.75rem 1rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}
.guide-search__clear:hover { color: var(--navy); border-color: var(--navy); }
.guide-search__hint,
.guide-search__empty {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}
.guide-search__empty { color: #b45309; }
.site-nav__search { font-weight: 600; color: var(--violet) !important; }

/* Related guides (article footer) */
.related-guides {
  padding: 2.5rem 0 3.5rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.related-guides__title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.related-guides__lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 42rem;
}
.guide-grid--related { margin-top: 0; }

.app-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.app-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.app-pill:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
  border-color: var(--violet);
}
.app-pill__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-pill--blue .app-pill__icon { background: var(--blue-soft); color: var(--blue); }
.app-pill--indigo .app-pill__icon { background: #e0e7ff; color: #4f46e5; }
.app-pill--cyan .app-pill__icon { background: #e0f2fe; color: #0284c7; }
.app-pill--teal .app-pill__icon { background: var(--teal-soft); color: #0d9488; }
.app-pill--violet .app-pill__icon { background: var(--violet-soft); color: var(--violet); }
.app-pill--orange .app-pill__icon { background: #ffedd5; color: #ea580c; }
.app-pill--rose .app-pill__icon { background: #ffe4e6; color: #e11d48; }

/* Legacy simple cards (if used) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.card {
  display: block;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }
.card h3 { margin: 0 0 0.5rem; color: var(--navy); font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* Partner band */
.partner-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy) 0%, #312e81 100%);
  color: #e2e8f0;
}
.partner-band__badge {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.partner-band h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.partner-band p { margin: 0 0 1rem; color: #94a3b8; max-width: 58ch; font-size: 0.98rem; }
.partner-band .btn--primary { background: var(--teal); color: var(--navy); box-shadow: none; }
.partner-band .btn--primary:hover { background: #00e0bb; color: var(--navy); }

/* Compare layout */
.compare-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.compare-steps { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.compare-steps li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.compare-steps__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--violet-soft);
  color: var(--violet);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.compare-card h3 { margin: 0 0 0.75rem; color: var(--navy); }
.compare-card ul { margin: 0; padding-left: 1.2rem; color: var(--muted); }
.compare-card li { margin-bottom: 0.4rem; }

/* Article */
.article-hero {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--border);
}
.article-hero--blue { background: linear-gradient(180deg, var(--blue-soft) 0%, #fff 100%); }
.article-hero--violet { background: linear-gradient(180deg, var(--violet-soft) 0%, #fff 100%); }
.article-hero--teal { background: linear-gradient(180deg, var(--teal-soft) 0%, #fff 100%); }
.article-hero--indigo { background: linear-gradient(180deg, #e0e7ff 0%, #fff 100%); }
.article-hero--amber { background: linear-gradient(180deg, #fef3c7 0%, #fff 100%); }
.article-hero--rose { background: linear-gradient(180deg, #ffe4e6 0%, #fff 100%); }
.article-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.article-hero--with-cover .article-hero__copy { max-width: 36ch; }
.article-hero__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--violet);
  margin: 0 0 0.5rem;
}
.article-hero__cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.article-hero__cover img { width: 100%; height: auto; display: block; }
.article-hero h1 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.2;
  max-width: 28ch;
}
.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 0.85rem;
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}
.article-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.article-shell { padding: 2.5rem 0 3rem; background: var(--bg); }
.article-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2.25rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* Prose */
.prose { max-width: 68ch; font-size: 1.02rem; }
.prose h2 {
  color: var(--navy);
  margin: 2.25rem 0 0.85rem;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--bg);
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 1.1rem; }
.prose ul, .prose ol { margin: 0 0 1.15rem; padding-left: 1.35rem; }
.prose li { margin-bottom: 0.45rem; }
.prose strong { color: var(--navy); }
.prose a { font-weight: 500; }
.prose h3 { font-size: 1.12rem; color: var(--navy); margin: 1.5rem 0 0.6rem; }
.prose-figure {
  margin: 1.75rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}
.prose-figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
  background: #e2e8f0;
}
.prose-figure figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: #fff;
}
.prose-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.92rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.prose-table th,
.prose-table td {
  border: 1px solid var(--border);
  padding: 0.65rem 0.85rem;
  text-align: left;
}
.prose-table th { background: var(--navy); color: #fff; font-weight: 600; }
.prose-table tr:nth-child(even) td { background: var(--bg); }

/* CTA */
.cta-deals {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #0f172a 0%, var(--navy) 45%, #3730a3 100%);
  color: #e2e8f0;
  padding: 3rem 0;
  margin-top: 0;
}
.cta-deals::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -50%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 198, 167, 0.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-deals__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}
.cta-deals__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: var(--teal);
  margin: 0 0 0.35rem;
  font-weight: 700;
}
.cta-deals__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: #fff;
  letter-spacing: -0.02em;
}
.cta-deals__text { margin: 0; max-width: 48ch; font-size: 0.98rem; color: #94a3b8; line-height: 1.6; }
.cta-deals__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.cta-deals .btn--primary { background: var(--teal); color: var(--navy); box-shadow: 0 4px 16px rgba(0, 198, 167, 0.35); }
.cta-deals .btn--ghost { border-color: #475569; color: #fff; background: transparent; }
.cta-deals .btn--ghost:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.1); }

/* Footer */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 3rem 0 1.75rem;
  font-size: 0.9rem;
}
.site-footer a { color: #cbd5e1; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}
.site-footer__brand span { line-height: 1.2; }
.site-footer__mark { flex-shrink: 0; }
.site-footer__note { margin: 0; line-height: 1.55; max-width: 28ch; }
.site-footer__heading { color: #e2e8f0; font-weight: 600; margin: 0 0 0.75rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer__copy { border-top: 1px solid #334155; padding-top: 1.25rem; margin: 0; font-size: 0.8rem; }

/* 404 */
.not-found {
  text-align: center;
  padding: 4rem 0;
}
.not-found__icon { font-size: 4rem; margin-bottom: 1rem; opacity: 0.4; }

@media (max-width: 900px) {
  .article-hero__grid { grid-template-columns: 1fr; }
  .article-hero__cover { order: -1; max-width: 420px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 420px; margin: 0 auto; }
  .hero__title { max-width: none; }
  .pillars { grid-template-columns: 1fr; }
  .compare-panel { grid-template-columns: 1fr; }
  .partner-band { grid-template-columns: 1fr; text-align: center; }
  .partner-band__badge { margin: 0 auto; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .site-header__shop { width: 100%; text-align: center; }
  .site-nav { width: 100%; justify-content: center; }
  .guide-grid { grid-template-columns: 1fr; }
  .article-card { padding: 1.35rem 1.15rem; }
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 1rem 1.25rem;
  background: rgba(26, 26, 46, 0.97);
  color: #e2e8f0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.35);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cookie-consent__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}
.cookie-consent__title {
  margin: 0 0 0.35rem;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}
.cookie-consent__body {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  max-width: 52rem;
}
.cookie-consent__body a { color: var(--teal); text-decoration: underline; }
.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cookie-consent .btn--ghost {
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
}
.cookie-consent .btn--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
body.cookie-banner-open .site-footer {
  padding-bottom: calc(2.5rem + 5rem);
}
body.cookie-banner-open .cta-deals {
  margin-bottom: 4.5rem;
}
