/* === Voipcom AI v2 marketing stylesheet ===
 * Matches the production manager-ui design system:
 * - Electric azure brand (#1e90ff / #0b74e6) + dark navy ink
 * - Inter body + Space Grotesk display
 * - Card / badge / KPI tile patterns lifted from manager-ui
 *
 * Self-contained — does not depend on /css/styles.css (v1).
 */

:root {
  --v2-surface: #ffffff;
  --v2-bg: #f9fafb;
  --v2-bg-alt: #f3f4f6;
  --v2-ink-900: #070c16;
  --v2-ink-800: #0b1220;
  --v2-ink-700: #111b30;
  --v2-ink-600: #1b2742;
  --v2-brand-50: #eef6ff;
  --v2-brand-100: #d8ecff;
  --v2-brand-200: #b4d9ff;
  --v2-brand-300: #82bfff;
  --v2-brand-400: #3f9dff;
  --v2-brand-500: #1e90ff;
  --v2-brand-600: #0b74e6;
  --v2-brand-700: #095cba;
  --v2-brand-800: #0b4a90;
  --v2-gray-100: #f3f4f6;
  --v2-gray-200: #e5e7eb;
  --v2-gray-300: #d1d5db;
  --v2-gray-400: #9ca3af;
  --v2-gray-500: #6b7280;
  --v2-gray-600: #4b5563;
  --v2-gray-700: #374151;
  --v2-gray-800: #1f2937;
  --v2-gray-900: #111827;
  --v2-success: #10b981;
  --v2-success-light: #d1fae5;
  --v2-warning: #f59e0b;
  --v2-warning-light: #fef3c7;
  --v2-danger: #ef4444;
  --v2-danger-light: #fee2e2;
  --v2-shadow-sm: 0 1px 2px rgba(7, 12, 22, 0.06), 0 1px 3px rgba(7, 12, 22, 0.04);
  --v2-shadow: 0 4px 14px rgba(11, 18, 32, 0.08);
  --v2-shadow-lg: 0 12px 28px rgba(11, 18, 32, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--v2-gray-900);
  background: var(--v2-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  letter-spacing: -0.015em;
  color: var(--v2-gray-900);
}

a { color: var(--v2-brand-600); text-decoration: none; }
a:hover { color: var(--v2-brand-700); }

.v2-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.v2-narrow { max-width: 880px; margin: 0 auto; }

/* === Sticky nav === */
.v2-nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--v2-ink-800);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.v2-nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.v2-nav-logo { display: flex; align-items: center; gap: 12px; color: white; font-family: 'Space Grotesk'; font-weight: 600; font-size: 18px; }
.v2-nav-logo img { height: 28px; }
.v2-nav-badge { background: var(--v2-brand-600); color: white; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; letter-spacing: 0.5px; }
.v2-nav-links { display: flex; align-items: center; gap: 4px; }
.v2-nav-links a {
  color: rgb(203 213 225); padding: 6px 12px; border-radius: 6px;
  font-size: 14px; font-weight: 500; transition: all 0.15s;
}
.v2-nav-links a:hover { color: white; background: rgba(255,255,255,0.1); }
.v2-nav-cta {
  background: var(--v2-brand-600); color: white; padding: 8px 16px;
  border-radius: 6px; font-size: 14px; font-weight: 600; transition: background 0.15s;
}
.v2-nav-cta:hover { background: var(--v2-brand-700); color: white; }
@media (max-width: 900px) { .v2-nav-links { display: none; } }

/* === Hero === */
.v2-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--v2-ink-900) 0%, var(--v2-ink-700) 50%, var(--v2-brand-800) 100%);
  color: white;
  padding: 100px 24px 80px;
}
.v2-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(30,144,255,0.25) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 100%, rgba(11,116,230,0.18) 0%, transparent 50%);
  pointer-events: none;
}
.v2-hero-inner { position: relative; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 960px) { .v2-hero-inner { grid-template-columns: 1fr; gap: 40px; } }
.v2-hero h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); line-height: 1.1; color: white; margin-bottom: 20px; }
.v2-hero p { font-size: 1.15rem; color: rgb(203 213 225); margin-bottom: 32px; max-width: 540px; line-height: 1.55; }
.v2-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }

.v2-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px;
  font-size: 15px; font-weight: 600; border-radius: 8px; transition: all 0.15s;
  cursor: pointer; border: none; text-decoration: none;
}
.v2-btn-primary { background: var(--v2-brand-600); color: white; }
.v2-btn-primary:hover { background: var(--v2-brand-700); color: white; transform: translateY(-1px); box-shadow: var(--v2-shadow); }
.v2-btn-ghost { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.25); }
.v2-btn-ghost:hover { background: rgba(255,255,255,0.1); color: white; }
.v2-btn-outline { background: transparent; color: var(--v2-brand-600); border: 1.5px solid var(--v2-brand-600); }
.v2-btn-outline:hover { background: var(--v2-brand-600); color: white; transform: translateY(-1px); box-shadow: var(--v2-shadow); }

.v2-hero-checks { display: flex; flex-wrap: wrap; gap: 6px 20px; list-style: none; padding: 0; margin: 0; font-size: 14px; color: rgb(203 213 225); }
.v2-hero-checks li { display: flex; align-items: center; gap: 6px; }
.v2-hero-checks li::before { content: "✓"; color: var(--v2-success); font-weight: 700; }

.v2-tag-pill { display: inline-block; background: rgba(30,144,255,0.18); border: 1px solid rgba(30,144,255,0.45); color: rgb(180 217 255); padding: 4px 12px; border-radius: 999px; font-size: 13px; font-weight: 500; margin-bottom: 20px; }

/* === Sections === */
.v2-section { padding: 80px 0; }
.v2-section-alt { background: white; }
.v2-section-dark { background: var(--v2-ink-900); color: rgb(229 231 235); }
.v2-section-dark h2, .v2-section-dark h3 { color: white; }
.v2-section-eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; font-weight: 700; color: var(--v2-brand-600); margin-bottom: 12px; }
.v2-section h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); line-height: 1.15; margin-bottom: 16px; }
.v2-section-lead { font-size: 1.15rem; color: var(--v2-gray-600); max-width: 720px; line-height: 1.55; margin-bottom: 48px; }
.v2-section-dark .v2-section-lead { color: rgb(148 163 184); }

/* === Mockup container + card === */
.v2-mockup {
  background: white; border: 1px solid var(--v2-gray-200); border-radius: 16px;
  box-shadow: var(--v2-shadow-lg); padding: 24px; color: var(--v2-gray-900);
}
.v2-mockup-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--v2-gray-100);
}
.v2-mockup-title { font-size: 18px; font-weight: 600; font-family: 'Space Grotesk'; }
.v2-mockup-sub { font-size: 13px; color: var(--v2-gray-500); }

.v2-mockup-chip {
  display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 500; gap: 4px;
}
.v2-chip-brand { background: var(--v2-brand-50); color: var(--v2-brand-800); }
.v2-chip-success { background: var(--v2-success-light); color: #065f46; }
.v2-chip-warning { background: var(--v2-warning-light); color: #92400e; }
.v2-chip-danger { background: var(--v2-danger-light); color: #991b1b; }
.v2-chip-gray { background: var(--v2-gray-100); color: var(--v2-gray-700); }

.v2-kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
@media (max-width: 760px) { .v2-kpi-grid { grid-template-columns: repeat(2, 1fr); } }
.v2-kpi {
  background: white; border: 1px solid var(--v2-gray-200); border-radius: 10px; padding: 14px;
}
.v2-kpi-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--v2-gray-400); font-weight: 600; margin-bottom: 6px; }
.v2-kpi-row { display: flex; align-items: baseline; justify-content: space-between; }
.v2-kpi-value { font-family: 'Space Grotesk'; font-size: 28px; font-weight: 600; letter-spacing: -0.02em; }
.v2-kpi-delta { font-size: 12px; font-weight: 500; }
.v2-kpi-delta.up { color: var(--v2-success); }
.v2-kpi-delta.down { color: var(--v2-danger); }
.v2-kpi-spark { margin-top: 8px; }
.v2-kpi-tone-good { color: var(--v2-success); }
.v2-kpi-tone-warn { color: var(--v2-warning); }
.v2-kpi-tone-bad { color: var(--v2-danger); }

.v2-mock-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.v2-mock-table th { text-align: left; padding: 8px; font-weight: 600; color: var(--v2-gray-600); background: var(--v2-gray-100); border-bottom: 1px solid var(--v2-gray-200); }
.v2-mock-table td { padding: 8px; border-bottom: 1px solid var(--v2-gray-100); }
.v2-mock-table tr:last-child td { border-bottom: none; }

/* === Split layout for showcases === */
.v2-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.v2-split-reverse .v2-split-text { order: 2; }
@media (max-width: 960px) { .v2-split { grid-template-columns: 1fr; gap: 40px; } .v2-split-reverse .v2-split-text { order: 0; } }
.v2-split-text h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 16px; }
.v2-split-text p { color: var(--v2-gray-600); font-size: 1.05rem; margin-bottom: 16px; line-height: 1.65; }
.v2-split-text ul { list-style: none; padding: 0; margin: 16px 0; }
.v2-split-text ul li { padding: 8px 0 8px 28px; position: relative; color: var(--v2-gray-700); font-size: 0.98rem; }
.v2-split-text ul li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 18px; height: 18px; border-radius: 50%; background: var(--v2-brand-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b74e6'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}

/* === Trust strip === */
.v2-trust { background: var(--v2-ink-800); color: rgb(203 213 225); padding: 24px 0; }
.v2-trust-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px 40px; font-size: 14px; }
.v2-trust strong { color: white; font-weight: 600; }

/* === Integrations grid === */
.v2-int-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px; margin-top: 32px;
}
.v2-int-card {
  background: white; border: 1px solid var(--v2-gray-200); border-radius: 10px;
  padding: 18px 14px; text-align: center; transition: all 0.15s;
}
.v2-int-card:hover { border-color: var(--v2-brand-300); transform: translateY(-2px); box-shadow: var(--v2-shadow); }
.v2-int-card img { height: 36px; max-width: 100%; object-fit: contain; margin-bottom: 8px; }
.v2-int-card-name { font-size: 13px; font-weight: 600; color: var(--v2-gray-800); }
.v2-int-card-status { font-size: 10px; color: var(--v2-gray-400); margin-top: 2px; }

/* === Pricing cards === */
.v2-pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; align-items: stretch; }
@media (max-width: 760px) { .v2-pricing { grid-template-columns: 1fr; max-width: 480px; } }
.v2-pricing-card {
  background: white; border: 1px solid var(--v2-gray-200); border-radius: 16px;
  padding: 32px; text-align: center; box-shadow: var(--v2-shadow);
  display: flex; flex-direction: column;
}
.v2-pricing-card.v2-pricing-featured {
  border: 2px solid var(--v2-brand-600);
  position: relative;
  box-shadow: 0 10px 30px rgba(11, 116, 230, 0.15);
}
.v2-pricing-card.v2-pricing-featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--v2-brand-600);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.v2-pricing-card .v2-plan-name { font-family: 'Space Grotesk'; font-size: 18px; font-weight: 600; color: var(--v2-brand-700); margin-bottom: 8px; }
.v2-pricing-card .v2-price { font-family: 'Space Grotesk'; font-size: 56px; font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.v2-pricing-card .v2-price-sub { font-size: 14px; color: var(--v2-gray-500); margin-top: 4px; }
.v2-pricing-features { list-style: none; padding: 0; margin: 24px 0; text-align: left; max-width: 320px; margin-left: auto; margin-right: auto; flex-grow: 1; }
.v2-pricing-features li { padding: 6px 0 6px 28px; position: relative; font-size: 14px; color: var(--v2-gray-700); }
.v2-pricing-features li::before {
  content: "✓"; color: var(--v2-success); font-weight: 700; position: absolute; left: 4px;
}
.v2-pricing-fineprint { font-size: 12px; color: var(--v2-gray-500); margin-top: 12px; }

/* === FAQ === */
.v2-faq { max-width: 800px; margin: 0 auto; }
.v2-faq details { background: white; border: 1px solid var(--v2-gray-200); border-radius: 10px; margin-bottom: 10px; padding: 0; overflow: hidden; transition: box-shadow 0.15s; }
.v2-faq details[open] { box-shadow: var(--v2-shadow-sm); }
.v2-faq summary { padding: 18px 22px; cursor: pointer; font-weight: 600; color: var(--v2-gray-900); list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 15px; }
.v2-faq summary::-webkit-details-marker { display: none; }
.v2-faq summary::after { content: "+"; font-size: 22px; color: var(--v2-brand-600); font-weight: 400; transition: transform 0.15s; }
.v2-faq details[open] summary::after { content: "−"; }
.v2-faq details p { padding: 0 22px 18px; color: var(--v2-gray-600); line-height: 1.6; font-size: 14.5px; }

/* === Testimonial strip === */
.v2-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .v2-testimonial-grid { grid-template-columns: 1fr; } }
.v2-test-card { background: white; border: 1px solid var(--v2-gray-200); border-radius: 12px; padding: 24px; }
.v2-test-stars { color: #fbbf24; margin-bottom: 12px; font-size: 16px; }
.v2-test-quote { font-style: italic; color: var(--v2-gray-700); margin-bottom: 16px; line-height: 1.6; font-size: 14.5px; }
.v2-test-meta { display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.v2-test-author { font-weight: 600; color: var(--v2-gray-900); }
.v2-test-source { color: var(--v2-gray-400); display: flex; align-items: center; gap: 4px; }

/* === Final CTA === */
.v2-final {
  background: linear-gradient(135deg, var(--v2-ink-900), var(--v2-brand-800));
  color: white; padding: 80px 24px; text-align: center;
}
.v2-final h2 { color: white; font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 16px; }
.v2-final p { color: rgb(203 213 225); font-size: 1.1rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* === Footer === */
.v2-footer { background: var(--v2-ink-900); color: rgb(148 163 184); padding: 56px 24px 24px; }
.v2-footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 760px) { .v2-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px 24px; } }
.v2-footer h4 { color: white; font-size: 14px; margin-bottom: 14px; }
.v2-footer a { color: rgb(148 163 184); display: block; padding: 4px 0; font-size: 14px; }
.v2-footer a:hover { color: white; }
.v2-footer-bottom { text-align: center; padding-top: 24px; }
.v2-footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-bottom: 14px; }
.v2-footer-nav a { display: inline; padding: 0; color: rgb(148 163 184); font-size: 14px; font-weight: 500; text-decoration: none; }
.v2-footer-nav a:hover { color: white; }
.v2-footer-copyright { font-size: 13px; color: rgb(100 116 139); }

/* === Hub page hero (locations, industries) === */
.v2-hub-hero {
  position: relative;
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(30,144,255,0.22) 0%, rgba(30,144,255,0) 60%),
    linear-gradient(180deg, #0b1220 0%, #0a2540 100%);
  padding: 96px 24px 60px;
  color: white;
  text-align: center;
  overflow: hidden;
}
.v2-hub-hero-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 1; }
.v2-hub-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #3f9dff; margin-bottom: 16px; }
.v2-hub-hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(34px, 6vw, 54px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 18px; color: white; }
.v2-hub-lead { font-size: 18px; line-height: 1.6; color: rgb(148 163 184); margin: 0 auto 30px; max-width: 660px; }
.v2-hub-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.v2-hub-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; max-width: 780px; margin: 0 auto; }
.v2-hub-stats > div { flex: 1 1 150px; min-width: 140px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 20px 14px; }
.v2-hub-stats .num { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: white; line-height: 1; letter-spacing: -0.01em; }
.v2-hub-stats .lbl { display: block; font-size: 12.5px; color: rgb(148 163 184); margin-top: 6px; }

/* === Industry cards (industries hub) === */
.v2-ind-section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.v2-ind-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 24px; max-width: 1140px; margin: 0 auto; }
.v2-ind-card { background: white; border: 1px solid #e8ecf2; border-top: 4px solid var(--accent); border-radius: 16px; padding: 30px; display: flex; flex-direction: column; box-shadow: 0 4px 14px rgba(15,23,42,0.05); transition: transform 0.18s ease, box-shadow 0.18s ease; }
.v2-ind-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(15,23,42,0.13); }
.v2-ind-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.v2-ind-icon { width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-ind-card-top h2 { font-family: 'Space Grotesk', sans-serif; font-size: 21px; font-weight: 600; color: #0b1220; margin: 0; line-height: 1.15; }
.v2-ind-intro { font-size: 14.5px; color: #374151; line-height: 1.65; margin: 0 0 20px; flex-grow: 1; }
.v2-ind-int-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: #9ca3af; font-weight: 700; margin-bottom: 10px; }
.v2-ind-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.v2-ind-pill { display: inline-block; padding: 5px 12px; background: #f6f8fc; color: var(--accent); border: 1px solid #e8ecf2; border-radius: 16px; font-size: 12px; font-weight: 600; }
.v2-ind-cta { width: 100%; justify-content: center; background: var(--accent); color: white; }
.v2-ind-cta:hover { filter: brightness(1.08); color: white; transform: translateY(-1px); box-shadow: var(--v2-shadow); }

/* === "Don't see yours" band === */
.v2-ind-band { background: radial-gradient(80% 140% at 50% 0%, rgba(30,144,255,0.18) 0%, rgba(30,144,255,0) 60%), linear-gradient(135deg, #0b1220, #0a2540); border-radius: 22px; padding: 52px 32px; text-align: center; max-width: 920px; margin: 0 auto; }
.v2-ind-band-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(63,157,255,0.12); border: 1px solid rgba(63,157,255,0.3); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }

/* === Compact industry strip (homepage + city pages) === */
.v2-ind-mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; max-width: 1140px; margin: 0 auto; }
.v2-ind-mini { display: flex; align-items: center; gap: 14px; background: white; border: 1px solid #e8ecf2; border-left: 4px solid var(--accent); border-radius: 12px; padding: 18px 20px; text-decoration: none; box-shadow: 0 2px 8px rgba(15,23,42,0.05); transition: transform 0.15s ease, box-shadow 0.15s ease; }
.v2-ind-mini:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(15,23,42,0.12); }
.v2-ind-mini-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-ind-mini-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 15px; color: #0b1220; flex: 1; line-height: 1.2; }
.v2-ind-mini-arrow { color: var(--accent); font-weight: 700; font-size: 16px; }

/* === City cards + one scene per metro section (locations page) === */
.v2-city-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.v2-city-card { display: block; background: white; border: 1px solid #e8ecf2; border-top: 3px solid #cbd5e1; border-radius: 12px; padding: 18px 16px; text-align: center; text-decoration: none; box-shadow: 0 2px 8px rgba(15,23,42,0.05); transition: transform 0.15s ease, box-shadow 0.15s ease; }
.v2-city-card.az { border-top-color: #f59e0b; }
.v2-city-card.co { border-top-color: #3b82f6; }
.v2-city-card:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(15,23,42,0.12); }
.v2-city-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 16px; color: #0b1220; }
.v2-city-state { font-size: 11px; color: #9ca3af; margin-top: 2px; letter-spacing: 0.05em; }
.v2-metro-scene { width: 100%; max-width: 460px; height: 130px; border-radius: 16px; overflow: hidden; position: relative; margin-bottom: 24px; box-shadow: 0 6px 18px rgba(15,23,42,0.10); }
.v2-metro-scene.az { background: linear-gradient(180deg, #fef3c7, #fed7aa); }
.v2-metro-scene.co { background: linear-gradient(180deg, #dbeafe, #eff6ff); }
.v2-metro-scene svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* === City page hero regional postcard === */
.v2-city-hero-scene { width: 100%; max-width: 320px; height: 84px; border-radius: 14px; overflow: hidden; position: relative; margin-bottom: 22px; box-shadow: 0 4px 14px rgba(15,23,42,0.08); }
.v2-city-hero-scene.az { background: linear-gradient(180deg, #fef3c7, #fed7aa); }
.v2-city-hero-scene.co { background: linear-gradient(180deg, #dbeafe, #eff6ff); }
.v2-city-hero-scene svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* === Misc helpers === */
.v2-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .v2-grid-3 { grid-template-columns: 1fr; } }
.v2-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 760px) { .v2-grid-2 { grid-template-columns: 1fr; } }
