/* Cards */
.booking-card {
  width: 100%;
  max-width: 920px;
  background: var(--card);
  border-radius: 28px;
  padding: 32px 34px 36px;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border);
}

/* Titles */
.section-title {
  margin-top: 28px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

/* Inputs */
html body input[type="text"],
html body input[type="email"],
html body input[type="password"],
html body input[type="number"],
html body input[type="tel"],
html body input[type="url"],
html body input[type="time"],
html body select,
html body textarea {
  width: 100%;
  padding: 11px 14px;
  min-height: 44px;
  border-radius: 14px;
  border: 1px solid var(--fieldBorder) !important;
  background: var(--fieldBg) !important;
  box-shadow: var(--fieldShadow) !important;
  color: var(--text);
  font-size: 15px;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

html body select.ui-time-scroll {
  font-variant-numeric: tabular-nums;
}

.ui-input {
  border: 1px solid var(--fieldBorder) !important;
  background: var(--fieldBg) !important;
  box-shadow: var(--fieldShadow) !important;
}

html body input[type="text"]:focus,
html body input[type="email"]:focus,
html body input[type="password"]:focus,
html body input[type="number"]:focus,
html body input[type="tel"]:focus,
html body input[type="url"]:focus,
html body input[type="time"]:focus,
html body select:focus,
html body textarea:focus {
  outline: none;
  border-color: var(--accent) !important;
  box-shadow: var(--fieldShadow), 0 0 0 3px var(--accentSoft) !important;
}

html body input:-webkit-autofill,
html body input:-webkit-autofill:hover,
html body input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text) !important;
  -webkit-box-shadow: 0 0 0 1000px var(--fieldBg) inset !important;
}

/* Buttons */
.btn-primary {
  text-decoration: none;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  min-height: 44px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn-primary,
.btn,
.btn-secondary,
.btn-ghost {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.1;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--primaryHover);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.16);
}

.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--primarySoft);
}

.btn-primary[disabled],
.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn:not(.btn-primary),
.btn-secondary {
  text-decoration: none;
  background: transparent;
  color: var(--text);
  padding: 10px 18px;
  min-height: 44px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:not(.btn-primary)[disabled],
.btn:not(.btn-primary):disabled,
.btn-secondary[disabled],
.btn-secondary:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn:not(.btn-primary):hover,
.btn-secondary:hover {
  background: var(--bg2);
  border-color: color-mix(in srgb, var(--border) 70%, var(--text));
  transform: translateY(-1px);
}

.btn:not(.btn-primary):active,
.btn-secondary:active {
  transform: translateY(0);
}

.btn:not(.btn-primary):focus-visible,
.btn-secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--accentSoft);
}

.btn-ghost {
  border-color: transparent;
  background: transparent;
}

.btn-ghost:hover {
  background: var(--bg2);
  border-color: var(--border);
}

.btn-sm {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
}

/* ==============================
   Trainer Portal – layout (v2)
   ============================== */

/* Make the portal card wide like the rest of the site (matches 1120px container) */
.card.portal{
  max-width: 1120px;
  padding: 28px;
}

/* Neutral wrapper (the card controls the width) */
.portal{
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.portal-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  flex-wrap:wrap;
}

.portal-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
  align-items:center;
}

.portal-share{
  display:flex;
  gap:10px;
  align-items:center;
  margin-top:18px;
  flex-wrap:wrap;
}

.portal-share input{
  flex:1;
  min-width:260px;
}

.portal-divider{
  height:1px;
  background:var(--border);
  margin:18px 0;
}

/* Tabs (Trainer Portal) */
.portal-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin:10px 0 18px;
}

.portal-tab{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border:1px solid var(--border);
  border-radius:999px;
  background:transparent;
  text-decoration:none;
  font-weight:700;
  color: var(--text);
}

.portal-tab:hover{
  background: var(--bg2);
}

.portal-tab.active{
  background: rgba(0,0,0,.04);
}

/* iOS-like toggle */
.ios-toggle{
  display:inline-flex;
  align-items:center;
  cursor:pointer;
  user-select:none;
  position:relative;
}

.ios-toggle input{
  position:absolute;
  opacity:0;
  width:1px;
  height:1px;
  pointer-events:none;
}

.ios-toggle-ui{
  width:51px;
  height:31px;
  border-radius:999px;
  background:#e5e5ea;
  border:1px solid rgba(0,0,0,.08);
  position:relative;
  transition:background .18s ease, box-shadow .18s ease;
}

.ios-toggle-ui::after{
  content:"";
  position:absolute;
  top:2px; left:2px;
  width:27px; height:27px;
  border-radius:999px;
  background:#fff;
  box-shadow:0 3px 8px rgba(0,0,0,.22);
  transition:transform .18s ease;
}

.ios-toggle input:checked + .ios-toggle-ui{ background:#34c759; }
.ios-toggle input:checked + .ios-toggle-ui::after{ transform:translateX(20px); }

.ios-toggle input:focus-visible + .ios-toggle-ui{
  box-shadow:0 0 0 4px rgba(52,199,89,.25);
}

/* Responsive tweaks for portal */
@media (max-width: 640px){
  .card.portal{ padding: 18px; }
  .portal-actions{ justify-content:flex-start; }
  .portal-share input{ min-width:0; width:100%; }
  .portal-tab{ width:100%; justify-content:space-between; }
}

/* ==============================
   Accordion sections
   ============================== */

.acc {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  background: var(--bg);
}

.acc + .acc {
  margin-top: 14px;
}

.acc > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 16px;
}

.acc summary::-webkit-details-marker {
  display: none;
}

.acc-body {
  margin-top: 14px;
  display: grid;
  gap: 14px;
}

/* ==============================
   Availability rows (future)
   ============================== */

.availability-row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: 14px;
  align-items: center;
}

.availability-row label {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.availability-row input[type="time"] {
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}

/* ==============================
   Portal utilities
   ============================== */

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--muted);
}

.pill.success {
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.4);
  color: rgb(22,163,74);
}

.pill.warn {
  background: rgba(245,158,11,0.12);
  border-color: rgba(245,158,11,0.4);
  color: rgb(202,138,4);
}

.portal-share {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.portal-share input {
  flex: 1;
}

/* ==============================
   Auth / navigation helpers
   ============================== */

.link{
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.link:hover{
  text-decoration: underline;
}

.link-back{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  color: var(--muted);
  text-decoration:none;
  margin-bottom: 14px;
}

.link-back:hover{
  color: var(--text);
}

.auth-footer{
  margin-top: 22px;
  font-size: 14px;
  text-align: center;
  color: var(--muted);
}

.auth-footer a{
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.auth-footer a:hover{
  text-decoration: underline;
}

.auth-footer .dot{
  margin: 0 8px;
  color: var(--muted);
}

/* Form layout helpers */
.form-stack {
  display: grid;
  gap: 14px;
}

.form-actions {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

/* Slightly tighter back-link spacing when used inside cards */
.card .link-back {
  margin-bottom: 10px;
}

/* =========================
   Shared UI primitives
   ========================= */

/* Layout helpers used by home_io.html (and other simple pages) */
.container{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

.row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.grid-3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.grid-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 980px){
  .grid-3{ grid-template-columns: 1fr; }
  .grid-cards{ grid-template-columns: 1fr; }
}

/* Centered page wrapper used by auth + simple landing pages */
.page-center{
  min-height: calc(100svh - 120px);
  padding: 28px 18px;
  display: grid;
  place-items: center;
}

/* Generic card (used across templates). Keep booking-card as its own bigger variant. */
.card{
  width: 100%;
  max-width: 640px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.08);
}

/* Slightly bigger card for landing */
.card.lg,
.home-io-card{
  max-width: 1120px;
  padding: 26px;
}

.hint{
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* =========================
   HOME IO + Landing (modern)
   ========================= */

.landing{
  width: 100%;
}

.landing-shell{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 18px 44px;
}

/* Top navigation */
.landing-nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
}

.landing-brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.landing-logo{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(
    135deg,
    var(--accentSoft),
    color-mix(in srgb, var(--accent) 18%, transparent)
  );
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.landing-navlinks{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.landing-navlinks a{
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.landing-navactions{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.landing-navactions a{
  text-decoration: none;
}

/* Hero */
.landing-hero{
  margin-top: 18px;
  padding: 34px 22px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(
      1200px 520px at 20% 0%,
      color-mix(in srgb, var(--accent) 16%, transparent),
      transparent 55%
    ),
    radial-gradient(
      900px 460px at 85% 10%,
      color-mix(in srgb, var(--accent) 10%, transparent),
      transparent 60%
    ),
    var(--card);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.08);
}

.landing-heroInner{
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 14px;
}

.landing-kicker{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg2) 72%, transparent);
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-title{
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.landing-subtitle{
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.landing-ctas{
  margin-top: 10px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.landing-ctas .btn,
.landing-ctas .btn-primary{
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 16px;
  text-decoration: none;
}

.landing-meta{
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

/* Feature grid */
.landing-grid{
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.landing-tile{
  padding: 18px 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 8px;
}

.landing-tileTitle{
  margin: 0;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.landing-tileHint{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* HOME IO hooks (home_io.html often uses these) */
.home-io-card{
  width: 100%;
  margin: 0 auto;
}

.home-io-hero{
  display: grid;
  gap: 12px;
  text-align: center;
}

.home-io-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.home-io-actions .btn,
.home-io-actions .btn-primary{
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
}

.home-io-links{
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.home-io-features{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-io-feature{
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 8px;
}

.home-io-feature .title{
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.home-io-feature .hint{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Card helpers used by trainer_list + home tiles */
.step-card,
.trainer-card{
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 18px;
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.06);
}

.trainer-photo{
  height: 160px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg2);
  margin-bottom: 12px;
}

/* Hide skip link unless focused */
.skip-link{
  position: fixed;
  left: -9999px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.skip-link:focus{
  left: 12px;
}

/* Responsive */
@media (max-width: 980px){
  .landing-grid{ grid-template-columns: 1fr; }
  .home-io-features{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .home-io-actions{ grid-template-columns: 1fr; }
  .landing-ctas{ flex-direction: column; align-items: stretch; }
  .landing-ctas .btn,
  .landing-ctas .btn-primary{ width: 100%; }
}

/* =========================
   Global Header (SaaS)
   ========================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(10px);
}

.site-header .nav-inner{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-brand .brand-mark{
  width: 48px;
  height: 48px;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.site-brand .brand-mark img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.site-brand .brand-name{
  line-height: 1;
}

.site-header .site-brand .brand-mark,
.footer-simple .site-brand .brand-mark{
  width: 46px;
  height: 46px;
}

.site-header .site-brand .brand-name,
.footer-simple .site-brand .brand-name{
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.site-nav{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a{
  color: var(--muted);
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  border: 1px solid transparent;
}

.site-nav a:hover{
  color: var(--text);
  background: var(--bg2);
  border-color: var(--border);
}

.header-actions{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.header-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
}

.header-cta .btn,
.header-cta .btn-primary{
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
}

.menu-toggle{
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.menu-toggle:hover{
  background: var(--bg2);
}

/* Mobile drawer */
.mobile-nav{
  display: none;
  padding: 0 18px 14px;
}

.mobile-nav .mobile-panel{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 10px;
}

.mobile-nav a{
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg);
}

.mobile-nav a:hover{
  background: var(--bg2);
}

.mobile-nav.active{
  display: block;
}

@media (max-width: 820px){
  .site-nav{ display: none; }
  .header-actions{ display: none; }
  .menu-toggle{ display: inline-flex; }
}

/* =========================
   Global Footer (SaaS)
   ========================= */

.site-footer{
  margin-top: 28px;
  padding: 22px 0 34px;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
}

.site-footer .footer-inner{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.footer-brand{
  display: grid;
  gap: 8px;
}

.footer-brand .brand-row{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-brand .brand-mark{
  width: 30px;
  height: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(
    135deg,
    var(--accentSoft),
    color-mix(in srgb, var(--accent) 18%, transparent)
  );
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.footer-brand .brand-sub{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  max-width: 56ch;
}

.footer-links{
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-links .link-row{
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a{
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.footer-links a:hover{
  color: var(--text);
  background: var(--bg2);
  border-color: var(--border);
}

.footer-legal{
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

@media (max-width: 980px){
  .site-footer .footer-inner{
    grid-template-columns: 1fr;
  }
  .footer-links{
    justify-items: start;
  }
  .footer-links .link-row{
    justify-content: flex-start;
  }
  .footer-legal{
    text-align: left;
  }
}

/* Compatibility: if a template uses .nav-inner inside .landing-nav */
.landing-nav .nav-inner{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
