/* ── GoToAppleMaps Global Styles ──
   Canonical tokens extracted from index.html :root.
   Linked by all 4 HTML pages. Page-specific styles remain inline.
*/

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

/* ── Tokens ── */
:root {
    --bg: #050505;
    --bg-elevated: #111111;
    --bg-card: #0d0d0d;
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(255,255,255,0.15);
    --text-primary: #f5f5f7;
    --text-secondary: rgba(255,255,255,0.55);
    --text-tertiary: rgba(255,255,255,0.35);
    --accent: #0A84FF;
    --accent-green: #30D158;
    --accent-orange: #FF9F0A;
    --accent-red: #0A84FF;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* ── Focus-visible ── */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
:focus:not(:focus-visible) { outline: none; }

/* ── Skip-to-content ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 200;
    padding: 12px 24px;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* ── Layout ── */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Navigation ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(5,5,5,0.72);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
    padding: 8px 0;
    min-height: 44px;
}

.nav-brand img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    position: relative;
    font-size: 14px;
    /* Same color + weight for all nav items so contrast difference doesn't
       read as a weight difference. Active state is signalled by an
       underline bar via ::after below — a clear non-color cue. */
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
    transition: color 0.2s;
    min-height: 44px;
    min-width: 44px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a[aria-current="page"] {
    color: var(--text-primary);
}

.nav-links a[aria-current="page"]::after {
    content: "";
    position: absolute;
    /* Match the text width: padding is 8px on each side, so the bar
       spans from left:8px to right:8px (i.e. the inner content box). */
    left: 8px;
    right: 8px;
    bottom: 8px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
}

.nav-cta {
    font-size: 13px !important;
    color: var(--text-primary) !important;
    background: rgba(255,255,255,0.1);
    padding: 10px 18px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-radius: 99px;
    transition: background 0.2s;
}

.nav-cta:hover { background: rgba(255,255,255,0.16) !important; }

/* ── Hamburger (CSS-only, <768px) ── */
.nav-toggle { display: none; }
.nav-hamburger {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span,
.nav-hamburger span::before,
.nav-hamburger span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
    position: relative;
}
.nav-hamburger span::before,
.nav-hamburger span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
}
.nav-hamburger span::before { top: -6px; }
.nav-hamburger span::after  { top:  6px; }

/* Open state */
.nav-toggle:checked ~ .nav-hamburger span { background: transparent; }
.nav-toggle:checked ~ .nav-hamburger span::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--text-primary);
}
.nav-toggle:checked ~ .nav-hamburger span::after {
    top: 0;
    transform: rotate(-45deg);
    background: var(--text-primary);
}

.nav-menu-overlay {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5,5,5,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    padding: 24px;
    flex-direction: column;
    gap: 4px;
}

.nav-menu-overlay a {
    display: flex;
    align-items: center;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
    min-height: 52px;
}
.nav-menu-overlay a:last-child { border-bottom: none; }
.nav-menu-overlay a:hover { color: var(--text-primary); }

.nav-toggle:checked ~ .nav-menu-overlay {
    display: flex;
}

@media (max-width: 767px) {
    .nav-hamburger { display: flex; }
    .nav-links { display: none; }
}

@media (min-width: 768px) {
    .nav-menu-overlay { display: none !important; }
}

/* ── Footer ── */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

footer p {
    font-size: 13px;
    color: var(--text-tertiary);
    line-height: 1.8;
}

footer a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--text-secondary);
    transition: color 0.2s;
}

footer a:hover { color: var(--text-primary); }

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
    text-align: left;
}

.footer-section h3 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.footer-links a {
    padding: 8px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

/* ── Related Tools ── */
.related-tools {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.related-tools h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.related-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.related-tool-card {
    display: block;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.2s;
}

.related-tool-card:hover { border-color: var(--border-hover); }

.related-tool-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.related-tool-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ── Merged from v3-shared.css ── */
/* ── v3 Shared Nav & Footer ──
   Used by subpages (/quick/, /reverse/, /guide/, /trip/)
   to match the main homepage v3 design.
*/

/* ── Nav ── */
.nav {
    background: #000;
    color: #fff;
    padding: 16px max(20px, 4vw);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.brand-mark {
    border-radius: 24%;
    background: radial-gradient(circle at 30% 25%, #5CB8FF 0%, #0A84FF 50%, #005BBB 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -2px 4px rgba(0,0,0,0.15), 0 4px 10px -3px rgba(215,0,21,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    letter-spacing: -0.005em;
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    transition: opacity .15s;
}

.nav-links a:hover {
    opacity: .7;
}

.nav-links a[aria-current="page"] {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.nav-cta {
    text-decoration: none;
    background: #fff;
    color: #0a0a0a !important;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.005em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity .15s;
}

.nav-cta svg {
    display: inline-block;
}

.nav-cta:hover {
    opacity: .85;
}

@media (max-width: 720px) {
    .nav-links a:not(.nav-cta) {
        display: none;
    }
}

/* ── Footer ── */
.footer {
    background: #000;
    color: rgba(255,255,255,0.7);
    padding: clamp(40px, 5vw, 64px) max(20px, 4vw) 28px;
    margin-top: clamp(40px, 5vw, 64px);
}

.footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 14px 0 0;
    max-width: 320px;
    line-height: 1.55;
    letter-spacing: -0.005em;
}

.footer-col-head {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 14px;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-links a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    letter-spacing: -0.005em;
    transition: opacity .15s;
}

.footer-col-links a:hover {
    opacity: .7;
}

.footer-bottom {
    max-width: 1240px;
    margin: 36px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    letter-spacing: -0.005em;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34c759;
}

@media (max-width: 760px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* ── Common dark page base ── */
body {
    background: #0a0a0a;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
}

/* ── Focus ── */
:focus-visible {
    outline-color: #0A84FF;
}

/* ── Skip link ── */
.skip-link {
    background: #0A84FF;
}

/* ── Merged from v3-overrides.css ── */
/* ── v3 Red Theme Overrides ──
   Loaded AFTER global.css to reskin the app.js-driven UI
   to the v3 red accent design system.
*/

/* ── Token overrides ── */
:root {
    --bg: #0a0a0a;
    --bg-card: #1c1c1e;
    --bg-elevated: #1c1c1e;
    --accent: #0A84FF;
    --accent-green: #34c759;
    --text-primary: #fff;
    --text-secondary: rgba(255,255,255,0.7);
    --text-tertiary: rgba(255,255,255,0.5);
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(255,255,255,0.15);
    --radius-md: 22px;
    --radius-lg: 22px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
}

/* ── Upload Card ── */
.upload-card {
    background: #1c1c1e;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
}

.upload-card:hover {
    border-color: rgba(255,255,255,0.15);
}

/* ── Upload Area (dashed drop zone) ── */
.upload-area {
    border: 2px dashed #0A84FF;
    border-radius: 22px;
}

.upload-area:hover,
.upload-area.drag-active {
    border-color: #0A84FF;
    background: rgba(10,132,255,0.06);
}

.upload-area:focus-visible {
    border-color: #0A84FF;
    outline: 2px solid #0A84FF;
    outline-offset: 2px;
}

/* ── Progress ── */
.progress-fill {
    background: #0A84FF;
}

.progress-bar {
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
}

.progress-spinner {
    border-top-color: #0A84FF;
}

/* Phase dots: active = red, done = green */
.progress-phase.active .phase-dot {
    background: #0A84FF;
    box-shadow: 0 0 8px rgba(10,132,255,0.5);
}

.progress-phase.done .phase-dot {
    background: #34c759;
}

/* ── Results ── */
.results-header {
    color: #fff;
}

/* ── Success Checkmark (green stays, centered) ── */
.success-checkmark {
    display: flex;
    justify-content: center;
}

.checkmark-circle {
    stroke: #34c759;
}

.checkmark-check {
    stroke: #34c759;
}

/* ── Guide Link Success Button ── */
.guide-link-success {
    background: #0A84FF;
    border-radius: 999px;
}

.guide-link-success:hover {
    box-shadow: 0 4px 24px rgba(10,132,255,0.4);
}

/* ── Convert Another Button ── */
.convert-another-btn {
    border-radius: 999px;
    border-color: rgba(255,255,255,0.08);
}

.convert-another-btn:hover {
    border-color: rgba(255,255,255,0.15);
}

/* ── Support Section ── */
.support-section {
    background: #1c1c1e;
    border: 1px solid rgba(10,132,255,0.15);
    border-radius: 22px;
}

/* ── Power Pack Button (white bg, dark text) ── */
.power-pack-button {
    background: #fff;
    color: #0a0a0a;
    border-radius: 999px;
}

.power-pack-button:hover {
    box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}

/* ── Coffee Button ── */
.coffee-button {
    border-radius: 999px;
}

/* ── Support Contact Link ── */
.support-contact a {
    color: #0A84FF;
}

/* ── Drag Overlay ── */
.drag-overlay {
    background: rgba(10,132,255,0.06);
}

.drag-icon {
    color: #0A84FF;
}

/* ── Confetti Canvas (no style override needed, just ensure visibility) ── */

/* ── Tiles (dark override) ── */
.tile {
    background: #1c1c1e !important;
    border-color: rgba(255,255,255,0.08) !important;
    color: #fff;
}

.tile.accent {
    background: #1c1c1e !important;
    border-color: rgba(10,132,255,0.15) !important;
}

.tile-head h3 {
    color: #fff !important;
}

.tile-head p {
    color: rgba(255,255,255,0.6) !important;
}

.tile-footer {
    border-top-color: rgba(255,255,255,0.08) !important;
    color: rgba(255,255,255,0.5) !important;
}

.format-chip {
    background: #2c2c2e !important;
    border-color: rgba(255,255,255,0.08) !important;
    color: #fff !important;
}

/* ── Device grid text ── */
.device-name {
    color: rgba(255,255,255,0.6) !important;
}

/* ── How it works card ── */
.how-card {
    background: #1c1c1e !important;
    border-color: rgba(255,255,255,0.08) !important;
    box-shadow: none !important;
}

.how-card h2 {
    color: #fff !important;
}

.how-card .how-sub {
    color: rgba(255,255,255,0.6) !important;
}

.how-step-title {
    color: #fff !important;
}

.how-step-desc {
    color: rgba(255,255,255,0.6) !important;
}

/* ── FAQ card ── */
.faq-card {
    background: #1c1c1e !important;
    border-color: rgba(255,255,255,0.08) !important;
    box-shadow: none !important;
}

.faq-card h2 {
    color: #fff !important;
}

.faq-q {
    color: #fff !important;
}

.faq-a p {
    color: rgba(255,255,255,0.6) !important;
}

.faq-item {
    border-bottom-color: rgba(255,255,255,0.08) !important;
}

/* ── iOS Install Card ── */
.ios-install-card {
    background: #1c1c1e;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
}

/* ── Results / Progress: break out of tile grid ── */
.tile-row.converting {
    grid-template-columns: 1fr !important;
}

.tile-row.converting > .tile:not(.accent) {
    display: none !important;
}

.tile-row.converting > .tile.accent {
    max-width: 600px;
    margin: 0 auto;
    min-height: auto;
}

/* ── Hero glow override (red tint) ── */
.hero::before {
    background: radial-gradient(ellipse at center, rgba(10,132,255,0.08) 0%, transparent 70%);
}

/* ── Focus-visible override ── */
:focus-visible {
    outline-color: #0A84FF;
}

/* ── Buttons & interactive accents ── */
.btn-primary {
    border-radius: 999px;
}

.takeout-cta {
    background: #0A84FF;
    border-radius: 999px;
}

.takeout-mini-guide-btn {
    background: #0A84FF;
}

.quick-convert-btn {
    background: #0A84FF;
    border-radius: 999px;
}

.qc-action-open {
    background: #0A84FF;
}

.quick-convert-help a,
.quick-convert-bridge a {
    color: #0A84FF;
}

.quick-convert-input:focus {
    border-color: #0A84FF;
}

/* ── Format pills ── */
.format-pill {
    background: #1c1c1e;
    border-color: rgba(255,255,255,0.08);
    border-radius: 999px;
}

/* ── Share button ── */
.share-guide-btn {
    background: #0A84FF;
    border-radius: 999px;
}

/* ── Skip link ── */
.skip-link {
    background: #0A84FF;
}

/* ── Place list hover ── */
.place-list-item:hover {
    color: #0A84FF;
}

.place-list-show-more {
    color: #0A84FF;
}

/* ── Merged from design-tokens.css ── */
/**
 * GoToAppleMaps shared design tokens.
 * Single source of truth for buttons + page-level type scale.
 *
 * Loaded by all 4 page templates:
 *   i18n-source/index.html         (home — uses --font-hero-h1, NOT page-h1)
 *   i18n-source/quick/index.html
 *   i18n-source/reverse/index.html
 *   i18n-source/guide/index.html
 *
 * Page-specific styles in each template's <style> block can still
 * override these for one-off needs, but the defaults defined here
 * keep buttons + page typography consistent across the site.
 */

:root {
  /* Page-level typography (subpages: /quick, /reverse, /guide).
     The home hero keeps its own --font-hero-h1 declaration in index.html. */
  --font-page-h1: clamp(32px, 5vw, 44px);
  --font-page-h2: clamp(20px, 3vw, 28px);

  /* Button geometry */
  --btn-padding-y: 14px;
  --btn-padding-x: 28px;
  --btn-radius: 99px;
}

/* ── Unified primary action button ─────────────────────────────────
   One look for the "do the thing" CTA across every page.
   Aliases .qc-btn and .qc-action-open match existing markup so we
   don't have to rewrite the HTML class names in each template. */
.btn-primary,
.qc-btn,
.qc-action-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: auto;
  min-width: 100px;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  background: var(--text-primary);
  color: var(--bg);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font, -apple-system, system-ui, sans-serif);
  line-height: 1;
  border: none;
  border-radius: var(--btn-radius);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.btn-primary:hover,
.qc-btn:hover,
.qc-action-open:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.15);
  opacity: 1;
}

.btn-primary:active,
.qc-btn:active,
.qc-action-open:active {
  transform: translateY(0);
}

.btn-primary:disabled,
.qc-btn:disabled,
.qc-action-open:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ── Secondary button (transparent / outline) ───────────────────── */
.btn-secondary,
.qc-action-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  background: transparent;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font, -apple-system, system-ui, sans-serif);
  line-height: 1;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.15));
  border-radius: var(--btn-radius);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.btn-secondary:hover,
.qc-action-copy:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ── Page-level h1 standardization ──────────────────────────────────
   Subpages opt in by adding class="page-title" to their h1, OR by
   referencing var(--font-page-h1) from their own h1 rule. The home
   hero's gigantic 88px tagline is intentionally NOT covered here. */
.page-title {
  font-size: var(--font-page-h1);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}

/* ── 3-step visual strip ────────────────────────────────────────────
   Used on /guide/, /quick/, /reverse/ to show the page's flow at a
   glance. Cards can be <a> (clickable, links to a section) or <div>
   (informational). Both look the same.
*/
.step-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 56px;
  padding: 0;
  list-style: none;
}

.step-strip-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 20px;
  background: var(--bg-elevated, rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  border-radius: 14px;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.step-strip-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at top right, rgba(10, 132, 255, 0.06), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}

a.step-strip-item:hover,
.step-strip-item:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 132, 255, 0.4);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

a.step-strip-item:hover::after,
.step-strip-item:hover::after {
  opacity: 1;
}

.step-strip-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-tertiary, rgba(255, 255, 255, 0.45));
}

.step-strip-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  stroke-width: 1.5;
}

.step-strip-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.01em;
}

@media (max-width: 720px) {
  .step-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 40px;
  }
  .step-strip-item {
    padding: 20px;
  }
}
