/* ===== Watchroute — Professional tech web design system ===== */
:root {
  --bg: #f8fafc;
  --bg-card: #ffffff;
  --surface: #0f172a;
  --surface-soft: #1e293b;
  --text: #0f172a;
  --text-muted: #64748b;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-light: #3b82f6;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --radius: 8px;
  --radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}
h1, h2, h3 {
  font-family: inherit;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--text); }
h3 { font-size: 1.25rem; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ----- Site header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
.site-logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--surface);
  text-decoration: none;
}
.site-logo:hover { text-decoration: none; color: var(--surface); }
.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.site-nav__link {
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0.2rem;
  border-radius: 6px;
  transition: color 0.15s;
}
.site-nav__link:hover {
  color: var(--accent);
  text-decoration: none;
}
.site-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff !important;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.site-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  text-decoration: none;
}
.site-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.site-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.site-drawer {
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}
.site-drawer[hidden] { display: none; }
.site-drawer__inner {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
}
.site-drawer__link {
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.site-drawer__link:hover { color: var(--accent); }
.site-drawer__cta {
  margin-top: 0.25rem;
  display: inline-flex;
  justify-content: center;
  background: var(--accent);
  color: #fff !important;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
}
.site-drawer__cta:hover { text-decoration: none; background: var(--accent-hover); }
.site-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.site-drawer-backdrop.is-open { opacity: 1; visibility: visible; }

@media (max-width: 820px) {
  .site-nav { display: none; }
  .site-cta { display: none; }
  .site-burger { display: inline-flex; }
}

/* ----- Hero: full-width background image ----- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.5) 50%, rgba(15, 23, 42, 0.6) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 4rem) 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__overline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.hero__headline {
  margin: 0 0 1rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 20ch;
  line-height: 1.2;
}
.hero__sub {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  max-width: 42ch;
  font-size: 1.0625rem;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff !important;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.hero__cta:hover { background: var(--accent-hover); text-decoration: none; }

@media (max-width: 768px) {
  .hero { min-height: 75vh; }
  .hero__headline { max-width: none; }
}

/* ----- Why section ----- */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  min-height: 0;
}
.why__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 280px;
  overflow: hidden;
}
.why__image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.why__content {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--bg-card);
}
.why__content h2 { margin-top: 0; }
.why__content p { color: var(--text-muted); margin-bottom: 1rem; }
.why__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.why__list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
}
.why__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .why { grid-template-columns: 1fr; }
  .why__image-wrap { aspect-ratio: 16 / 10; min-height: 220px; }
  .why__content { padding: 2rem 1.25rem; }
}

/* ----- Process (dark band) ----- */
.process {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
  background: var(--surface);
}
.process__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.process__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--surface);
}
.process .container { position: relative; z-index: 2; }
.process__title {
  text-align: center;
  color: #fff;
  margin-bottom: 2.5rem;
  font-weight: 700;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.process__step { text-align: center; color: rgba(255,255,255,0.9); }
.process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--accent);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #fff;
}
.process__step h3 { color: #fff; margin: 0 0 0.5rem; }
.process__step p { color: rgba(255,255,255,0.8); font-size: 0.9375rem; margin: 0; }
@media (max-width: 768px) {
  .process__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ----- Trades strip ----- */
.trades-strip {
  position: relative;
  min-height: 0;
  padding: clamp(3rem, 6vw, 4rem) 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.trades-strip__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.trades-strip__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
}
.trades-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(248,250,252,0.97) 0%, rgba(248,250,252,0.85) 50%, rgba(248,250,252,0.97) 100%);
}
.trades-strip .container { position: relative; z-index: 2; }
.trades-strip h2 { margin-bottom: 1rem; }
.trades-strip__intro { max-width: 42ch; color: var(--text-muted); margin-bottom: 1.5rem; }
.trades-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.trades-strip__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text);
}
.trades-strip__list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* ----- Pricing ----- */
.pricing {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg);
}
.pricing__title { text-align: center; margin-bottom: 0.5rem; }
.pricing__intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
.pricing__card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing__card--featured {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  padding-top: 2.25rem;
}
.pricing__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.pricing__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}
.pricing__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0 0 0.25rem;
}
.pricing__price-old {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  letter-spacing: -0.02em;
}
.pricing__price-wrap .pricing__price {
  font-size: 2.25rem;
  margin: 0;
}
.pricing__card--featured .pricing__price { font-size: 2.25rem; }
.pricing__card--featured .pricing__price-wrap .pricing__price { font-size: 2.25rem; }
.pricing__price-note { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.pricing__price-note:last-of-type { margin-bottom: 1rem; }
.pricing__all-in {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.75rem;
  line-height: 1.4;
}
.pricing__perks {
  list-style: none;
  padding: 0.75rem 1rem;
  margin: 0 0 1.25rem;
  background: rgba(37, 99, 235, 0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(37, 99, 235, 0.15);
}
.pricing__perks li {
  padding: 0.25rem 0;
  padding-left: 0;
  font-size: 0.875rem;
  color: var(--text);
}
.pricing__perks li::before { content: none; }
.pricing__ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}
.pricing__ul li {
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
  font-size: 0.9375rem;
}
.pricing__ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pricing__cta {
  display: block;
  text-align: center;
  background: var(--accent);
  color: #fff !important;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.pricing__cta:hover { background: var(--accent-hover); text-decoration: none; }

/* ----- Local bg section ----- */
.local-bg {
  position: relative;
  padding: clamp(3rem, 6vw, 4rem) 0;
  overflow: hidden;
  background: var(--surface);
}
.local-bg__img { position: absolute; inset: 0; z-index: 0; }
.local-bg__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}
.local-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--surface);
}
.local-bg .container { position: relative; z-index: 2; }
.local-bg h2, .local-bg p { color: #fff; }
.local-bg p { opacity: 0.9; max-width: 50ch; margin: 0; }

/* ----- FAQ ----- */
.faq {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg-card);
}
.faq__title { text-align: center; margin-bottom: 2rem; }
.faq__list { max-width: 640px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq__item:first-child { padding-top: 0; }
.faq__q { font-weight: 600; color: var(--text); margin: 0 0 0.5rem; }
.faq__a { margin: 0; color: var(--text-muted); font-size: 0.9375rem; }

/* ----- Contact section (footer CTA) ----- */
.contact {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--surface);
  color: #fff;
}
.contact h2 { color: #fff; margin-top: 0; }
.contact p { opacity: 0.9; margin-bottom: 1.5rem; }
.contact a { color: #fff; font-weight: 600; text-decoration: none; }
.contact a:hover { text-decoration: underline; }

/* Homepage contact form (on dark section) */
.contact--form .contact__intro { margin-bottom: 2rem; }
.contact--form .home-contact-form { max-width: 560px; margin: 0 auto 2rem; text-align: left; }
.contact--form .home-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 640px) {
  .contact--form .home-contact-form__grid { grid-template-columns: 1fr; }
}
.contact--form .form-group label { color: rgba(255, 255, 255, 0.95); }
.contact--form .form-group input,
.contact--form .form-group textarea {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
}
.contact--form .form-group input::placeholder,
.contact--form .form-group textarea::placeholder { color: var(--text-muted); }
.contact--form .form-group input:focus,
.contact--form .form-group textarea:focus {
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}
.contact--form .form-submit button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}
.contact--form .form-submit button:hover { background: var(--accent-hover); }
.contact--form .form-message.success {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.contact--form .form-message.error {
  background: rgba(220, 38, 38, 0.2);
  color: #fecaca;
  border-color: rgba(220, 38, 38, 0.4);
}
.contact--form .contact__details {
  margin: 0;
  font-size: 0.9375rem;
  opacity: 0.9;
}

/* ----- Page hero (inner pages) ----- */
.page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin: 0 0 0.5rem; }
.page-hero p { margin: 0; color: var(--text-muted); max-width: 50ch; }

/* ----- About section blocks ----- */
.about-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.about-section h2 { margin-top: 0; }
.about-section h3 { margin: 2rem 0 0.75rem; font-size: 1.125rem; }
.about-section h3:first-of-type { margin-top: 1.5rem; }
.about-section p { color: var(--text-muted); margin: 0 0 1rem; }
.about-section ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.about-section ul li {
  padding: 0.35rem 0;
  padding-left: 1.35rem;
  position: relative;
  color: var(--text);
}
.about-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.about-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  background: var(--accent);
  color: #fff !important;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
}
.about-cta:hover { text-decoration: none; background: var(--accent-hover); }

/* ----- Contact page ----- */
.page-header {
  padding: 1rem 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.page-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--surface);
  text-decoration: none;
}
.logo:hover { text-decoration: none; color: var(--surface); }
.nav-link { font-weight: 500; color: var(--accent); }
main { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.contact-intro { color: var(--text-muted); margin: 0 0 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit { margin-top: 1.5rem; }
.form-submit button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit button:hover { background: var(--accent-hover); }
.form-message {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  display: none;
}
.form-message.show { display: block; }
.form-message.success {
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent-hover);
  border: 1px solid rgba(37, 99, 235, 0.25);
}
.form-message.error {
  background: rgba(220, 38, 38, 0.08);
  color: #b91c1c;
  border: 1px solid rgba(220, 38, 38, 0.2);
}
.page-footer {
  padding: 2rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}
body.contact-page .container { max-width: 640px; }
body.contact-page .page-header .container { max-width: 1200px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

/* ----- Demos / Examples ----- */
.examples-why { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.examples-why h2 { margin-top: 0; }
.examples-why p { color: var(--text-muted); margin: 0 0 1rem; }
.examples-why ul { list-style: none; padding: 0; margin: 0; }
.examples-why ul li {
  padding: 0.35rem 0;
  padding-left: 1.35rem;
  position: relative;
  color: var(--text);
}
.examples-why ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.examples-cards {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--bg);
}
.examples-cards h2 { margin-top: 0; margin-bottom: 1.5rem; }
.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.demo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.demo-card h3 { margin: 0 0 0.5rem; font-size: 1.125rem; }
.demo-card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}
.demo-card .demo-btn {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}
.demo-card .demo-btn:hover { text-decoration: none; background: var(--accent-hover); }
.examples-disclaimer { padding: 1.5rem 0; }
.examples-disclaimer p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}
.examples-cta {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--bg-card);
  text-align: center;
}
.examples-cta h2 { margin-top: 0; margin-bottom: 0.75rem; }
.examples-cta p { color: var(--text-muted); margin: 0 0 1.5rem; }
.examples-cta .cta-link {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff !important;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
}
.examples-cta .cta-link:hover { text-decoration: none; background: var(--accent-hover); }
.site-footer {
  padding: 2rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}
@media (max-width: 768px) { .examples-grid { grid-template-columns: 1fr; } }
