/* =========================================================
   MICRO MART PAGE
   Silver Star Vending
   Embedded, flat, premium, locally SEO-focused layout
   ========================================================= */

/* =========================================================
   PAGE FOUNDATION
   ========================================================= */

   :root {
    --micro-bg-light: #f5f9fc;
    --micro-bg-soft: #eef5fa;
    --micro-surface: rgba(255, 255, 255, 0.78);
    --micro-surface-strong: rgba(255, 255, 255, 0.94);
    --micro-border: rgba(15, 23, 42, 0.08);
    --micro-border-strong: rgba(2, 39, 101, 0.12);
    --micro-text: #112031;
    --micro-text-soft: #5a6a7c;
    --micro-heading: #0f1f37;
    --micro-accent: #0d8fd2;
    --micro-accent-2: #0f5fb8;
    --micro-glow: rgba(13, 143, 210, 0.14);
    --micro-shadow-sm: 0 10px 26px rgba(15, 23, 42, 0.05), 0 2px 8px rgba(15, 23, 42, 0.03);
    --micro-shadow-md: 0 18px 48px rgba(15, 23, 42, 0.08), 0 6px 18px rgba(15, 23, 42, 0.04);
    --micro-shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12), 0 10px 30px rgba(15, 23, 42, 0.06);
    --micro-radius-lg: clamp(18px, 1.6vw, 28px);
    --micro-radius-md: clamp(14px, 1vw, 20px);
    --micro-radius-sm: 14px;
  }
  
  body {
    overflow-x: hidden;
  }
  
  /* =========================================================
     HERO OVERRIDES
     ========================================================= */
  
  .micro-hero {
    min-height: 100vh;
    background:
      radial-gradient(circle at 12% 18%, rgba(13, 143, 210, 0.16), transparent 24%),
      radial-gradient(circle at 88% 14%, rgba(121, 158, 193, 0.18), transparent 24%),
      #0c1624;
  }
  
  .micro-hero .hero-bg-a {
    background-image:
      linear-gradient(115deg, rgba(12, 22, 36, 0.26), rgba(12, 22, 36, 0.08)),
      url('/assets/catalog/avanti-micromarket.webp');
  }
  
  .micro-hero .hero-bg-b {
    background-image:
      linear-gradient(115deg, rgba(12, 22, 36, 0.30), rgba(12, 22, 36, 0.10)),
      url('/assets/catalog/newly-installed-micromarket.webp');
  }
  
  .micro-hero .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(12, 22, 36, 0.84) 0%,
        rgba(12, 22, 36, 0.76) 38%,
        rgba(12, 22, 36, 0.72) 100%
      );
  }
  
  .micro-hero-showcase {
    height: min(74vh, 600px);
  }
  
  .micro-hero-showcase .hero-slide {
    object-fit: contain;
    filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.55));
  }
  
  .micro-hero-content {
    max-width: 660px;
  }
  
  .micro-hero .services-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.52rem 0.9rem;
    border-radius: 999px;
    background: rgba(143, 232, 255, 0.1);
    border: 1px solid rgba(143, 232, 255, 0.18);
    color: #b9f4ff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }
  
  .micro-hero .hero-title {
    max-width: 12ch;
  }
  
  .micro-hero .hero-description + .hero-description {
    margin-top: -0.5rem;
  }
  
  .hero-anchor-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-top: 1.35rem;
    opacity: 0;
    transform: translateY(18px);
    animation: heroTextRise 0.9s cubic-bezier(.22, .61, .36, 1) 0.95s forwards;
  }
  
  .hero-anchor-links a {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
  }
  
  .hero-anchor-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.12rem;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    transform: scaleX(0.45);
    transform-origin: left center;
    transition: transform 0.25s ease, background-color 0.25s ease;
  }
  
  .hero-anchor-links a:hover::after,
  .hero-anchor-links a:focus-visible::after {
    transform: scaleX(1);
    background: #b9f4ff;
  }
  
  /* =========================================================
     SECTION BASE
     ========================================================= */
  
  .micro-section {
    position: relative;
    padding: clamp(4.25rem, 7vw, 7rem) 0;
    color: var(--micro-text);
  }
  
  .micro-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  
  .micro-intro,
  .micro-selection,
  .micro-process {
    background:
      linear-gradient(180deg, #f7fbfe 0%, #f2f7fb 100%);
  }
  
  .micro-market-explainer,
  .micro-why {
    background:
      radial-gradient(circle at top left, rgba(13, 143, 210, 0.08), transparent 22%),
      radial-gradient(circle at bottom right, rgba(2, 39, 101, 0.05), transparent 24%),
      linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
  }
  
  .micro-section-heading {
    max-width: 920px;
    margin-bottom: clamp(2rem, 3vw, 3rem);
  }
  
  .micro-section-heading.center {
    margin-inline: auto;
    text-align: center;
  }
  
  .micro-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0.9rem;
    padding: 0.48rem 0.9rem;
    border-radius: 999px;
    background: rgba(2, 132, 199, 0.08);
    border: 1px solid rgba(2, 132, 199, 0.12);
    color: #0369a1;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(2, 132, 199, 0.08);
  }
  
  .micro-section-heading h2,
  .micro-split-copy h2 {
    margin: 0 0 1rem;
    color: var(--micro-heading);
    font-size: clamp(2rem, 2.4vw + 1rem, 3.9rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
    font-weight: 850;
    text-wrap: balance;
  }
  
  .micro-lead,
  .micro-section-heading p,
  .micro-split-copy p,
  .micro-copy-panel p,
  .micro-surface p,
  .micro-band-copy p,
  .micro-why-card p,
  .micro-step p,
  .micro-feature p {
    color: var(--micro-text-soft);
    font-size: clamp(1rem, 0.22vw + 0.96rem, 1.08rem);
    line-height: 1.82;
    text-wrap: pretty;
  }
  
  .micro-section-heading p:last-child,
  .micro-copy-panel p:last-child,
  .micro-split-copy p:last-child {
    margin-bottom: 0;
  }
  
  /* =========================================================
     INTRO
     ========================================================= */
  
  .micro-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
    gap: clamp(1.2rem, 2vw, 1.8rem);
    align-items: stretch;
  }
  
  .micro-panel {
    position: relative;
    min-width: 0;
    height: 100%;
    padding: clamp(1.4rem, 1.6vw, 2rem);
    border: 1px solid var(--micro-border);
    border-radius: var(--micro-radius-lg);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,251,254,0.98) 100%);
    box-shadow: var(--micro-shadow-sm);
  }
  
  .micro-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
      linear-gradient(135deg, rgba(255,255,255,0.34), rgba(255,255,255,0));
  }
  
  .micro-copy-panel h3,
  .micro-areas-panel h3,
  .micro-band h3,
  .micro-surface h3,
  .micro-why-card h3,
  .micro-step h3,
  .micro-feature h3 {
    margin: 0 0 0.75rem;
    color: var(--micro-heading);
    line-height: 1.18;
    letter-spacing: -0.02em;
    font-weight: 800;
  }
  
  .micro-copy-panel h3,
  .micro-areas-panel h3,
  .micro-band h3 {
    font-size: clamp(1.3rem, 0.7vw + 1.05rem, 1.75rem);
  }
  
  .micro-check-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    display: grid;
    gap: 0.85rem;
  }
  
  .micro-check-list li {
    position: relative;
    padding-left: 1.55rem;
    color: #233447;
    line-height: 1.7;
    font-weight: 600;
  }
  
  .micro-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.02rem;
    color: var(--micro-accent);
    font-weight: 800;
  }
  
  .micro-panel-top {
    margin-bottom: 1.25rem;
  }
  
  .micro-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0.75rem;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 95, 184, 0.08);
    border: 1px solid rgba(15, 95, 184, 0.12);
    color: #0f5fb8;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  
  .micro-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
  
  .micro-areas-grid > div {
    padding: 1rem;
    border-radius: var(--micro-radius-md);
    background: rgba(245, 250, 255, 0.8);
    border: 1px solid rgba(15, 95, 184, 0.08);
  }
  
  .micro-areas-grid h4 {
    margin: 0 0 0.7rem;
    color: #143252;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
  }
  
  .micro-areas-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.48rem;
  }
  
  .micro-areas-grid li {
    position: relative;
    padding-left: 0.95rem;
    color: var(--micro-text-soft);
    line-height: 1.6;
  }
  
  .micro-areas-grid li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--micro-accent), var(--micro-accent-2));
    box-shadow: 0 0 0 5px rgba(13, 143, 210, 0.08);
  }
  
  /* =========================================================
     EXPLAINER
     ========================================================= */
  
  .micro-split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.4rem, 2vw, 2rem);
    align-items: start;
  }
  
  .micro-feature-stack {
    display: grid;
    gap: 1rem;
  }
  
  .micro-feature {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1.1rem 1.1rem 1.1rem 1rem;
    border-radius: var(--micro-radius-md);
    border: 1px solid var(--micro-border);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(249,252,255,0.98) 100%);
    box-shadow: var(--micro-shadow-sm);
  }
  
  .micro-feature-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(13,143,210,0.12), rgba(15,95,184,0.08));
    color: #0f5fb8;
    border: 1px solid rgba(15,95,184,0.12);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.06em;
  }
  
  .micro-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
  }
  
  .micro-feature p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.72;
  }
  
  /* =========================================================
     SELECTION
     ========================================================= */
  
  .micro-columns-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 1.8vw, 1.35rem);
  }
  
  .micro-surface {
    position: relative;
    min-width: 0;
    padding: clamp(1.35rem, 1.4vw, 1.8rem);
    border-radius: var(--micro-radius-lg);
    border: 1px solid var(--micro-border);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(245,249,252,0.96) 100%);
    box-shadow: var(--micro-shadow-sm);
  }
  
  .micro-surface::after {
    content: "";
    position: absolute;
    top: 0;
    left: 14%;
    width: 72%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(13,143,210,0.35), rgba(15,95,184,0.18));
  }
  
  .micro-band {
    margin-top: clamp(1.2rem, 2vw, 1.6rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.25rem;
    align-items: center;
    padding: clamp(1.2rem, 1.4vw, 1.55rem);
    border-radius: var(--micro-radius-lg);
    background:
      linear-gradient(135deg, rgba(9, 34, 63, 0.98) 0%, rgba(19, 53, 86, 0.96) 52%, rgba(17, 84, 120, 0.94) 100%);
    color: #f2fbff;
    box-shadow: var(--micro-shadow-md);
  }
  
  .micro-band h3 {
    color: #ffffff;
    margin-bottom: 0.45rem;
  }
  
  .micro-band p {
    margin: 0;
    color: rgba(240, 248, 255, 0.82);
  }
  
  .micro-band-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 0.75rem;
  }
  
  .micro-band-list li {
    padding: 0.72rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.08);
    color: #f6fbff;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
  }
  
  /* =========================================================
     WHY
     ========================================================= */
  
  .micro-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 1.8vw, 1.35rem);
  }
  
  .micro-why-card {
    position: relative;
    min-width: 0;
    padding: 1.45rem 1.25rem 1.3rem;
    border-radius: var(--micro-radius-md);
    border: 1px solid var(--micro-border);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,251,255,0.98) 100%);
    box-shadow: var(--micro-shadow-sm);
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      border-color 0.25s ease;
  }
  
  .micro-why-card:hover,
  .micro-why-card:focus-within {
    transform: translateY(-3px);
    border-color: rgba(13, 143, 210, 0.18);
    box-shadow: var(--micro-shadow-md);
  }
  
  .micro-why-card h3 {
    font-size: 1.14rem;
  }
  
  .micro-why-card p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.75;
  }
  
  /* =========================================================
     PROCESS
     ========================================================= */
  
  .micro-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 1.8vw, 1.35rem);
  }
  
  .micro-step {
    position: relative;
    min-width: 0;
    padding: 1.35rem 1.2rem 1.25rem;
    border-radius: var(--micro-radius-md);
    border: 1px solid var(--micro-border);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(246,250,253,0.98) 100%);
    box-shadow: var(--micro-shadow-sm);
  }
  
  .micro-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    min-width: 52px;
    height: 40px;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: rgba(13, 143, 210, 0.1);
    border: 1px solid rgba(13, 143, 210, 0.14);
    color: #0369a1;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
  }
  
  .micro-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.45rem;
  }
  
  .micro-step p {
    margin: 0;
    font-size: 0.98rem;
  }
  
  /* =========================================================
     CTA TUNING
     ========================================================= */
  
  .cta-section .services-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.95rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #bff3ff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
  }
  
  /* =========================================================
     RESPONSIVE
     ========================================================= */
  
  @media (max-width: 1180px) {
    .micro-intro-grid,
    .micro-split-layout {
      grid-template-columns: 1fr;
    }
  
    .micro-hero .hero-title {
      max-width: 14ch;
    }
  }
  
  @media (max-width: 1024px) {
    .micro-columns-3,
    .micro-why-grid,
    .micro-process-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .micro-areas-grid {
      grid-template-columns: 1fr;
    }
  
    .micro-band {
      grid-template-columns: 1fr;
    }
  
    .micro-band-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 950px) {
    .micro-hero .hero-title {
      max-width: none;
    }
  
    .micro-hero-content {
      margin-inline: auto;
    }
  
    .hero-anchor-links {
      justify-content: center;
    }
  }
  
  @media (max-width: 700px) {
    .micro-columns-3,
    .micro-why-grid,
    .micro-process-grid,
    .micro-band-list {
      grid-template-columns: 1fr;
    }
  
    .micro-feature {
      grid-template-columns: 50px minmax(0, 1fr);
      gap: 0.85rem;
      padding: 1rem;
    }
  
    .micro-feature-num {
      width: 50px;
      height: 50px;
      border-radius: 15px;
      font-size: 0.9rem;
    }
  
    .micro-section {
      padding: 4rem 0;
    }
  
    .micro-panel,
    .micro-surface,
    .micro-step,
    .micro-why-card {
      padding: 1.15rem;
    }
  
    .micro-copy-panel h3,
    .micro-areas-panel h3,
    .micro-band h3 {
      font-size: 1.28rem;
    }
  }
  
  @media (max-width: 600px) {
    .micro-hero-showcase {
      height: 320px;
    }
  
    .micro-hero .hero-description {
      font-size: 1rem;
      line-height: 1.72;
    }
  
    .hero-anchor-links {
      gap: 0.6rem 0.9rem;
    }
  
    .hero-anchor-links a {
      font-size: 0.92rem;
    }
  
    .micro-section-heading h2,
    .micro-split-copy h2 {
      font-size: clamp(1.8rem, 8vw, 2.45rem);
    }
  
    .micro-lead,
    .micro-section-heading p,
    .micro-split-copy p,
    .micro-copy-panel p,
    .micro-surface p,
    .micro-band-copy p,
    .micro-why-card p,
    .micro-step p,
    .micro-feature p {
      font-size: 0.97rem;
      line-height: 1.78;
    }
  }
  
  @media (min-width: 1600px) {
    .micro-section .container {
      max-width: 1320px;
    }
  
    .micro-hero-showcase {
      height: min(72vh, 680px);
    }
  }
  
  /* =========================================================
     REDUCED MOTION
     ========================================================= */
  
  @media (prefers-reduced-motion: reduce) {
    .micro-why-card,
    .hero-anchor-links a::after {
      transition: none;
    }
  
    .micro-why-card:hover,
    .micro-why-card:focus-within {
      transform: none;
    }
  }