/* FastLocations — FL_EconDev_Guide.htm styles */

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

    :root {
      --blue:        #2557b7;
      --blue-dark:   #1a3f8f;
      --blue-light:  #7aaee8;
      --cream:       #f5f0e6;
      --cream-dark:  #ece7da;
      --text-navy:   #152a4a;
      --text-mid:    #3a4a5e;
      --text-muted:  #6b7a90;
      --ghost-num:   rgba(37,87,183,0.08);
      --border:      #ddd8cc;
      --white:       #ffffff;
      --tip-bg:      #eef4fd;
      --tip-border:  #7aaee8;
      --warn-bg:     #fff8e6;
      --warn-border: #d4a017;
      --ok-bg:       #edfaf3;
      --ok-border:   #2ea86b;
		--navy: #1a54a0;
    --navy-mid: #1e62bc;
    --navy-light: #2d6dbf;
    --teal: #3a9fd6;
    --teal-light: #7dc4ea;
    --teal-pale: #e3f3fb;
    --cream: #f8f6f1;
    --text: #0d1f35;
    --text-muted: #4a6070;
    --text-light: #7a94a6;
    --border: #d8e4ea;
    --gold: #c9a84c;
    }

    html { scroll-behavior: smooth; }

    body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    font-size: 16px;
    line-height: 1.75;
    min-height: 100vh;
  }

    /* ══ HEADER / NAV ══ */
    header {
      background: var(--navy);
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid var(--navy-light);
    }

    .header-inner {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-area img {
      height: 44px;
      width: auto;
      filter: brightness(0) invert(1);
    }

    .topnav-right {
      display: flex;
      align-items: center;
      gap: 24px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .topnav-right a {
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      font-size: 13px;
      font-weight: 400;
      white-space: nowrap;
      transition: color 0.2s;
    }

    .topnav-right a:hover { color: #fff; }

    /* ── HAMBURGER ── */
    /* Desktop nav: always visible on wide screens */
    @media (min-width: 681px) {
      .hamburger-btn { display: none !important; }
      .topnav-right  { display: flex !important; }
    }

    .hamburger-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      flex-shrink: 0;
    }

    .hamburger-btn span {
      display: block;
      width: 22px;
      height: 2px;
      background: rgba(255,255,255,0.8);
      border-radius: 2px;
      transition: transform 0.2s, opacity 0.2s;
    }

    .hamburger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger-btn.active span:nth-child(2) { opacity: 0; }
    .hamburger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── MOBILE: covers phones up to tablet width ── */
    @media (max-width: 860px) {
      /* Content area — use full width with tighter side padding */
      .content {
        padding: 0 16px 60px;
        max-width: 100%;
      }

      /* Sections — less vertical breathing room */
      .section {
        padding: 48px 0 36px;
      }

      /* Section inner — remove the desktop left-offset entirely */
      .section-inner {
        padding-left: 0;
      }

      /* Ghost numbers — too large on narrow screens */
      .ghost-num {
        display: none;
      }

      /* Headings — scale down */
      .section h2 {
        font-size: 1.5rem;
      }

      /* Hero — tighten horizontal padding */
      .hero {
        padding: 3rem 1rem 3rem;
      }

      /* Anchor strip — tighten inner padding */
      .anchor-strip-inner {
        padding: 0 0.5rem;
      }
      .anchor-strip a {
        padding: 0.85rem 0.9rem 0.85rem 0;
        font-size: 12px;
      }

      /* Stat strip — stack on very narrow screens */
      .stat-strip {
        flex-direction: column;
      }
      .stat-card {
        flex: none;
        width: 100%;
      }

      /* Conversation rows — stack speaker label above speech */
      .convo-wrap {
        padding: 16px 16px;
      }
      .convo-row {
        flex-direction: column;
        gap: 4px;
      }
      .convo-row .who {
        min-width: unset;
        font-size: 12px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        opacity: 0.75;
      }
      .convo-row .say {
        font-size: 14px;
      }

      /* Video grid — single column */
      .video-grid {
        grid-template-columns: 1fr;
      }

      /* Video section — tighter padding */
      .video-section {
        padding: 48px 16px 56px;
        margin-top: 0;
      }

      /* CTA block */
      .cta-block {
        padding: 36px 20px;
        border-radius: 10px;
      }
      .cta-block h2 {
        font-size: 1.5rem;
      }
      .cta-btn {
        display: block;
        text-align: center;
      }
    }

    /* ── HAMBURGER: show only on narrow screens ── */
    @media (max-width: 680px) {
      .header-inner {
        height: auto;
        padding: 0.8rem 1rem;
        flex-wrap: wrap;
        align-items: center;
      }

      .hamburger-btn { display: flex; }

      .topnav-right {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0.5rem 0 0.25rem;
        margin-top: 0.6rem;
        border-top: 1px solid rgba(255,255,255,0.1);
      }

      .topnav-right.open { display: flex; }

      .topnav-right a {
        display: block;
        width: 100%;
        padding: 0.65rem 0;
        font-size: 14px;
        color: rgba(255,255,255,0.75);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        white-space: normal;
      }

      .topnav-right a:last-child { border-bottom: none; }
    }
    /* ══ HERO ══ */
    .hero {
      background: var(--blue);
      padding: 80px 24px 90px;
      text-align: center;
    }
    .hero-eyebrow {
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-bottom: 22px;
    }
    .hero h1 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.18;
      max-width: 760px;
      margin: 0 auto 28px;
    }
    .hero h1 em { font-style: italic; color: var(--blue-light); }
    .hero p {
      font-size: 16px;
      color: rgba(255,255,255,0.72);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ══ ANCHOR STRIP (TOC style matching FL_Help) ══ */
    .anchor-strip {
      background: #fff;
      border-bottom: 1px solid var(--border);
    }
    .anchor-strip-inner {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      overflow-x: auto;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
    .anchor-strip-inner::-webkit-scrollbar { display: none; }
    .anchor-strip a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 1rem 1.5rem 1rem 0;
      text-decoration: none;
      color: var(--text-mid);
      font-size: 13px;
      font-weight: 400;
      white-space: nowrap;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      transition: color 0.2s, border-color 0.2s;
    }
    .anchor-strip a:hover { color: var(--navy); border-bottom-color: var(--navy); }
    .an-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      background: var(--teal-pale);
      color: var(--teal);
      border-radius: 50%;
      font-size: 10px;
      font-weight: 500;
      flex-shrink: 0;
    }

    /* ══ CONTENT AREA ══ */
    .content { max-width: 860px; margin: 0 auto; padding: 0 24px 100px; }

    /* ══ SECTIONS ══ */
    .section {
      padding: 72px 0 56px;
      border-bottom: 1px solid var(--border);
      position: relative;
    }
    .section:last-child { border-bottom: none; }
    .section-inner { padding-left: 88px; position: relative; }
    .ghost-num {
      position: absolute;
      left: -8px;
      top: -14px;
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 7rem;
      font-weight: 800;
      color: var(--ghost-num);
      line-height: 1;
      user-select: none;
      pointer-events: none;
    }
    .section-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 10px;
    }
    .section h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--blue);
      line-height: 1.25;
      margin-bottom: 24px;
    }
    .section p { color: var(--text-mid); margin-bottom: 16px; }
    .section p:last-child { margin-bottom: 0; }
    .section strong { color: var(--text-navy); }
    .section ul, .section ol { padding-left: 20px; color: var(--text-mid); margin-bottom: 16px; }
    .section li { margin-bottom: 9px; }
    .section li strong { color: var(--text-navy); }

    ul.check { list-style: none; padding: 0; }
    ul.check li { padding: 11px 0 11px 32px; position: relative; border-bottom: 1px solid var(--border); }
    ul.check li:last-child { border-bottom: none; }
    ul.check li::before { content: "✓"; position: absolute; left: 2px; top: 12px; color: var(--ok-border); font-weight: 700; font-size: 15px; }

    .step-label {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--blue);
      margin: 24px 0 8px;
    }

    /* ══ CALLOUTS ══ */
    .callout { border-radius: 8px; padding: 16px 20px; margin: 22px 0; font-size: 14.5px; }
    .callout-tip  { background: var(--tip-bg);  border-left: 4px solid var(--tip-border);  color: var(--text-navy); }
    .callout-warn { background: var(--warn-bg); border-left: 4px solid var(--warn-border); color: #6a4200; }
    .callout-ok   { background: var(--ok-bg);   border-left: 4px solid var(--ok-border);   color: #14503a; }
    .callout strong.ch {
      display: block;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      opacity: 0.65;
      margin-bottom: 5px;
      color: inherit;
    }

    /* ══ STAT STRIP ══ */
    .stat-strip { display: flex; gap: 14px; margin: 24px 0; flex-wrap: wrap; }
    .stat-card { flex: 1 1 150px; background: var(--blue); color: #fff; border-radius: 10px; padding: 22px 20px; text-align: center; }
    .stat-card .num { font-family: 'Playfair Display', Georgia, serif; font-size: 2.2rem; font-weight: 800; line-height: 1.1; }
    .stat-card .lbl { font-size: 12px; opacity: 0.78; margin-top: 6px; line-height: 1.45; }

    /* ══ CONVERSATION ══ */
    .convo-wrap { background: var(--cream-dark); border: 1px solid var(--border); border-radius: 10px; padding: 24px 28px; margin: 22px 0; }
    .convo-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
    .convo-row { display: flex; gap: 14px; margin-bottom: 14px; }
    .convo-row:last-child { margin-bottom: 0; }
    .convo-row .who { font-weight: 600; color: var(--blue); font-size: 13.5px; min-width: 108px; flex-shrink: 0; padding-top: 1px; }
    .convo-row .say { color: var(--text-mid); font-size: 14.5px; line-height: 1.6; }
    .convo-row .say em { color: var(--blue); font-style: normal; font-weight: 600; }

    
	  /* ── HERO ── */
  .hero {
    background: var(--navy);
    padding: 5rem 2rem 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(29,158,117,0.18) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 1.25rem;
  }

  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--teal-light);
  }

  .hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.55);
    max-width: 540px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.65;
  }

	  
	  
	  /* ══ VIDEO SECTION ══ */
    .video-section {
      background: var(--blue);
      padding: 72px 24px 80px;
      margin-top: 60px;
    }
    .video-section-inner {
      max-width: 860px;
      margin: 0 auto;
    }
    .video-section-eyebrow {
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      text-align: center;
      margin-bottom: 16px;
    }
    .video-section h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 2rem;
      font-weight: 800;
      color: #fff;
      text-align: center;
      margin-bottom: 12px;
    }
    .video-section h2 em { font-style: italic; color: var(--blue-light); }
    .video-section-sub {
      text-align: center;
      color: rgba(255,255,255,0.68);
      font-size: 15px;
      max-width: 520px;
      margin: 0 auto 48px;
      line-height: 1.65;
    }
    .video-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .video-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 12px;
      overflow: hidden;
    }
    .video-embed {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 */
      height: 0;
      overflow: hidden;
      background: rgba(0,0,0,0.3);
    }
    .video-embed iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }
    .video-meta {
      padding: 20px 22px 24px;
    }
    .video-tag {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue-light);
      margin-bottom: 8px;
    }
    .video-meta h3 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 10px;
    }
    .video-meta p {
      font-size: 13.5px;
      color: rgba(255,255,255,0.65);
      line-height: 1.6;
    }

    /* ══ CTA ══ */
    .cta-block { background: var(--blue); border-radius: 14px; padding: 52px 40px; text-align: center; margin-top: 60px; }
    .cta-block h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
    .cta-block h2 em { font-style: italic; color: var(--blue-light); }
    .cta-block p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 28px; font-size: 15px; }
    @keyframes cta-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(204,32,32,0.55), 0 4px 18px rgba(0,0,0,0.18); }
      55%       { box-shadow: 0 0 0 10px rgba(204,32,32,0), 0 4px 18px rgba(0,0,0,0.18); }
    }
    .cta-btn {
      display: inline-block;
      background: #cc2020;
      color: #ffffff;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.05em;
      padding: 16px 42px;
      border-radius: 50px;
      text-decoration: none;
      text-transform: uppercase;
      animation: cta-pulse 2.4s ease-in-out infinite;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .cta-btn::after { content: " →"; }
    .cta-btn:hover {
      background: #a81a1a;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(204,32,32,0.5);
      animation: none;
    }

    hr.soft { border: none; border-top: 1px solid var(--border); margin: 28px 0; }

       /* ── FOOTER ── */
  footer {
    background: var(--navy);
    padding: 2rem;
    text-align: center;
  }

  footer p {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
  }

  footer a {
    color: var(--teal-light);
    text-decoration: none;
  }

  /* ══════════════════════════════════════════
     MOBILE OVERRIDES — placed last so they win
     Covers phones and narrow tablets up to 900px
  ══════════════════════════════════════════ */
  @media screen and (max-width: 900px) {

    /* ── Content wrapper ── */
    .content {
      max-width: 100% !important;
      padding: 0 16px 60px !important;
    }

    /* ── Sections ── */
    .section {
      padding: 44px 0 32px !important;
    }

    /* ── Remove the big left indent ── */
    .section-inner {
      padding-left: 0 !important;
    }

    /* ── Hide decorative ghost numbers ── */
    .ghost-num {
      display: none !important;
    }

    /* ── Scale down headings ── */
    .section h2 {
      font-size: 1.45rem !important;
      line-height: 1.3 !important;
    }

    /* ── Hero ── */
    .hero {
      padding: 3rem 1rem 2.5rem !important;
    }

    /* ── Anchor strip ── */
    .anchor-strip-inner {
      padding: 0 4px !important;
    }
    .anchor-strip a {
      padding: 0.8rem 0.75rem 0.8rem 0 !important;
      font-size: 12px !important;
    }

    /* ── Stat cards: stack vertically ── */
    .stat-strip {
      flex-direction: column !important;
    }
    .stat-card {
      flex: none !important;
      width: 100% !important;
    }

    /* ── Conversation: stack speaker above speech ── */
    .convo-wrap {
      padding: 14px 14px !important;
    }
    .convo-row {
      flex-direction: column !important;
      gap: 3px !important;
      margin-bottom: 16px !important;
    }
    .convo-row .who {
      min-width: unset !important;
      font-size: 11px !important;
      letter-spacing: 0.08em !important;
      text-transform: uppercase !important;
      opacity: 0.7 !important;
    }
    .convo-row .say {
      font-size: 14px !important;
    }

    /* ── Video grid: single column ── */
    .video-grid {
      grid-template-columns: 1fr !important;
    }
    .video-section {
      padding: 48px 16px 56px !important;
      margin-top: 0 !important;
    }

    /* ── CTA block ── */
    .cta-block {
      padding: 32px 18px !important;
      border-radius: 10px !important;
    }
    .cta-block h2 {
      font-size: 1.5rem !important;
    }
    .cta-btn {
      display: block !important;
      text-align: center !important;
      padding: 15px 28px !important;
    }
  }

  /* ── Hamburger: only on narrowest screens ── */
  @media screen and (min-width: 681px) {
    .hamburger-btn { display: none !important; }
    .topnav-right  { display: flex !important; }
  }

  
