:root {
  --navy: #0b1f3a;
  --navy-2: #102a4f;
  --navy-rgb: 11, 31, 58;
  --blue: #175cd3;
  --blue-dark: #0f4cbd;
  --blue-soft: #eaf2ff;
  --blue-pale: #f4f8ff;
  --blue-light: #69b5ff;
  --blue-rgb: 23, 92, 211;
  --cyan: #0e9fca;
  --ink: #152338;
  --muted: #66758a;
  --muted-2: #8794a5;
  --line: #dce4ef;
  --line-strong: #c8d4e3;
  --surface: #f5f8fc;
  --white: #fff;
  --success: #16835b;
  --container: 1240px;
  --font: "Manrope", "Aptos", sans-serif;
  --shadow-sm: 0 2px 8px rgba(22, 46, 82, .08);
  --shadow-md: 0 8px 24px rgba(22, 46, 82, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--font); font-size: 15px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -64px; z-index: 1000; padding: 10px 14px; color: var(--white); background: var(--blue); border-radius: 5px; transition: top 160ms ease; }
.skip-link:focus { top: 16px; }

/* Header */
.utility-bar { color: #d8e5f7; background: var(--navy); font-size: 11px; }
.utility-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; }
.utility-inner p { margin: 0; }
.utility-links { display: flex; gap: 22px; }
.utility-links a:hover { color: var(--white); }
.site-header { position: relative; z-index: 50; color: var(--ink); background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); }
.site-header.is-sticky { position: sticky; top: 0; box-shadow: var(--shadow-sm); animation: header-in 180ms ease both; }
.site-header.is-sticky .utility-bar { display: none; }
@keyframes header-in { from { opacity: .8; } to { opacity: 1; } }
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 800; letter-spacing: -1.2px; }
.brand > span:last-child > span { color: var(--blue); }
.brand-mark { width: 32px; height: 32px; display: inline-grid; place-items: center; color: var(--white); background: var(--blue); border-radius: 6px; }
.brand-mark svg { width: 20px; height: 20px; stroke-width: 2.4; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a { position: relative; color: #40516a; font-size: 13px; font-weight: 700; transition: color 160ms ease; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--blue); transition: right 180ms ease; }
.desktop-nav a:hover { color: var(--blue); }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 9px; }
.button { min-height: 43px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 18px; border: 1px solid transparent; border-radius: 6px; font-weight: 800; font-size: 13px; cursor: pointer; transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease; }
.button svg { width: 17px; height: 17px; }
.button-primary { color: var(--white); background: var(--blue); border-color: var(--blue); }
.button-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); box-shadow: 0 4px 14px rgba(var(--blue-rgb), .22); }
.button-outline { color: var(--navy); border-color: var(--line-strong); background: var(--white); }
.button-outline:hover { color: var(--blue); border-color: var(--blue); }
.button-light { color: var(--navy); background: var(--white); }
.button-light:hover { color: var(--blue); box-shadow: var(--shadow-sm); }
.icon-button, .menu-toggle { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 6px; background: var(--white); cursor: pointer; transition: color 160ms ease, border-color 160ms ease; }
.icon-button:hover, .menu-toggle:hover { color: var(--blue); border-color: var(--blue); }
.icon-button svg, .menu-toggle svg { width: 18px; }
.icon-button { position: relative; color: var(--ink); }
.saved-count { position: absolute; right: -5px; top: -6px; min-width: 18px; height: 18px; padding: 0 4px; display: grid; place-items: center; color: var(--white); background: var(--blue); border: 2px solid var(--white); border-radius: 9px; font-size: 9px; font-weight: 800; }
.saved-count[hidden] { display: none; }
.menu-toggle { display: none; }
.mobile-nav { display: none; padding: 8px 24px 24px; color: var(--ink); background: var(--white); border-top: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 700; }

/* Hero */
.hero { min-height: 690px; position: relative; z-index: 4; display: flex; align-items: center; overflow: visible; color: var(--ink); background: var(--blue-pale); border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(color-mix(in srgb, var(--blue) 28%, #e8eef5) 1px, transparent 1px); background-size: 22px 22px; opacity: .28; mask-image: linear-gradient(90deg, #000, transparent 72%); }
.hero-media { position: absolute; inset: 0 0 0 55%; background: center / cover no-repeat; clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%); animation: hero-image-in 900ms ease both; }
.hero-media.has-video { background: var(--navy); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.brand img { display: block; max-height: 36px; width: auto; }
.brand-footer img { max-height: 32px; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(244,248,255,1) 0%, rgba(244,248,255,.98) 45%, rgba(244,248,255,.35) 68%, rgba(var(--navy-rgb), .06) 100%); }
@keyframes hero-image-in { from { opacity: 0; clip-path: polygon(24% 0,100% 0,100% 100%,10% 100%); } to { opacity: 1; clip-path: polygon(13% 0,100% 0,100% 100%,0 100%); } }
.hero-content { position: relative; padding-block: 94px 82px; }
.hero-copy { max-width: 720px; animation: copy-in 650ms 80ms ease both; }
@keyframes copy-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.hero h1 { margin-bottom: 24px; max-width: 760px; color: var(--navy); font-size: clamp(47px, 6vw, 78px); line-height: 1.03; letter-spacing: -4px; font-weight: 750; }
.hero h1::after { content: ""; display: inline-block; width: 11px; height: 11px; margin-left: 7px; background: var(--blue); border-radius: 2px; animation: dot-pulse 2.2s ease-in-out infinite; }
@keyframes dot-pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.hero-copy > p { max-width: 620px; margin-bottom: 38px; color: #53647a; font-size: 17px; line-height: 1.75; }
.search-panel { max-width: 1110px; position: relative; z-index: 6; display: grid; grid-template-columns: 1.2fr .85fr .75fr auto; padding: 10px; color: var(--ink); background: var(--white); border: 1px solid #d3deec; border-radius: 8px; box-shadow: 0 14px 36px rgba(31,64,109,.14); animation: copy-in 650ms 180ms ease both; overflow: visible; }
.search-field { min-width: 0; position: relative; padding: 3px 16px; border-right: 1px solid var(--line); overflow: visible; }
.search-field label { display: block; margin: 0 0 1px 27px; color: var(--navy); font-size: 10px; font-weight: 800; }
.field-control { display: flex; align-items: center; gap: 9px; overflow: visible; }
.field-control > svg { width: 17px; flex: 0 0 auto; color: var(--blue); }
.field-control input, .field-control select { width: 100%; min-width: 0; padding: 4px 0; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 13px; }
.field-control input::placeholder { color: #8b97a8; }
.search-submit { min-width: 148px; min-height: 58px; margin-left: 10px; }
.quick-searches { max-width: 900px; display: flex; flex-wrap: wrap; align-items: center; gap: 9px 16px; margin-top: 20px; color: #63738a; font-size: 12px; animation: copy-in 650ms 260ms ease both; }
.quick-searches > span { color: var(--navy); font-weight: 800; }
.quick-searches button { padding: 0 0 2px; color: #50637c; background: transparent; border: 0; border-bottom: 1px solid #9cb0ca; cursor: pointer; }
.quick-searches button:hover { color: var(--blue); border-color: var(--blue); }

/* Choices select */
.choices { width: 100%; margin: 0; overflow: visible; font-size: 13px; font-family: var(--font); }
.choices__inner { min-height: 30px; padding: 2px 24px 2px 0 !important; border: 0; background: transparent; font-size: 13px; font-family: inherit; }
.choices[data-type*=select-one] .choices__inner { padding-bottom: 2px; }
.choices[data-type*=select-one]::after { right: 4px; width: 7px; height: 7px; margin-top: -6px; border: 0; border-right: 1.5px solid #5b6e86; border-bottom: 1.5px solid #5b6e86; transform: rotate(45deg); transition: transform 160ms ease; }
.choices[data-type*=select-one].is-open::after { margin-top: -2px; transform: rotate(225deg); }
.choices__list--single { padding: 3px 0; }
.search-panel .choices.is-open { z-index: 30; }
.choices__list--dropdown, .choices__list[aria-expanded] { z-index: 220; width: 100%; min-width: 240px; margin-top: 12px; padding: 8px 0 6px; border: 1px solid #d3deec; border-radius: 8px; background: var(--white); box-shadow: 0 16px 40px rgba(31,64,109,.18); overflow: hidden; }
.search-panel .choices__list--dropdown, .search-panel .choices__list[aria-expanded] { left: -28px; width: calc(100% + 44px); }
.choices__list--dropdown .choices__list, .choices__list[aria-expanded] .choices__list { max-height: 240px; overflow-y: auto; }
.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item { padding: 10px 14px; color: var(--ink); font-size: 13px; font-family: inherit; }
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted { color: var(--blue); background: var(--blue-soft); }
.choices__input { margin: 0 10px 8px; width: calc(100% - 20px) !important; min-height: 36px; padding: 8px 10px !important; border: 1px solid var(--line); border-radius: 6px; background: var(--blue-pale); color: var(--ink); font-size: 13px; font-family: inherit; }
.choices__input:focus { border-color: #b7c9e4; outline: 0; background: var(--white); }
.choices__placeholder { opacity: 1; color: var(--ink); }
.trust-strip { position: relative; z-index: 1; color: #dce8f8; background: var(--navy); border-bottom: 1px solid #1c3c64; }
.trust-inner { min-height: 80px; display: flex; align-items: center; gap: 0; }
.trust-inner p { flex: 0 0 auto; margin: 0; padding: 0 31px; border-right: 1px solid rgba(255,255,255,.13); font-size: 12px; }
.trust-inner p:first-child { padding-left: 0; }
.trust-inner strong { margin-right: 5px; color: var(--white); font-size: 18px; }
.trust-inner .trust-promise { margin-left: auto; padding-right: 0; border: 0; display: inline-flex; align-items: center; gap: 8px; }
.trust-promise svg { width: 18px; color: #65b5ff; }
.section { padding: 96px 0; }
section[id] { scroll-margin-top: 86px; }
.section-contrast { background: var(--surface); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.section-heading h2, .guide-copy h2 { margin-bottom: 10px; color: var(--navy); font-size: clamp(30px, 3vw, 42px); line-height: 1.18; letter-spacing: -1.8px; }
.section-heading p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.section-heading-tools { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.text-link { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 7px; padding-bottom: 3px; color: var(--blue); border-bottom: 1px solid #9bbbe8; font-size: 12px; font-weight: 800; }
.text-link:hover { color: var(--blue-dark); border-color: var(--blue-dark); }
.text-link svg { width: 16px; }

/* Categories */
.category-track { display: flex; gap: 14px; overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth; scroll-snap-type: x mandatory; }
.category-track::-webkit-scrollbar { display: none; }
.category-card { flex: 0 0 calc((100% - 42px) / 4); min-width: 230px; min-height: 132px; position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 7px; overflow: hidden; scroll-snap-align: start; transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease; }
.category-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--blue); opacity: 0; transition: opacity 180ms ease; }
.category-card:hover { border-color: #a8c4ea; background: #fbfdff; box-shadow: var(--shadow-sm); }
.category-card:hover::before { opacity: 1; }
.category-card > i:first-child { width: 42px; height: 42px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 6px; font-size: 16px; transition: color 180ms ease, background-color 180ms ease; }
.category-card:hover > i:first-child { color: var(--white); background: var(--blue); }
.category-card h3 { margin: 0 0 2px; color: var(--navy); font-size: 14px; }
.category-card span { color: var(--muted); font-size: 11px; }
.category-arrow { width: 16px; color: #9eacbc; }

/* Business cards */
.slider-controls { display: flex; gap: 8px; }
.slider-controls button { width: 42px; height: 42px; display: grid; place-items: center; color: var(--navy); background: var(--white); border: 1px solid var(--line-strong); border-radius: 5px; cursor: pointer; }
.slider-controls button:hover { color: var(--white); border-color: var(--blue); background: var(--blue); }
.slider-controls svg { width: 17px; }
.business-track { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth; scroll-snap-type: x mandatory; }
.business-track::-webkit-scrollbar { display: none; }
.business-card { min-width: 0; background: var(--white); border: 1px solid var(--line); border-radius: 7px; overflow: hidden; scroll-snap-align: start; transition: border-color 180ms ease, box-shadow 180ms ease; }
.business-card:hover { border-color: #b4c9e7; box-shadow: var(--shadow-md); }
.business-image { position: relative; aspect-ratio: 1.3; overflow: hidden; background: #dce5f1; }
.business-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.business-card:hover .business-image img { transform: scale(1.035); }
.editor-pick { position: absolute; left: 12px; top: 12px; padding: 5px 8px; color: var(--blue-dark); background: var(--white); border: 1px solid #d9e6f7; border-radius: 4px; font-size: 9px; font-weight: 800; box-shadow: var(--shadow-sm); }
.save-button { position: absolute; right: 12px; top: 12px; width: 34px; height: 34px; display: grid; place-items: center; color: var(--navy); background: var(--white); border: 1px solid #d9e2ee; border-radius: 5px; cursor: pointer; }
.save-button svg { width: 16px; }
.save-button[aria-pressed="true"] { color: var(--white); background: var(--blue); border-color: var(--blue); }
.save-button[aria-pressed="true"] svg { fill: currentColor; }
.business-body { padding: 18px; }
.business-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 8px; color: var(--muted); font-size: 9px; font-weight: 800; }
.business-meta .open { color: var(--success); }
.business-card h3 { margin: 0 0 6px; color: var(--navy); font-size: 18px; letter-spacing: -.5px; }
.business-card h3 a:hover { color: var(--blue); }
.location { display: flex; align-items: center; gap: 6px; margin: 0 0 14px; color: var(--muted); font-size: 11px; }
.location svg { width: 14px; color: var(--blue); }
.rating { display: flex; align-items: center; gap: 7px; padding-top: 13px; border-top: 1px solid var(--line); font-size: 10px; }
.rating strong { font-size: 12px; }
.rating > span:last-child { color: var(--muted); }
.stars { color: #f0a126; letter-spacing: 1px; font-size: 9px; }

/* Latest companies */
.latest-section { background: var(--white); }
.latest-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.latest-company { display: grid; grid-template-columns: 58px 1fr auto 38px; align-items: center; gap: 16px; min-height: 112px; padding: 18px; border: 1px solid var(--line); border-radius: 7px; transition: border-color 180ms ease, box-shadow 180ms ease; }
.latest-company:hover { border-color: #a9c5eb; box-shadow: var(--shadow-sm); }
.company-logo { width: 58px; height: 58px; display: grid; place-items: center; overflow: hidden; color: var(--white); border-radius: 6px; font-size: 15px; font-weight: 800; letter-spacing: -.4px; }
.company-logo-photo { background: var(--line); }
.company-logo img { width: 100%; height: 100%; object-fit: cover; }
.logo-blue { background: var(--blue); }.logo-cyan { background: #087fa8; }.logo-navy { background: #17345d; }.logo-sky { background: #397fc6; }
.company-main > span { color: var(--blue); font-size: 9px; font-weight: 800; }
.company-main h3 { margin: 1px 0 2px; color: var(--navy); font-size: 15px; }
.company-main p { display: flex; align-items: center; gap: 5px; margin: 0; color: var(--muted); font-size: 10px; }
.company-main p svg { width: 12px; }
.company-detail { text-align: right; }
.company-detail > span { display: block; margin-bottom: 3px; color: var(--muted-2); font-size: 9px; }
.company-detail strong { display: flex; align-items: center; justify-content: flex-end; gap: 4px; color: var(--success); font-size: 9px; }
.company-detail svg { width: 13px; }
.company-action { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 5px; }
.company-action:hover { color: var(--white); border-color: var(--blue); background: var(--blue); }
.company-action svg { width: 15px; }

/* Cities */
.city-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; grid-template-rows: 250px 250px; gap: 12px; }
.city-card { position: relative; overflow: hidden; border-radius: 7px; background: #c4d2e2; }
.city-large { grid-row: 1 / 3; }
.city-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.city-card:hover img { transform: scale(1.035); }
.city-shade { position: absolute; inset: 45% 0 0; background: linear-gradient(180deg, transparent, rgba(5,24,51,.9)); }
.city-info { position: absolute; left: 22px; right: 22px; bottom: 18px; color: var(--white); }
.city-info strong { display: block; margin-bottom: 2px; font-size: 21px; }
.city-info span { color: #d9e5f3; font-size: 10px; }

/* Events */
.events-section { background: var(--surface); }
.event-filter { width: 190px; }
.event-heading-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.event-filter .choices__inner { min-height: 42px; display: flex; align-items: center; padding: 5px 32px 5px 13px !important; background: var(--white); border: 1px solid var(--line-strong); border-radius: 6px; }
.event-filter .choices[data-type*=select-one]::after { right: 15px; }
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.event-card { background: var(--white); border: 1px solid var(--line); border-radius: 7px; overflow: hidden; transition: border-color 180ms ease, box-shadow 180ms ease; }
.event-card:hover { border-color: #acc7eb; box-shadow: var(--shadow-md); }
.event-card[hidden] { display: none; }
.event-image { position: relative; display: block; aspect-ratio: 1.65; overflow: hidden; }
.event-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.event-card:hover img { transform: scale(1.035); }
.event-date { position: absolute; left: 14px; bottom: 14px; width: 52px; height: 58px; display: grid; place-items: center; align-content: center; color: var(--navy); background: var(--white); border-radius: 5px; box-shadow: var(--shadow-sm); }
.event-date strong { font-size: 19px; line-height: 1.1; }
.event-date span { color: var(--blue); font-size: 9px; font-weight: 800; }
.event-body { padding: 19px; }
.event-body > span { color: var(--blue); font-size: 9px; font-weight: 800; }
.event-body h3 { margin: 5px 0 10px; color: var(--navy); font-size: 17px; line-height: 1.4; }
.event-body h3 a:hover { color: var(--blue); }
.event-body p { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; min-height: 38px; margin: 0 0 14px; color: var(--muted); font-size: 9px; }
.event-body p svg { width: 12px; color: var(--blue); }
.event-link { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-size: 10px; font-weight: 800; }
.event-link svg { width: 14px; }
.event-empty { padding: 30px; text-align: center; color: var(--muted); background: var(--white); border: 1px solid var(--line); }
.event-empty[hidden] { display: none; }

/* Pricing */
.pricing-section { background: var(--white); }
.pricing-heading { align-items: center; }
.billing-switch { display: flex; padding: 4px; background: var(--surface); border: 1px solid var(--line); border-radius: 6px; }
.billing-switch button { min-height: 36px; padding: 0 13px; border: 0; border-radius: 4px; color: var(--muted); background: transparent; font-size: 10px; font-weight: 800; cursor: pointer; }
.billing-switch button.is-active { color: var(--blue); background: var(--white); box-shadow: var(--shadow-sm); }
.billing-switch span { margin-left: 3px; color: var(--success); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.pricing-grid[hidden] { display: none !important; }
.pricing-card { position: relative; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 7px; }
.pricing-card.featured-plan { border: 2px solid var(--blue); box-shadow: 0 12px 32px rgba(var(--blue-rgb), .12); }
.plan-recommended { position: absolute; right: 18px; top: 18px; color: var(--blue); font-size: 9px; font-weight: 800; }
.plan-head { min-height: 88px; padding-right: 74px; }
.plan-head h3 { margin-bottom: 6px; color: var(--navy); font-size: 19px; }
.plan-head p { margin: 0; color: var(--muted); font-size: 11px; }
.plan-price { min-height: 74px; padding: 20px 0; border-top: 1px solid var(--line); }
.plan-price strong { display: block; color: var(--navy); font-size: 30px; line-height: 1.1; letter-spacing: -1px; }
.plan-price span { color: var(--muted); font-size: 10px; }
.button-plan { width: 100%; margin-bottom: 24px; color: var(--blue); border-color: #9bbbe8; background: var(--white); }
.button-plan:hover { color: var(--white); border-color: var(--blue); background: var(--blue); }
.featured-plan .button-primary { color: var(--white); background: var(--blue); }
.pricing-card ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.pricing-card li { display: flex; align-items: center; gap: 9px; padding: 10px 0; border-bottom: 1px solid #edf1f6; color: #4d5d73; font-size: 11px; }
.pricing-card li svg { width: 15px; color: var(--success); }
.pricing-card li.unavailable { color: #9aa5b4; }
.pricing-card li.unavailable svg { color: #9aa5b4; }
.pricing-note { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 24px 0 0; color: var(--muted); font-size: 10px; }
.pricing-note svg { width: 16px; color: var(--blue); }

/* Guide, journal, review */
.guide-section { color: var(--white); background: var(--navy); }
.guide-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.guide-copy h2 { max-width: 500px; color: var(--white); font-size: clamp(34px, 4vw, 50px); }
.guide-copy > p { max-width: 500px; margin: 20px 0 30px; color: #b9c9dd; font-size: 17px; line-height: 1.7; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.process-list li { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.process-list li > span { color: var(--blue-light); font-size: 11px; font-weight: 800; }
.process-list h3 { margin-bottom: 5px; font-size: 18px; }
.process-list p { margin: 0; color: #aabbd0; font-size: 15px; line-height: 1.65; }
.journal-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 52px; }
.journal-feature { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: center; }
.journal-feature img { width: 100%; aspect-ratio: 1.08; object-fit: cover; border-radius: 6px; }
.journal-content > span, .journal-list article > span { display: block; margin-bottom: 11px; color: var(--blue); font-size: 10px; font-weight: 800; }
.journal-content h3 { margin-bottom: 12px; color: var(--navy); font-size: clamp(22px, 2.3vw, 31px); line-height: 1.28; letter-spacing: -1px; }
.journal-content h3 a:hover, .journal-list h3 a:hover { color: var(--blue); }
.journal-content p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.journal-list { border-top: 1px solid var(--line); }
.journal-list article { position: relative; min-height: 145px; padding: 24px 48px 22px 0; border-bottom: 1px solid var(--line); }
.journal-list h3 { margin: 0; color: var(--navy); font-size: 16px; line-height: 1.45; }
.article-link { position: absolute; right: 0; top: 50%; width: 34px; height: 34px; display: grid; place-items: center; color: var(--blue); border: 1px solid var(--line); border-radius: 5px; }
.article-link:hover { color: var(--white); background: var(--blue); border-color: var(--blue); }
.article-link svg { width: 15px; }
.review-section { padding-block: 76px; background: var(--blue-pale); border-block: 1px solid #dce8f7; }
.review-track { display: flex; gap: 18px; overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth; scroll-snap-type: x mandatory; }
.review-track::-webkit-scrollbar { display: none; }
.review-slide { flex: 0 0 calc((100% - 18px) / 2); display: grid; grid-template-columns: 148px 1fr; min-height: 228px; background: var(--white); border: 1px solid var(--line); border-radius: 7px; overflow: hidden; scroll-snap-align: start; transition: border-color 180ms ease, box-shadow 180ms ease; }
.review-slide:hover { border-color: #b4c9e7; box-shadow: var(--shadow-md); }
.review-photo { min-height: 100%; background: #dce5f1; }
.review-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-photo.is-fallback { display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); font-size: 28px; font-weight: 800; letter-spacing: -.6px; }
.review-body { display: flex; flex-direction: column; min-width: 0; padding: 22px; }
.review-body > p { flex: 1; margin: 0 0 16px; color: var(--navy); font-size: 15px; line-height: 1.65; }
.review-person { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.review-person strong, .review-person span { display: block; }
.review-person strong { color: var(--navy); font-size: 14px; }
.review-person > div span { color: var(--muted); font-size: 12px; line-height: 1.4; }
.review-slide .stars { flex: 0 0 auto; font-size: 12px; }

/* CTA and footer */
.business-cta { position: relative; padding: 84px 0; overflow: hidden; color: var(--white); background: var(--blue); }
.business-cta::after { content: ""; position: absolute; width: 340px; height: 340px; right: 3%; top: -150px; border: 70px solid rgba(255,255,255,.07); border-radius: 50%; }
.cta-layout { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-layout > div:first-child { min-width: 0; flex: 1 1 auto; }
.business-cta h2 { max-width: none; margin: 0 0 8px; color: var(--white); font-size: clamp(20px, 2.15vw, 30px); line-height: 1.25; letter-spacing: -.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.business-cta p { max-width: 680px; margin: 0; color: #d9e8ff; }
.cta-actions { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-start; gap: 17px; }
.business-cta .button-primary { color: var(--blue); background: var(--white); border-color: var(--white); }
.business-cta .button-primary:hover { color: var(--navy); }
.light-link { color: var(--white); border-color: #b8d4fb; }
.site-footer { color: #aebed2; background: var(--navy); }
.footer-main { display: grid; grid-template-columns: 1.4fr repeat(3, .8fr) 1.45fr; gap: 42px; padding-top: 72px; padding-bottom: 62px; }
.brand-footer { margin-bottom: 15px; color: var(--white); }
.brand-footer .brand-mark { color: var(--blue); background: var(--white); }
.brand-footer > span:last-child > span { color: var(--blue-light); }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.social-links { display: flex; gap: 8px; margin-top: 23px; }
.social-links a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #355274; border-radius: 5px; }
.social-links a:hover { color: var(--white); border-color: #6d8bad; }
.social-links i { font-size: 15px; line-height: 1; }
.social-links svg { width: 13px; height: 13px; display: block; }
.footer-column h3, .footer-newsletter h3 { margin-bottom: 18px; color: var(--white); font-size: 15px; font-weight: 700; }
.footer-column a { display: block; margin-bottom: 10px; font-size: 14px; }
.footer-column a:hover { color: var(--white); }
.footer-newsletter p { margin-bottom: 14px; font-size: 14px; }
.footer-newsletter form { display: grid; grid-template-columns: 1fr 44px; border-bottom: 1px solid #547091; }
.footer-newsletter input { min-width: 0; padding: 11px 0; border: 0; outline: 0; color: var(--white); background: transparent; font-size: 14px; }
.footer-newsletter input::placeholder { color: #9fb1c7; }
.footer-newsletter button { display: grid; place-items: center; border: 0; color: var(--white); background: transparent; cursor: pointer; }
.footer-newsletter button:hover { color: var(--blue-light); }
.footer-newsletter svg { width: 17px; }
.footer-bottom { min-height: 65px; display: flex; align-items: center; justify-content: flex-start; border-top: 1px solid #294463; font-size: 13px; }
.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--white); }
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 100; max-width: calc(100% - 32px); padding: 11px 16px; color: var(--white); background: var(--navy); border: 1px solid #355274; border-radius: 5px; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translate(-50%, 10px); transition: opacity 160ms ease, transform 160ms ease; font-size: 11px; }
.cookie-consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 140; padding: 16px 0; color: #fff; background: var(--navy); border-top: 1px solid #294463; }
.cookie-consent[hidden],
.cookie-consent.is-hidden { display: none !important; }
.cookie-container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cookie-consent__message { flex: 1 1 auto; min-width: 0; margin: 0; color: #fff; font-size: 14px; line-height: 1.55; }
.cookie-consent__message p,
.cookie-consent__message span,
.cookie-consent__message div { margin: 0; color: #fff; font-size: 14px; line-height: 1.55; }
.cookie-consent__message a { color: #fff; text-decoration: underline; }
.cookie-consent__agree { flex: 0 0 auto; min-height: 43px; padding: 0 18px; border: 1px solid var(--blue); border-radius: 6px; color: #fff; background: var(--blue); font-weight: 800; font-size: 13px; cursor: pointer; white-space: nowrap; transition: background-color 160ms ease, border-color 160ms ease; }
.cookie-consent__agree:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .mobile-nav.is-open { display: block; }
  .search-panel { grid-template-columns: 1.1fr .9fr .8fr; }
  .search-submit { grid-column: 1 / -1; margin: 8px 0 0; min-height: 48px; }
  .category-track .category-card { flex-basis: calc((100% - 14px) / 2); }
  .business-track { grid-template-columns: repeat(4, minmax(270px, 1fr)); }
  .city-grid { grid-template-columns: 1.2fr 1fr; }
  .city-card:nth-child(4), .city-card:nth-child(5) { display: none; }
  .guide-layout { gap: 60px; }
  .footer-main { grid-template-columns: 1.4fr repeat(3, 1fr); }
  .footer-newsletter { grid-column: 1 / -1; max-width: 420px; }
}

@media (max-width: 780px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .utility-bar, .header-login, .header-add { display: none; }
  .nav-wrap { min-height: 66px; }
  .hero { min-height: auto; }
  .hero::before { display: none; }
  .hero-media { inset: 0; clip-path: none; opacity: .18; }
  .hero-overlay { background: rgba(244,248,255,.82); }
  .hero-content { padding-block: 68px 52px; }
  .hero h1 { letter-spacing: -2.4px; }
  .hero-copy > p { font-size: 15px; }
  .search-panel { grid-template-columns: 1fr; padding: 8px; }
  .search-field { padding: 11px 14px; border-right: 0; border-bottom: 1px solid var(--line); }
  .search-field label { margin-left: 27px; }
  .search-submit { width: 100%; min-height: 52px; margin: 8px 0 0; }
  .choices__list--dropdown, .choices__list[aria-expanded] { margin-top: 5px; }
  .quick-searches { gap: 9px 12px; }
  .trust-inner { min-height: auto; flex-wrap: wrap; padding-block: 18px; gap: 10px 0; }
  .trust-inner p { width: 50%; padding: 5px 14px 5px 0; border: 0; }
  .trust-inner p:nth-child(even) { padding-left: 14px; border-left: 1px solid rgba(255,255,255,.13); }
  .trust-inner .trust-promise { width: 100%; margin-top: 6px; padding-left: 0; border-left: 0; }
  .section { padding: 70px 0; }
  .section-heading { align-items: flex-start; }
  .category-card { min-height: 112px; }
  .latest-list { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 210px; }
  .city-large { grid-column: 1 / 3; grid-row: auto; }
  .city-card:nth-child(4), .city-card:nth-child(5) { display: none; }
  .event-grid { grid-template-columns: 1fr; }
  .event-card { display: grid; grid-template-columns: .85fr 1.15fr; }
  .event-image { height: 100%; aspect-ratio: auto; }
  .pricing-heading { display: block; }
  .billing-switch { width: max-content; margin-top: 22px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { max-width: 540px; width: 100%; margin-inline: auto; }
  .guide-layout { grid-template-columns: 1fr; gap: 48px; }
  .journal-grid { grid-template-columns: 1fr; gap: 42px; }
  .journal-feature { grid-template-columns: 1fr 1fr; }
  .review-slide { flex-basis: min(78vw, 480px); grid-template-columns: 120px 1fr; }
  .cta-layout { display: block; }
  .business-cta h2 { white-space: normal; font-size: 24px; }
  .cta-actions { margin-top: 32px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-newsletter { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  .brand { font-size: 21px; }
  .brand-mark { width: 29px; height: 29px; }
  .hero h1 { font-size: 43px; }
  .hero h1::after { width: 8px; height: 8px; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading .text-link, .section-heading .slider-controls, .section-heading-tools, .event-filter { margin-top: 20px; }
  .event-filter { width: 100%; }
  .category-track .category-card { flex-basis: min(78vw, 280px); min-height: 120px; }
  .business-track { margin-right: -16px; grid-template-columns: repeat(4, minmax(82vw, 1fr)); padding-right: 16px; }
  .latest-company { grid-template-columns: 50px 1fr 34px; gap: 12px; }
  .company-logo { width: 50px; height: 50px; }
  .company-detail { display: none; }
  .city-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 230px); }
  .city-large { grid-column: auto; }
  .event-card { display: block; }
  .event-image { aspect-ratio: 1.65; }
  .pricing-card { padding: 23px; }
  .journal-feature { grid-template-columns: 1fr; }
  .journal-feature img { aspect-ratio: 1.45; }
  .journal-list article { min-height: 135px; }
  .review-section { padding-block: 60px; }
  .review-slide { flex-basis: min(86vw, 360px); grid-template-columns: 1fr; min-height: 0; }
  .review-photo { height: 168px; min-height: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 34px 24px; padding-top: 56px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; padding-block: 15px; }
  .cookie-container { flex-direction: column; align-items: stretch; gap: 14px; }
  .cookie-consent__agree { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
