/* ================================================================
   style.css — Ai-SmartMove.com
   Single authoritative stylesheet.
   Load AFTER: bootstrap.min.css, bootstrap-icons.css
   ================================================================ */

/* ── Custom properties ────────────────────────────────────────── */
:root {
  --color-deep-navy:  #1E1548;
  --color-violet:     #5046C8;
  --color-violet-mid: #7C6FDC;
  --color-mist:       #F2F0FF;
  --color-teal:       #14B87E;
  --color-amber:      #F0A500;
  --color-coral:      #E8523A;
  --color-ink:        #1A1826;
  --color-slate:      #5A5770;
  --color-smoke:      #9491A8;
  --color-cloud:      #E8E6F4;
  --color-snow:       #F8F7FE;
  --font-base:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* ── Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-base);
  font-size: 1rem;
  line-height: 1.625;
  color: var(--color-slate);
  background-color: var(--color-snow);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-deep-navy);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3rem);       letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 3vw, 1.875rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
h4 { font-size: 1rem; }

p   { color: var(--color-slate); margin-bottom: 1rem; }
a   { color: var(--color-violet); text-decoration: none; }
a:hover { color: var(--color-violet-mid); }

/* ── Utility classes ──────────────────────────────────────────── */
.bg-deep-navy { background-color: var(--color-deep-navy) !important; }
.bg-mist      { background-color: var(--color-mist)      !important; }
.bg-snow      { background-color: var(--color-snow)      !important; }
.text-teal    { color: var(--color-teal)   !important; }
.text-violet  { color: var(--color-violet) !important; }
.text-smoke   { color: var(--color-smoke)  !important; }
.text-ink     { color: var(--color-ink)    !important; }
.text-amber   { color: var(--color-amber)  !important; }
.text-slate   { color: var(--color-slate)  !important; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  font-family: var(--font-base);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  padding: 0.625rem 1.5rem;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.btn:focus-visible {
  outline: 2px solid var(--color-violet);
  outline-offset: 2px;
}
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }

.btn-teal {
  background-color: var(--color-teal);
  border-color: var(--color-teal);
  color: #fff;
}
.btn-teal:hover {
  background-color: #10a06b;
  border-color: #10a06b;
  color: #fff;
}

.btn-outline-violet {
  color: var(--color-violet);
  border: 2px solid var(--color-violet);
  background: transparent;
}
.btn-outline-violet:hover {
  background-color: var(--color-violet);
  color: #fff;
}

.btn-ghost {
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
}
.btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.btn-ghost-dark {
  color: var(--color-violet);
  border: 1px solid var(--color-cloud);
  background: transparent;
}
.btn-ghost-dark:hover {
  background-color: var(--color-mist);
  border-color: var(--color-violet);
}

/* ── Skip link (accessibility) ────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.5rem 1rem;
  background: var(--color-violet);
  color: #fff;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { top: 0; color: #fff; }

/* ── Navigation ───────────────────────────────────────────────── */
#mainNav {
  height: 68px;
  box-shadow: 0 1px 0 var(--color-cloud);
  z-index: 1030;
  transition: box-shadow 0.2s ease;
}
#mainNav.scrolled { box-shadow: 0 2px 12px rgba(30,21,72,0.10); }

.navbar-nav .nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-ink);
  padding: 0.5rem 0.75rem;
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--color-violet); }

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--color-teal);
  border-radius: 2px;
}

.dropdown-menu-brand {
  border: 1px solid var(--color-cloud);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(30,21,72,0.10);
  padding: 0.5rem;
  min-width: 220px;
}
.dropdown-menu-brand .dropdown-item {
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  color: var(--color-ink);
}
.dropdown-menu-brand .dropdown-item:hover {
  background-color: var(--color-mist);
  color: var(--color-violet);
}

/* ── Badges ───────────────────────────────────────────────────── */
.badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 20px;
}
.badge-in-dev      { background-color: var(--color-violet); color: #fff; }
.badge-coming-soon { background-color: var(--color-amber);  color: #1A1826; }
.badge-roadmap     { background-color: var(--color-smoke);  color: #fff; }
.badge-ai          { background-color: var(--color-mist);   color: var(--color-violet); }
.badge-hosting     { background-color: var(--color-mist);   color: var(--color-teal); }
.badge-business    { background-color: #FFF4E0;              color: #8a5a00; }
.badge-howto       { background-color: #E9F8F2;              color: #0c6e4a; }
.badge-company     { background-color: #F0EFF9;              color: var(--color-violet); }

/* ── Section spacing & labels ─────────────────────────────────── */
.section-py    { padding-top: 5rem;   padding-bottom: 5rem; }
.section-py-sm { padding-top: 3.5rem; padding-bottom: 3.5rem; }

.section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.75rem;
}

/* ── Cards ────────────────────────────────────────────────────── */
.card {
  border: 1px solid var(--color-cloud);
  border-radius: var(--radius-md);
  background-color: #fff;
}
.card-hover {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30,21,72,0.10);
}

/* Product card — violet left border */
.card-product {
  border: 1px solid var(--color-cloud);
  border-left: 4px solid var(--color-violet);
}

/* Service icon circle */
.service-icon-wrap {
  width: 56px;
  height: 56px;
  background-color: var(--color-mist);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-teal);
  flex-shrink: 0;
}

/* ── Hero — dark (standard) ───────────────────────────────────── */
.hero-dark {
  background-color: var(--color-deep-navy);
  color: #fff;
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}
.hero-dark h1    { color: #fff; }
.hero-dark .lead { color: var(--color-smoke); }
.hero-dark::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(80,70,200,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Hero — compact (contact, about) ─────────────────────────── */
.hero-dark--compact {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* ── Trust bar ────────────────────────────────────────────────── */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
}
.trust-item {
  font-size: 0.875rem;
  color: var(--color-smoke);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.trust-dot {
  width: 6px; height: 6px;
  background: var(--color-teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Blog cards ───────────────────────────────────────────────── */
.blog-card .blog-thumbnail {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.blog-card .blog-thumbnail img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-thumbnail img { transform: scale(1.03); }

/* ── Forms ────────────────────────────────────────────────────── */
.form-control,
.form-select {
  font-size: 1rem; /* ≥16px prevents iOS auto-zoom on focus */
  border: 1px solid var(--color-cloud);
  border-radius: var(--radius-md);
  padding: 0.625rem 0.875rem;
  color: var(--color-ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--color-violet);
  box-shadow: 0 0 0 3px rgba(80,70,200,0.12);
  outline: none;
}
.form-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-ink);
  margin-bottom: 0.375rem;
}

/* Input group prefix (+91 etc.) */
.input-group-text {
  background-color: var(--color-mist);
  border-color: var(--color-cloud);
  color: var(--color-slate);
  font-size: 0.9375rem;
}

/* ── Accordion ────────────────────────────────────────────────── */
.accordion-button {
  font-family: var(--font-base);
  color: var(--color-ink);
  background-color: transparent;
  font-size: 0.9375rem;
}
.accordion-button:not(.collapsed) {
  color: var(--color-violet);
  background-color: var(--color-mist);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(80,70,200,0.12);
}
.accordion-item  { border: none; }
.accordion-body  { color: var(--color-slate); font-size: 0.9rem; line-height: 1.7; }

/* ── Process steps ────────────────────────────────────────────── */
.process-steps { position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg, var(--color-cloud) 0, var(--color-cloud) 6px,
    transparent 6px, transparent 12px
  );
  z-index: 0;
}
.process-step-icon {
  width: 56px; height: 56px;
  background: var(--color-deep-navy);
  color: var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  position: relative;
  z-index: 1;
  margin: 0 auto 1rem;
  border: 3px solid var(--color-mist);
}

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer { background-color: var(--color-deep-navy); }
.footer-tagline { color: var(--color-violet-mid); font-weight: 600; font-size: 0.9rem; }
.border-footer  { border-color: rgba(255,255,255,0.1) !important; }
.footer-col-heading {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-smoke);
  margin-bottom: 0.875rem;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a  { color: var(--color-smoke); font-size: 0.9rem; transition: color 0.15s ease; }
.footer-links a:hover { color: #fff; }
.footer-social-link { color: var(--color-smoke); font-size: 1.25rem; transition: color 0.15s ease; }
.footer-social-link:hover { color: var(--color-teal); }

/* ── Floating WhatsApp button ─────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 1.625rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  z-index: 1050;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,0.55);
}

/* ── Alert variants ───────────────────────────────────────────── */
.alert-teal {
  background-color: #E9F8F2;
  border-color: var(--color-teal);
  color: #0c6e4a;
}

/* ── CTA banner section ───────────────────────────────────────── */
.cta-banner { background-color: var(--color-deep-navy); }

/* ── Pricing card — featured ──────────────────────────────────── */
.pricing-card-featured {
  background: var(--color-violet);
  color: #fff;
  transform: scale(1.02);
}
.pricing-card-featured h3,
.pricing-card-featured .h2,
.pricing-card-featured p,
.pricing-card-featured li { color: #fff !important; }

/* ── Progress bar ─────────────────────────────────────────────── */
.progress { background-color: var(--color-cloud); border-radius: 20px; }

/* ── Services jump navigation (services.php) ──────────────────── */
.services-jump-link {
  color: var(--color-smoke);
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.services-jump-link:hover {
  color: var(--color-violet);
  border-bottom-color: var(--color-violet);
}

/* ── WhatsApp quick chips (contact.php) ───────────────────────── */
.wa-chip {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 20px;
  transition: background-color 0.15s ease;
}
.wa-chip:hover { background-color: #dcfce7; color: #15803d; border-color: #86efac; }

/* ── About page — founder photo ───────────────────────────────── */
.founder-photo-wrap { max-width: 220px; margin: 0 auto; }
.founder-photo-wrap img {
  border: 4px solid var(--color-mist);
  box-shadow: 0 4px 20px rgba(80,70,200,0.12);
}

/* ── About page — founder pull quote ─────────────────────────── */
.founder-quote {
  border-left: 4px solid var(--color-teal);
  padding: 1rem 1.25rem;
  margin: 0;
  background: var(--color-mist);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.founder-quote p {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--color-violet-mid);
  font-weight: 500;
  margin-bottom: 0;
}


/* ── Article hero carousel (slideshow mode) ──────────── */
.article-hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  /* Height is controlled by hero-h-* modifier classes */
}
.article-carousel-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.article-carousel-placeholder {
  position: absolute;
  inset: 0;
  background: var(--color-mist);
}

/* Carousel caption overlay */
.carousel-caption-custom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.overlay-dark  { background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.15) 70%, transparent 100%); }
.overlay-light { background: linear-gradient(to top, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.3) 70%, transparent 100%); }
.overlay-none  { background: transparent; }

.carousel-slide-title {
  font-size: clamp(1.125rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.overlay-dark  .carousel-slide-title,
.overlay-dark  .carousel-slide-sub { color: #fff; }
.overlay-light .carousel-slide-title,
.overlay-light .carousel-slide-sub { color: var(--color-ink); text-shadow: none; }
.overlay-none  .carousel-slide-title,
.overlay-none  .carousel-slide-sub { color: #fff; }

.carousel-slide-sub {
  font-size: 0.9375rem;
  margin: 0;
  opacity: 0.92;
  max-width: 560px;
}
.carousel-slide-btn { flex-shrink: 0; }

/* Carousel indicators */
.article-hero-carousel .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: none;
}
.article-hero-carousel .carousel-indicators .active {
  background: #fff;
  transform: scale(1.3);
}

/* Controls */
.article-hero-carousel .carousel-control-prev,
.article-hero-carousel .carousel-control-next {
  width: 48px;
  opacity: 0;
  transition: opacity 0.2s;
}
.article-hero-carousel:hover .carousel-control-prev,
.article-hero-carousel:hover .carousel-control-next { opacity: 1; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 767.98px) {
  .carousel-caption-custom { padding: 1rem 1rem 0.75rem; }
  .carousel-slide-title    { font-size: 1rem; }
  .carousel-slide-sub      { font-size: 0.8125rem; display: none; }
}

/* ── Responsive overrides ─────────────────────────────────────── */
@media (max-width: 767.98px) {
  .hero-dark            { padding-top: 4rem;  padding-bottom: 3.5rem; }
  .hero-dark--compact   { padding-top: 3rem;  padding-bottom: 3rem; }
  .section-py           { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  h1                    { font-size: 2rem; }
  h2                    { font-size: 1.5rem; }
  .process-steps::before { display: none; }
  .whatsapp-float       { bottom: 16px; right: 16px; width: 48px; height: 48px; font-size: 1.375rem; }
  /* On mobile all hero heights collapse to a reasonable size */
  .article-hero-img,
  .hero-h-slim,
  .hero-h-medium,
  .hero-h-tall,
  .hero-h-cinematic     { height: 220px; border-radius: var(--radius-sm); }
  .article-body         { font-size: 1rem; }
}
@media (max-width: 575.98px) {
  .btn-lg { padding: 0.75rem 1.5rem; font-size: 0.9375rem; }
}

/* ── About page — product roadmap cards (dark bg) ─────────── */
.about-product-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  transition: background 0.15s ease;
}
.about-product-card:hover {
  background: rgba(255,255,255,0.10);
}

/* ── About page — misc utility classes ───────────────────── */

/* Lead paragraph max-width constraint */
.about-lead { max-width: 540px; }

/* Values sub-heading max-width */
.about-subtext { max-width: 480px; }

/* Section icon size (mission/vision) */
.about-section-icon { font-size: 2rem; }

/* Future product icon size */
.about-product-icon { font-size: 1.5rem; }

/* Problem card "our approach" callout */
.callout-teal {
  background: var(--color-mist);
  border-left: 3px solid var(--color-teal);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Step number circles (bootstrapped model section) */
.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
}
.step-circle--teal   { background: var(--color-teal);   color: #fff; }
.step-circle--violet { background: var(--color-violet); color: #fff; }
.step-circle--amber  { background: var(--color-amber);  color: #1A1826; }


/* ── Blog — shared thumbnail placeholder ──────────────────── */
.blog-thumb-placeholder {
  aspect-ratio: 16/9;
  background-color: var(--color-mist);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  font-size: 2.5rem;
}

/* ── Blog listing — featured article ─────────────────────── */
.blog-featured-thumb {
  min-height: 220px;
  overflow: hidden;
}
.blog-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-placeholder-icon { font-size: 3rem; }

/* ── Blog listing — empty state icon ─────────────────────── */
.blog-empty-icon { font-size: 3.5rem; }

/* ── Blog listing — newsletter inline CTA card ───────────── */
.blog-newsletter-cta {
  background-color: var(--color-mist);
  border: 1px solid var(--color-cloud);
}

/* ── Blog listing — breadcrumb ────────────────────────────── */
.breadcrumb-blog { --bs-breadcrumb-divider-color: var(--color-smoke); }
.breadcrumb-blog .breadcrumb-item a {
  color: var(--color-smoke);
  text-decoration: none;
}
.breadcrumb-blog .breadcrumb-item a:hover { color: #fff; }
.breadcrumb-blog .breadcrumb-item.active { color: var(--color-smoke); }
.breadcrumb-blog .breadcrumb-item + .breadcrumb-item::before {
  color: var(--color-smoke);
}

/* ── Blog listing — hero lead ─────────────────────────────── */
.blog-hero-lead { max-width: 520px; }

/* ── Blog listing — badge links ───────────────────────────── */
.badge-link { color: inherit; }
.badge-link:hover { color: inherit; text-decoration: underline; }

/* ── Single article — thumbnail ───────────────────────────── */
/* Article hero image — full container width, author-chosen height */
.article-hero-wrap {
  background: var(--color-mist);
  padding: 1rem 0 0;  /* small top gap for breathing room */
}
.article-hero-img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  /* Default height (overridden by height modifier classes below) */
  height: 380px;
}

/* ── Hero height options (set by author in admin) ─────── */
.hero-h-slim      { height: 220px; } /* Banner / header strip */
.hero-h-medium    { height: 380px; } /* Standard article (default) */
.hero-h-tall      { height: 520px; } /* Editorial / magazine style */
.hero-h-cinematic { height: 680px; } /* Full immersive film strip */

/* Keep old class as alias in case cached pages use it */
.article-thumbnail {
  display: block;
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* ── Single article — body typography ────────────────────── */
.article-body {
  line-height: 1.8;
  font-size: 1.0625rem;   /* 17px — more readable at wider column */
}
.article-body h2 {
  font-size: 1.5rem;
  margin-top: 2.25rem;
  margin-bottom: 0.875rem;
  color: var(--color-deep-navy);
}
.article-body h3 {
  font-size: 1.1875rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.article-body p   { margin-bottom: 1.25rem; }
.article-body ul,
.article-body ol  { padding-left: 1.75rem; margin-bottom: 1.5rem; }
.article-body li  { margin-bottom: 0.5rem; line-height: 1.75; }
.article-body blockquote {
  border-left: 4px solid var(--color-violet);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--color-mist);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--color-violet-mid);
}
.article-body a {
  color: var(--color-violet);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-body a:hover { color: var(--color-violet-mid); }
.article-body strong  { color: var(--color-ink); font-weight: 600; }
.article-body img     { border-radius: var(--radius-md); margin: 1rem 0; }

/* ── Single article — sidebar ─────────────────────────────── */
.article-sidebar {
  position: sticky;
  top: 88px;
}
.article-sidebar .card { font-size: 0.9rem; }
.article-sidebar-icon  { font-size: 2rem; }

/* ── 404 error page ──────────────────────────────────────── */
.error-code-display {
  font-size: clamp(5rem, 20vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  opacity: 0.15;
}

/* ── Homepage: Why Ai-SmartMove section ──────────────────── */
.why-asm-lead {
  color: var(--color-smoke);
  font-size: 1.125rem;
  line-height: 1.8;
}
.why-asm-footer {
  color: var(--color-smoke);
  font-style: italic;
}
.why-product-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  transition: background 0.15s ease;
}
.why-product-card:hover {
  background: rgba(255,255,255,0.11);
}
.why-product-icon { font-size: 1.75rem; }
.why-product-desc { color: var(--color-smoke); }