/* Brand palette (matches your logo feel)
   Deep Navy: #0B1624
   Navy Slate: #0F2236
   Teal: #22D3C5
   Teal Deep: #12AFA4
   White: #FFFFFF
   Soft Text: #B9C7D6
*/

:root {
  --bg: #0b1624;
  --bg2: #09111b;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #b9c7d6;
  --muted2: rgba(185, 199, 214, 0.72);
  --teal: #22d3c5;
  --teal2: #12afa4;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 70% 20%, rgba(34, 211, 197, 0.10), transparent 55%),
    radial-gradient(1000px 600px at 15% 65%, rgba(34, 211, 197, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(11, 22, 36, 0.62);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}

.mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(34,211,197,0.25), rgba(18,175,164,0.10));
  border: 1px solid rgba(34,211,197,0.25);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}

.mark-bar {
  position: absolute;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), rgba(34,211,197,0.25));
  left: 9px;
}
.b1 { top: 13px; width: 28px; }
.b2 { top: 20px; width: 22px; opacity: 0.78; }
.b3 { top: 27px; width: 16px; opacity: 0.58; }

.brand-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 15.5px;
  line-height: 1.1;
}
.brand-sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px;
}

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

.nav-link {
  color: rgba(185,199,214,0.92);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 999px;
}
.nav-link:hover {
  color: rgba(34,211,197,0.95);
  background: rgba(34,211,197,0.08);
}

.chip {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
}
.chip:hover {
  border-color: rgba(34,211,197,0.35);
  background: rgba(34,211,197,0.10);
}

.hero {
  padding: 56px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 22px;
  align-items: start;
}

h1 {
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.accent {
  background: linear-gradient(90deg, var(--teal), rgba(34,211,197,0.55));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0 18px;
}

.stat {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 12px 12px;
}
.stat-num {
  font-weight: 950;
  letter-spacing: -0.02em;
}
.stat-text {
  margin-top: 4px;
  font-size: 12.5px;
  color: rgba(185,199,214,0.78);
  font-weight: 700;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.note {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted2);
  font-size: 13px;
}
.note-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(34,211,197,0.9);
  box-shadow: 0 0 0 6px rgba(34,211,197,0.12);
}

.glass {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
}
.glass-title {
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 15px;
}
.glass-sub {
  margin-top: 6px;
  color: rgba(185,199,214,0.85);
  font-weight: 700;
  font-size: 13px;
}

.list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  margin-right: 10px;
  background: rgba(34,211,197,0.12);
  border: 1px solid rgba(34,211,197,0.18);
  color: rgba(34,211,197,0.95);
  font-weight: 900;
}

.section {
  padding: 28px 0 18px;
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.section-head p {
  margin: 0;
  color: rgba(185,199,214,0.80);
  line-height: 1.6;
  max-width: 820px;
}

.product-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: start;
}

.product-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.product-badge {
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(34,211,197,0.25);
  background: rgba(34,211,197,0.10);
}
.product-version {
  color: rgba(185,199,214,0.7);
  font-weight: 900;
  font-size: 12px;
}

.product-card h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.product-lead {
  margin: 10px 0 14px;
  color: rgba(185,199,214,0.86);
  line-height: 1.65;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 14px;
}
.pill {
  font-size: 12.5px;
  color: rgba(255,255,255,0.92);
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.045);
}

.product-bottom {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.price-amt {
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.03em;
}
.price-sub {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.btn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 14px 14px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border 0.12s ease;
}

.btn-sub {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.72);
}

.btn.primary {
  color: #07131f;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  box-shadow: 0 18px 40px rgba(34, 211, 197, 0.16);
}
.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 46px rgba(34, 211, 197, 0.22);
}

.btn.secondary {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn.secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(34,211,197,0.35);
  background: rgba(34,211,197,0.10);
}

.btn.buy {
  grid-column: 1 / -1;
  color: #07131f;
  background: linear-gradient(135deg, rgba(34,211,197,0.95), rgba(34,211,197,0.60));
  box-shadow: 0 18px 40px rgba(34, 211, 197, 0.16);
}
.btn.buy:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 46px rgba(34, 211, 197, 0.22);
}

.btn.ghost {
  grid-column: 1 / -1;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.btn.ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(34,211,197,0.35);
  background: rgba(34,211,197,0.10);
}

.fine {
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(185,199,214,0.72);
}

.future-card {
  border-radius: var(--radius);
  border: 1px dashed rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.03);
  padding: 18px;
}
.future-title {
  font-weight: 950;
  letter-spacing: -0.02em;
}
.future-sub {
  margin-top: 8px;
  color: rgba(185,199,214,0.75);
  line-height: 1.65;
}
.future-line {
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 14px 0 10px;
}
.future-small {
  color: rgba(185,199,214,0.68);
  font-weight: 800;
  font-size: 12.5px;
}

.support {
  margin-top: 6px;
}
.support-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  padding: 18px;
}
.support-card h2 {
  margin: 0 0 8px;
}
.support-card p {
  margin: 0 0 14px;
  color: rgba(185,199,214,0.82);
  line-height: 1.65;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.support-item {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 12px;
}
.support-label {
  font-weight: 950;
  font-size: 12.5px;
}
.support-value {
  margin-top: 6px;
  color: rgba(185,199,214,0.74);
  font-weight: 800;
  font-size: 12.5px;
}

.footer {
  padding: 30px 0 42px;
}
.footer-inner {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(185,199,214,0.85);
}
.footer-title {
  font-weight: 950;
  letter-spacing: -0.02em;
}
.footer-sub {
  font-size: 12.5px;
  color: rgba(185,199,214,0.70);
  margin-top: 2px;
}
.footer-right {
  display: flex;
  gap: 14px;
}
.footer-link {
  color: rgba(185,199,214,0.85);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}
.footer-link:hover {
  color: rgba(34,211,197,0.95);
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  h1 { font-size: 36px; }
  .hero-stats { grid-template-columns: 1fr; }
  .btn-grid { grid-template-columns: 1fr; }
  .container { width: min(1120px, calc(100% - 28px)); }
}
/* --- Hero: single-column layout (no right card) --- */
.hero-grid {
  grid-template-columns: 1fr;
}

.hero-right {
  display: none;
}
/* --- Products: full-width single card --- */
.product-grid {
  grid-template-columns: 1fr;
}

.product-card {
  max-width: 100%;
}
.hero-left {
  padding-bottom: 12px;
}


/* ─── Editions layout ──────────────────────────────────────────────────── */

.editions-header {
  margin-bottom: 20px;
}
.editions-title {
  margin: 0 0 6px;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.editions-sub {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.editions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.edition-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
}

.edition-card--pro {
  border-color: rgba(34, 211, 197, 0.30);
  background: linear-gradient(180deg, rgba(34,211,197,0.07), rgba(34,211,197,0.02));
  box-shadow: 0 20px 60px rgba(34, 211, 197, 0.10);
}

.edition-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.edition-badge {
  font-size: 12px;
  font-weight: 900;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.standard-badge {
  border: 1px solid rgba(185, 199, 214, 0.30);
  background: rgba(185, 199, 214, 0.10);
  color: var(--muted);
}

.pro-badge {
  border: 1px solid rgba(34, 211, 197, 0.35);
  background: rgba(34, 211, 197, 0.12);
  color: var(--teal);
}

.feature-list {
  list-style: none;
  margin: 12px 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.feature-list li {
  display: flex;
  align-items: center;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.3;
}

.feature-list .check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  margin-right: 10px;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 211, 197, 0.12);
  border: 1px solid rgba(34, 211, 197, 0.20);
  color: var(--teal);
  font-weight: 900;
}

.feature-list .muted-check {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  color: rgba(185, 199, 214, 0.40);
}

.muted-feat {
  color: rgba(185, 199, 214, 0.42);
}

.editions-note {
  margin: 16px 0 0;
  text-align: center;
  font-size: 13px;
  color: rgba(185, 199, 214, 0.60);
}

@media (max-width: 700px) {
  .editions-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Coming Soon: Shift Planner ──────────────────────────────────────────── */

.coming-soon-card {
  border-radius: var(--radius);
  border: 1px dashed rgba(34, 211, 197, 0.30);
  background: linear-gradient(160deg, rgba(34,211,197,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 20px 60px rgba(34, 211, 197, 0.06);
  padding: 28px 28px 24px;
}

.coming-soon-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.coming-soon-badge {
  font-size: 12px;
  font-weight: 900;
  padding: 5px 13px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(34, 211, 197, 0.40);
  background: rgba(34, 211, 197, 0.10);
  color: var(--teal);
}

.coming-soon-title {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.02em;
}

.coming-soon-lead {
  margin: 0 0 22px;
  color: rgba(185, 199, 214, 0.86);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 780px;
}

.coming-soon-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.csf-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.csf-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.csf-title {
  font-weight: 900;
  font-size: 13.5px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.csf-sub {
  font-size: 12.5px;
  color: rgba(185, 199, 214, 0.72);
  line-height: 1.55;
}

.coming-soon-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .coming-soon-features {
    grid-template-columns: 1fr;
  }
  .coming-soon-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ─── Resources dropdown ─────────────────────────────────────────────── */
.resources-menu {
  position: relative;
}

.resources-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(185,199,214,0.92);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}

.resources-trigger:hover,
.resources-menu:focus-within .resources-trigger {
  color: rgba(34,211,197,0.95);
  background: rgba(34,211,197,0.08);
}

.resources-caret {
  font-size: 11px;
  opacity: 0.85;
  transition: transform 0.18s ease;
}

.resources-menu:hover .resources-caret,
.resources-menu:focus-within .resources-caret {
  transform: rotate(180deg);
}

.resources-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 260px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(11, 22, 36, 0.97);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 30;
}

.resources-menu:hover .resources-dropdown,
.resources-menu:focus-within .resources-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.resources-item {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.35;
  padding: 11px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid transparent;
}

.resources-item:hover {
  color: var(--teal);
  border-color: rgba(34,211,197,0.20);
  background: rgba(34,211,197,0.08);
}

@media (max-width: 860px) {
  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .nav {
    padding: 14px 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .brand {
    min-width: 0;
    gap: 12px;
  }

  .brand-title {
    font-size: 15px;
  }

  .brand-sub {
    font-size: 11.5px;
    line-height: 1.35;
    max-width: 220px;
  }

  .resources-dropdown {
    right: 0;
    left: auto;
    min-width: 220px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1120px, calc(100% - 20px));
  }

  .brand-sub {
    max-width: 180px;
  }

  .mobile-link {
    padding: 22px 22px;
    font-size: 15px;
  }
}


/* Shared mobile hamburger navigation */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .hamburger {
    display: inline-flex;
  }
}

.hamburger span {
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(11,22,36,0.98) 0%, rgba(9,17,27,0.98) 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  backdrop-filter: blur(14px);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a,
.mobile-link {
  display: block;
  width: 100%;
  padding: 22px 28px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mobile-menu a:last-child,
.mobile-link:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a:active,
.mobile-link:hover,
.mobile-link:active {
  background: rgba(255,255,255,0.04);
  color: var(--teal);
}
/* Small SEO internal links strip - compact, not a major page section */
.local-seo-links{
  padding:18px 0 26px;
}

.local-seo-links .section-title{
  font-size:22px;
  line-height:1.15;
  margin:0 0 6px;
}

.local-seo-links .section-sub{
  max-width:720px;
  font-size:13.5px;
  line-height:1.55;
  margin:0;
  color:var(--muted);
}

.local-seo-links .kicker{
  font-size:11px;
  margin-bottom:8px;
}

.local-link-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:14px;
}

.local-link-card{
  display:block;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.035);
  border-radius:16px;
  padding:14px 14px 13px;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}

.local-link-card:hover{
  transform:translateY(-2px);
  border-color:rgba(34,211,197,.28);
  background:rgba(34,211,197,.055);
}

.local-link-no{
  font-size:11px;
  font-weight:950;
  letter-spacing:.08em;
  color:var(--teal);
  margin-bottom:6px;
}

.local-link-card h3{
  margin:0 0 6px;
  font-size:15px;
  line-height:1.25;
  color:#fff;
}

.local-link-card p{
  margin:0;
  color:var(--muted);
  font-size:12.5px;
  line-height:1.45;
}

.local-link-cta{
  display:inline-flex;
  margin-top:9px;
  color:var(--teal);
  font-size:11px;
  font-weight:900;
}

@media(max-width:860px){
  .local-link-grid{grid-template-columns:1fr;}
}
/* Add to your styles.css */
.hero {
  position: relative;
  overflow: hidden;
}

/* Animated gradient border on the hero itself */
.hero::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(34, 211, 197, 0.15),
    rgba(34, 211, 197, 0.4),
    rgba(34, 211, 197, 0.15),
    transparent
  );
  border-radius: 32px;
  z-index: -1;
  animation: borderSweep 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes borderSweep {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  50% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: rgba(34, 211, 197, 0.30);
  background: rgba(34,211,197,0.04);
}

.faq-q {
  font-weight: 800;
  font-size: 14.5px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: rgba(34,211,197,0.8);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  margin: 0;
  padding: 0 18px 16px;
  color: rgba(185,199,214,0.85);
  font-size: 14px;
  line-height: 1.65;
}