@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@700;800&display=swap');

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

:root {
  --background: hsl(220, 37%, 7%);
  --foreground: hsl(216, 33%, 97%);
  --card: hsl(220, 38%, 11%);
  --card-foreground: hsl(216, 33%, 97%);
  --primary: hsl(41, 99%, 48%);
  --primary-foreground: hsl(220, 38%, 3%);
  --secondary: hsl(220, 38%, 14%);
  --muted: hsl(220, 38%, 14%);
  --muted-foreground: hsl(216, 18%, 68%);
  --accent: hsl(41, 99%, 12%);
  --accent-foreground: hsl(41, 99%, 48%);
  --destructive: hsl(0, 84%, 60%);
  --border: hsl(220, 30%, 18%);
  --input: hsl(220, 30%, 18%);
  --ring: hsl(41, 99%, 48%);
  --radius: 0.75rem;
  --hero-bg: hsl(220, 38%, 3%);
  --section-alt: hsl(220, 37%, 7%);
  --surface-2: hsl(220, 38%, 11%);
  --brand-glow: hsl(41, 99%, 48%);
  --brand-dark: hsl(39, 100%, 38%);
  --text-muted: hsl(216, 14%, 47%);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  line-height: 1.2;
}

section { scroll-margin-top: 5rem; }

a { color: inherit; text-decoration: none; }

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

/* ── Layout ── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Typography helpers ── */
.text-gradient-primary {
  background: linear-gradient(135deg, hsl(41, 99%, 48%), hsl(39, 100%, 38%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-primary { color: var(--primary); }
.text-muted-color { color: var(--muted-foreground); }
.text-foreground { color: var(--foreground); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-extrabold { font-weight: 800; }

/* ── Background helpers ── */
.bg-hero { background-color: var(--hero-bg); }
.bg-section-alt { background-color: var(--section-alt); }
.bg-card-el { background-color: var(--card); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}
.btn-lg { padding: 0.75rem 1.75rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }
.btn-md { padding: 0.55rem 1.25rem; }

.btn-cta {
  background: linear-gradient(135deg, hsl(41, 99%, 48%), hsl(39, 100%, 38%));
  color: hsl(220, 38%, 3%);
  border-color: transparent;
}
.btn-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-cta-hero {
  background: linear-gradient(135deg, hsl(41, 99%, 48%), hsl(39, 100%, 38%));
  color: hsl(220, 38%, 3%);
  border-color: transparent;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  box-shadow: 0 0 20px hsla(41,99%,48%,0.4);
}
.btn-cta-hero:hover { opacity: 0.9; box-shadow: 0 0 30px hsla(41,99%,48%,0.5); }

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-outline-light {
  background: transparent;
  color: var(--foreground);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover { border-color: var(--foreground); }

.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background-color: hsla(220, 38%, 3%, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding: 0 1rem;
}
.logo { display: flex; align-items: center; gap: 0.5rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--foreground); }
.logo span { color: var(--primary); }

.nav-desktop { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-link {
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(242,246,253,0.7);
  transition: color 0.15s;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }

.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: flex; } }

.mobile-toggle {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

.mobile-nav {
  display: none;
  background-color: var(--hero-bg);
  border-top: 1px solid var(--border);
  padding: 0 1rem 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav-link {
  display: block;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(242,246,253,0.7);
  transition: color 0.15s;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--primary); }
.mobile-nav .btn-cta { margin-top: 1rem; width: 100%; justify-content: center; }

/* ── Main content offset ── */
.page-body { padding-top: 5rem; }

/* ── Footer ── */
.site-footer { background-color: var(--hero-bg); color: rgba(242,246,253,0.8); }

.footer-cta-band {
  background-color: var(--primary);
  padding: 3rem 0;
  text-align: center;
}
.footer-cta-band h2 { font-size: 1.5rem; font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 700; color: var(--foreground); margin-bottom: 1rem; }
.footer-cta-band p { color: rgba(242,246,253,0.8); margin-bottom: 1.5rem; max-width: 36rem; margin-left: auto; margin-right: auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand .logo-text { font-family: 'Plus Jakarta Sans',sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--foreground); }
.footer-brand .logo-text span { color: var(--primary); }
.footer-brand p { margin-top: 0.75rem; font-size: 0.875rem; color: rgba(242,246,253,0.6); }

.footer-col h3 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; color: var(--foreground); margin-bottom: 0.75rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.footer-col ul a { color: rgba(242,246,253,0.8); transition: color 0.15s; }
.footer-col ul a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(242,246,253,0.4);
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s;
  animation: pulse-glow 2s ease-in-out infinite;
}
.whatsapp-float:hover { box-shadow: 0 15px 35px rgba(0,0,0,0.4); transform: translateY(-2px); }
.whatsapp-float .label { display: none; }
@media (min-width: 640px) { .whatsapp-float .label { display: inline; } }

/* ── Breadcrumbs ── */
.breadcrumbs { padding: 1rem 0; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); list-style: none; }
.breadcrumbs a { color: var(--muted-foreground); transition: color 0.15s; }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .current { color: var(--foreground); font-weight: 500; }
.breadcrumbs .sep { color: var(--muted-foreground); font-size: 0.75rem; }

/* ── Section helpers ── */
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
@media (min-width: 768px) {
  .md-py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md-py-20 { padding-top: 5rem; padding-bottom: 5rem; }
}
.text-center { text-align: center; }
.max-w-xl { max-width: 36rem; margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-5 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* ── Cards ── */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.2s;
}
.card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.card.highlight { border-color: var(--primary); box-shadow: 0 10px 40px rgba(0,0,0,0.3); background-color: hsla(41,99%,48%,0.05); position: relative; }

.section-badge { display: inline-block; background-color: hsla(41,99%,48%,0.2); color: var(--primary); padding: 0.375rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; }

.section-title { font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem; }
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-desc { color: var(--muted-foreground); }

/* ── Icons (SVG inline) ── */
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 2.5rem; height: 2.5rem; }
.icon-2xl { width: 3rem; height: 3rem; }
.icon-primary { color: var(--primary); }

svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Tables ── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.875rem; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
thead tr { background-color: hsla(41,99%,48%,0.1); }
th { padding: 1rem; font-weight: 600; }
td { padding: 1rem; }
th:first-child, td:first-child { text-align: left; }
th:not(:first-child), td:not(:first-child) { text-align: center; }
tbody tr { border-top: 1px solid var(--border); color: var(--muted-foreground); }
tbody td.row-label { color: var(--foreground); font-weight: 500; }
tbody td.highlight-cell { color: var(--primary); font-weight: 600; }

/* ── Accordion / FAQ ── */
details { background-color: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
details[open] summary { color: var(--primary); }
summary {
  padding: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.15s;
  list-style: none;
  gap: 0.5rem;
}
summary::-webkit-details-marker { display: none; }
summary:hover { color: var(--primary); }
.summary-plus { font-size: 1.25rem; color: var(--muted-foreground); flex-shrink: 0; }
details[open] .summary-plus { display: none; }
.summary-minus { font-size: 1.25rem; color: var(--primary); flex-shrink: 0; display: none; }
details[open] .summary-minus { display: inline; }
.accordion-content { padding: 0 1.25rem 1.25rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* FAQ rich content */
.faq-rich-content p { margin-bottom: 0.75rem; }
.faq-rich-content p:last-child { margin-bottom: 0; }
.faq-rich-content ul, .faq-rich-content ol { margin-bottom: 0.75rem; padding-left: 1.25rem; }
.faq-rich-content ul { list-style: disc; }
.faq-rich-content ol { list-style: decimal; }
.faq-rich-content li { padding-left: 0.25rem; margin-bottom: 0.375rem; }
.faq-rich-content strong { color: var(--foreground); font-weight: 600; }

/* ── Category tabs ── */
.cat-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 2.5rem; }
.cat-btn {
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background-color: var(--card);
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all 0.15s;
}
.cat-btn:hover { border-color: hsla(41,99%,48%,0.4); color: var(--primary); }
.cat-btn.active { border-color: var(--primary); background-color: hsla(41,99%,48%,0.1); color: var(--primary); }

.cat-btn-lg {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all 0.15s;
}
.cat-btn-lg:hover { border-color: var(--primary); color: var(--foreground); }
.cat-btn-lg.active { background-color: var(--primary); border-color: var(--primary); color: var(--primary-foreground); font-weight: 600; }

/* ── Testimonials ── */
.testimonial-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.2s;
}
.testimonial-card:hover { border-color: hsla(41,99%,48%,0.3); box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.t-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.t-avatar { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar-circle { width: 2.5rem; height: 2.5rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.t-name { font-size: 0.875rem; font-weight: 600; }
.t-location { font-size: 0.75rem; color: var(--muted-foreground); }
.t-date { font-size: 0.75rem; color: var(--muted-foreground); }
.t-stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.t-star { width: 1rem; height: 1rem; }
.t-star.filled { fill: var(--primary); color: var(--primary); }
.t-star.empty { color: var(--muted-foreground); }
.t-text { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ── Animations ── */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.animate-float { animation: float 3s ease-in-out infinite; }

@keyframes fade-in-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in-up { animation: fade-in-up 0.6s ease-out forwards; }

@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 0 0 hsla(41, 99%, 48%, 0.4); } 50% { box-shadow: 0 0 20px 8px hsla(41, 99%, 48%, 0.15); } }
.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }

/* ── Hero section ── */
.hero-section {
  background-color: var(--hero-bg);
  position: relative;
  overflow: hidden;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--hero-bg), var(--hero-bg), hsla(41,99%,48%,0.1));
}
.hero-inner {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
}
@media (min-width: 768px) { .hero-inner { padding: 8rem 0; } }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-badge { display: inline-block; background-color: hsla(41,99%,48%,0.2); color: var(--primary); padding: 0.375rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero-title { font-size: 2.25rem; font-weight: 800; color: var(--foreground); line-height: 1.15; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
.hero-desc { font-size: 1.125rem; color: rgba(242,246,253,0.7); margin-bottom: 2rem; line-height: 1.7; }
@media (min-width: 768px) { .hero-desc { font-size: 1.25rem; } }
.hero-btns { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .hero-btns { flex-direction: row; } }
@media (min-width: 1024px) { .hero-btns { justify-content: flex-start; } }
.hero-text { text-align: center; }
@media (min-width: 1024px) { .hero-text { text-align: left; } }
.hero-img-wrap { display: none; justify-content: center; }
@media (min-width: 1024px) { .hero-img-wrap { display: flex; } }
.hero-img-inner { position: relative; }
.hero-img-glow { position: absolute; inset: -1rem; background-color: hsla(41,99%,48%,0.2); border-radius: 1.5rem; filter: blur(2rem); }
.hero-img { position: relative; width: 100%; max-width: 32rem; border-radius: 1rem; box-shadow: 0 25px 50px rgba(0,0,0,0.5); }

/* ── Steps ── */
.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card { background-color: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.step-num { width: 3rem; height: 3rem; background-color: hsla(41,99%,48%,0.1); border-radius: 9999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.step-num span { color: var(--primary); font-weight: 700; font-size: 1.125rem; }

/* ── Plan cards ── */
.plan-highlight-badge { position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%); background-color: var(--primary); color: var(--foreground); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 1rem; border-radius: 9999px; white-space: nowrap; }

/* ── Flex helpers ── */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }

/* ── Inline checklist ── */
.check-list { display: flex; flex-direction: column; gap: 1rem; justify-content: center; margin-bottom: 2rem; font-size: 0.875rem; color: rgba(242,246,253,0.7); }
@media (min-width: 640px) { .check-list { flex-direction: row; flex-wrap: wrap; } }
.check-item { display: flex; align-items: center; gap: 0.5rem; }

/* ── Rating badge ── */
.rating-badge { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid var(--border); background-color: var(--card); border-radius: 9999px; padding: 0.5rem 1.25rem; }
.rating-stars { display: flex; gap: 2px; }
.rating-score { font-weight: 700; font-size: 1.125rem; }
.rating-count { font-size: 0.875rem; color: var(--muted-foreground); }

/* ── Misc ── */
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.min-h-60vh { min-height: 60vh; }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }

.rounded-xl { border-radius: 1rem; }
.rounded-2xl { border-radius: 1.25rem; }
.rounded-full { border-radius: 9999px; }

.border { border: 1px solid var(--border); }
.border-2 { border: 2px solid var(--border); }
.border-primary { border-color: var(--primary); }

.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.prose-section h2 { font-size: 1.25rem; font-weight: 700; margin-top: 2rem; margin-bottom: 0.75rem; }
.prose-section a { color: var(--primary); text-decoration: underline; }
.prose-section a:hover { opacity: 0.8; }

.link-primary { color: var(--primary); font-weight: 600; display: inline-flex; align-items: center; gap: 0.25rem; }
.link-primary:hover { text-decoration: underline; }

.tip-box { background-color: hsla(41,99%,48%,0.05); border: 1px solid hsla(41,99%,48%,0.2); border-radius: 0.5rem; padding: 0.75rem; font-size: 0.75rem; color: var(--primary); margin-top: 0.75rem; }

.notice-box { background-color: hsla(41,99%,48%,0.05); border-radius: 0.75rem; padding: 1.5rem; text-align: left; margin-bottom: 2rem; border: 1px solid hsla(255,255,255,0.1); }
.notice-box h2 { font-weight: 700; color: var(--foreground); margin-bottom: 0.75rem; }
.notice-box ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: rgba(242,246,253,0.7); }
.notice-box li { display: flex; align-items: flex-start; gap: 0.5rem; }

.step-list { display: flex; flex-direction: column; gap: 1.5rem; }
.step-item { display: flex; gap: 1rem; align-items: flex-start; }
.step-circle { width: 2.5rem; height: 2.5rem; background-color: hsla(41,99%,48%,0.1); border-radius: 9999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-circle span { color: var(--primary); font-weight: 700; }
.step-content h3 { font-weight: 600; margin-bottom: 0.25rem; }
.step-content p { font-size: 0.875rem; color: var(--muted-foreground); }

/* ── Compat device card ── */
.device-card { background-color: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; transition: all 0.2s; cursor: pointer; display: block; }
.device-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.3); border-color: hsla(41,99%,48%,0.3); }
.device-card .icon-xl { margin: 0 auto 0.75rem; color: var(--primary); }

/* ── Highlighted problem section ── */
.problem-card { background-color: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.problem-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }

.install-card { background-color: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.install-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }

/* ── 404 ── */
.not-found { display: flex; min-height: 60vh; align-items: center; justify-content: center; }
.not-found-inner { text-align: center; }
.not-found h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.not-found p { font-size: 1.25rem; color: var(--muted-foreground); margin-bottom: 1rem; }
