/* Transferred from app.min.css on 2025-11-19 */
:root {
  --color-primary: #1D4ED8;
  --color-secondary: #334155;
  --color-accent: #7C3AED;
  --color-neutral-0: #FFFFFF;
  --color-neutral-50: #F8FAFC;
  --color-neutral-900: #0F172A;
  --color-success: #16A34A;
  --color-danger: #DC2626;
  --accent-start: #7C3AED;
  --accent-end: #22D3EE;
  --bs-primary: var(--color-primary);
  --bs-secondary: var(--color-secondary);
  --bs-success: var(--color-success);
  --bs-danger: var(--color-danger);
  --bs-link-color: var(--color-primary);
  --bs-link-hover-color: #1E3A8A;
  /* transferred: font and layout tokens */
  --font-display: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --font-body: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --radius-standard: 8px;
  --radius-header: 12px;
  --content-max-width: 1200px;
  --content-padding-x: 16px;
  --space-8: 8px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-48: 48px;
  --space-64: 64px;
  --space-y: 24px;
  --space-y-sm: 16px;
}

[data-bs-theme="light"] {
  --bs-body-bg: var(--color-neutral-0) !important;
  --bs-body-color: var(--color-neutral-900) !important;
  --bs-border-color: #E5E7EB !important;
  --surface-bg: rgba(255, 255, 255, .85);
  --glass-bg: rgba(255, 255, 255, .65);
  --glass-border-color: #E5E7EB !important;
  --nav-hover-bg: #F1F5F9 !important;
}

/* End of transferred rules */
/* End of transferred rules */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Transferred from custom.css on 2025-11-19 */
html,
body {
  height: 100%
}

body {
  font-family: var(--font-body);
  background-image: #ededed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/* Buttons */
.btn-cta {
  padding: 16px 20px
}

.btn-primary {
  background-image: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  border: none
}

.btn-primary:hover {
  filter: brightness(1.05)
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, .35)
}

.btn-glow {
  box-shadow: 0 8px 18px rgba(0, 0, 0, .15)
}

.btn-glow:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2)
}



/* Glass hover states */
.glass {
  transition: box-shadow .25s ease, transform .25s ease
}

[data-bs-theme="light"] .glass:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16)
}

[data-bs-theme="dark"] .glass:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .6)
}

/* Typography */
h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2
}

h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.25
}

h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.3
}

h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.35
}

p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 65ch
}

/* Form and cards */
.form-control {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: var(--radius-standard)
}

.card {
  border-radius: var(--radius-standard)
}

.navbar {
  border-radius: var(--radius-standard)
}

header .navbar {
  border-radius: var(--radius-header)
}

/* Hero layout */

/* Social */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: transparent;
  transition: transform .2s ease
}

.social-link:hover {
  transform: translateY(-2px)
}

/* Page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center
}

.page-hero .hero-media {
  position: absolute;
  right: -6%;
  bottom: -12%;
  width: clamp(280px, 40vw, 560px);
  height: clamp(280px, 40vw, 560px);
  background-image: radial-gradient(600px 300px at 20% 20%, rgba(124, 58, 237, .35), transparent 60%), radial-gradient(600px 300px at 80% 80%, rgba(34, 211, 238, .35), transparent 60%), url('/assets/img/background/darkBG.png');
  background-size: cover;
  background-position: center;
  opacity: .35;
  filter: blur(16px);
  border-radius: 50%
}

.page-hero .display-6 {
  font-family: var(--font-display);
  letter-spacing: .2px
}

.page-hero .btn {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Post hero */
.post-hero {
  padding: 2rem
}

.post-hero header .badge {
  font-size: .8rem
}

.post-hero .ratio {
  border-radius: var(--radius-standard);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12)
}

.post-hero .ratio img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.post-hero .content {
  line-height: 1.6;
  font-size: 1rem;
  max-width: 65ch
}

/* Transitions */

.hero-image-frame img {
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .18)
}

.hero-content-block {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease
}

.swiper-slide,
.swiper-slide-active {
  display: flex;
  align-items: center;
  justify-content: center
}

.swiper-slide-active .hero-content-block {
  opacity: 1;
  transform: translateY(0)
}

.hero-carousel .swiper-wrapper {
  background: transparent
}

/* Media queries */
@media (max-width: 768px) {
  section {
    margin-block: var(--space-y-sm)
  }

  .page-hero .hero-media {
    display: none
  }

  .hero-slide {
    grid-template-columns: 1fr
  }

  .hero-product {
    height: 36vh
  }
}

@media (max-width: 991.98px) {
  .hero-image-frame {
    display: none
  }
}

/* End of transferred rules */

/* transferred: media queries for page-hero */
@media (max-width: 576px) {
  .page-hero {
    min-height: 60vh
  }
}

@media (min-width: 577px) {
  .page-hero {
    min-height: 80vh
  }
}


/* transferred: image helpers */
.card-img-top {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: var(--radius-standard);
  border-top-right-radius: var(--radius-standard)
}

.featured-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-standard)
}

img[loading="lazy"] {
  content-visibility: auto;
  contain-intrinsic-size: 600px 400px
}

/* transferred: layout wrappers */
.container {
  max-width: var(--content-max-width) !important;
  padding-left: var(--content-padding-x);
  padding-right: var(--content-padding-x)
}

section {
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--content-padding-x);
  padding-right: var(--content-padding-x);
  margin-block: var(--space-y)
}

section.hero-swiper {
  max-width: none;
  padding-left: 0;
  padding-right: 0
}

/* transferred: brand text and nav links */
.brand-text {
  background-image: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-display)
}

.navbar .nav-link {
  position: relative;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 999px;
  transition: color .18s ease, background-color .18s ease;
  padding-left: .65rem;
  padding-right: .65rem
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background-image: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after {
  transform: scaleX(1)
}

.nav .nav-link:hover,
.nav .nav-link:focus {
  background-color: var(--nav-hover-bg)
}

.hero-swiper {
  min-height: 100vh;
}

.btn-outline-secondary {
  background: #7ab642;
  color: var(--color-neutral-0);
  outline: none;
  border: none;
}

.hero-carousel {
  height: calc(100vh - 8rem);
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .6);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border-radius: 1rem;
  margin-bottom: 42px;
}

.hero-carousel {
  color: var(--bs-body-color);
}

.glass {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .6);
  -webkit-backdrop-filter: blur(60px);
  backdrop-filter: blur(30px);
  border-radius: 1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .6)
}

.glass-black {
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .6);
  -webkit-backdrop-filter: blur(60px);
  backdrop-filter: blur(30px);
  border-radius: 1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .6)
}

.hero-slide-full {
  position: relative;
  width: 100%;
  height: 100%
}


.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 20% 20%, rgba(124, 58, 237, .25), transparent 60%), radial-gradient(600px 300px at 80% 80%, rgba(34, 211, 238, .25), transparent 60%)
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 1rem
}

.hero-content h1 {
  font-weight: 700
}

.hero-content p {
  max-width: 42rem
}

.breath-card {
  display: grid;
  place-items: center;
  border-radius: var(--radius-standard);
  padding: 1.5rem;
  background-color: var(--surface-bg);
  border: 1px solid var(--bs-border-color)
}

.breath-ring {
  width: min(320px, 60vw);
  height: min(320px, 60vw);
  border-radius: 999px;
  background-image: conic-gradient(var(--color, var(--accent-start)) var(--p, 0deg), rgba(0, 0, 0, .06) 0);
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12)
}

.breath-ring::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-color);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px)
}

.breath-phase {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center
}

.breath-phase .label {
  font-weight: 700
}

.breath-phase .count {
  font-size: 2rem
}

.quotes-swiper {
  padding: 12px;
  position: relative
}

.quotes-swiper .swiper-slide {
  width: auto;
  transition: transform .3s ease
}

.quotes-swiper .quote-card {
  background-color: var(--surface-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: var(--radius-standard);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
  padding: 1rem;
  height: 100%;
  transition: box-shadow .3s ease, transform .3s ease;
  position: relative;
  will-change: transform
}

.quotes-swiper .quote-card {
  min-height: 140px
}

.quotes-swiper.is-loading .swiper-wrapper {
  opacity: .35
}

.quotes-swiper.is-interacting .swiper-slide-active .quote-card {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .2)
}

.quotes-fraction {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  padding: .25rem .5rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border-color);
  background-color: var(--surface-bg);
  font-size: .875rem
}

.quotes-swiper .quote-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(500px 250px at 15% 20%, rgba(124, 58, 237, .12), transparent 60%), radial-gradient(500px 250px at 85% 80%, rgba(34, 211, 238, .12), transparent 60%)
}

.quotes-swiper .swiper-slide-active .quote-card {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .18)
}

.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12)
}

.quote-stars i {
  color: #F59E0B
}

.quotes-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--glass-border-color);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-image: linear-gradient(var(--surface-bg), var(--surface-bg)), linear-gradient(90deg, var(--accent-start), var(--accent-end));
  background-origin: border-box;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.quotes-prev {
  left: -6px
}

.quotes-next {
  right: -6px
}

.quotes-nav i {
  color: var(--bs-body-color)
}

.hero-nav {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--glass-border-color);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  background-origin: border-box;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .25);
  z-index: 4
}

.hero-prev {
  left: 6px
}

.hero-next {
  right: 6px;
}

.hero-nav i {
  color: #fff
}

.faq-accordion .accordion-item {
  border-radius: var(--radius-standard);
  overflow: hidden;
  border: 1px solid var(--bs-border-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
  margin-bottom: .75rem
}

.faq-accordion .accordion-button {
  font-weight: 600;
  background: linear-gradient(135deg, rgba(124, 58, 237, .08), rgba(34, 211, 238, .08))
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--bs-body-color);
  background: linear-gradient(135deg, rgba(124, 58, 237, .12), rgba(34, 211, 238, .12))
}

.highlights-row .highlight-card {
  background-color: var(--surface-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: var(--radius-standard);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
  padding: 1rem
}

.highlight-icon {
  font-size: 1.4rem;
  color: var(--accent-start)
}

.highlight-number {
  font-size: 2rem;
  font-weight: 700
}

.video-card {
  position: relative;
  border-radius: var(--radius-standard);
  overflow: hidden;
  border: 1px solid var(--bs-border-color);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12)
}

.video-card .play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(600px 300px at 20% 20%, rgba(124, 58, 237, .18), transparent 60%), radial-gradient(600px 300px at 80% 80%, rgba(34, 211, 238, .18), transparent 60%);
  pointer-events: none
}

.video-card .play-overlay i {
  font-size: 2.4rem;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, .3)
}

.newsletter {
  background-image: linear-gradient(135deg, rgba(124, 58, 237, .08), rgba(34, 211, 238, .08));
  border: 1px solid var(--bs-border-color);
  border-radius: var(--radius-standard)
}

.newsletter .input-group .form-control {
  border-radius: 999px 0 0 999px
}

.newsletter .input-group .btn {
  border-radius: 0 999px 999px 0
}

.hero-product {
  transition: opacity .3s ease
}

@media (max-width: 767.98px),
(max-aspect-ratio: 9/16) {
  .hero-swiper .hero-product {
    opacity: 0;
    visibility: hidden
  }
}

.compact-hero .hero-product {
  opacity: 0;
  visibility: hidden
}

.blogs-grid .blog-card {
  position: relative;
  border-radius: var(--radius-standard);
  overflow: hidden;
  border: 1px solid var(--bs-border-color);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
  transition: transform .25s ease, box-shadow .25s ease;
  background-color: var(--surface-bg)
}

.blogs-grid .blog-card-img {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat
}

.blogs-grid .blog-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 20% 20%, rgba(124, 58, 237, .22), transparent 60%), radial-gradient(600px 300px at 80% 80%, rgba(34, 211, 238, .22), transparent 60%)
}

.blogs-grid .blog-card-body {
  padding: 1rem
}

.blogs-grid .blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .18)
}

.hero-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  border-radius: 50px;
  background-color: var(--color-neutral-900);
  opacity: .5;
  transition: all .3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
  width: 48px;
  background-color: var(--accent-start);
  opacity: 1;
}

html {
  font-size: clamp(15px, 1vw + 14px, 18px);
}

body {
  color: var(--text-color);
  line-height: 1.8;
}

h1 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

h2 {
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -.01em;
}

h3 {
  font-size: 24px;
  line-height: 1.3;
}

p,
.lead {
  font-size: 18px;
  color: var(--text-color);
}

a {
  color: #334155;
}

.text-muted {
  color: var(--muted-text-color) !important;
}

.btn {
  border-radius: 999px;
  padding: 9px 18px;
}

.btn-primary {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.btn-primary:hover {
  filter: brightness(1.06) saturate(1.02);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
}

.btn-outline-primary {
  color: var(--accent-start);
  border-color: var(--accent-start);
}

.btn-outline-primary:hover {
  background-color: #735DA5;
  border: none;
  outline: none;
}

picture .img {
  position: relative;
  width: 75px;
}

.pose-finder {
  position: relative;
}

.finder-search.input-group {
  border: 1px solid var(--bs-border-color);
  border-radius: 999px;
  background-color: var(--surface-bg);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.finder-search .form-control {
  border: none;
  background: transparent;
}

.finder-search .input-group-text {
  border: none;
  background: transparent;
}

.finder-suggest {
  margin-top: .5rem;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--radius-standard);
  background-color: var(--surface-bg);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  overflow: hidden;
}

.finder-suggest .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem .8rem;
  text-decoration: none;
  color: inherit;
}

.finder-suggest .item:hover {
  background-color: var(--nav-hover-bg);
}

.finder-feature {
  position: relative;
  min-height: 180px;
  border-radius: var(--radius-standard);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--bs-border-color);
  overflow: hidden;
}

.finder-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 250px at 20% 20%, rgba(124, 58, 237, .2), transparent 60%), radial-gradient(500px 250px at 80% 80%, rgba(34, 211, 238, .2), transparent 60%);
}

.finder-feature-body {
  position: absolute;
  left: .8rem;
  right: .8rem;
  bottom: .8rem;
  padding: .5rem .6rem;
  border-radius: var(--radius-standard);
  background-color: var(--glass-bg);
  border: 1px solid var(--glass-border-color);
}

.chip {
  display: inline-block;
  padding: .5rem .9rem;
  border-radius: 999px;
  border: 1px solid var(--bs-border-color);
  background-color: var(--surface-bg);
  transition: transform .2s ease, box-shadow .2s ease;
}

.chip:hover, .chip:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  text-decoration: none;
}

.finder-card {
  border: 1px solid var(--bs-border-color);
  transition: transform .2s ease, box-shadow .2s ease;
}

.finder-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
}

.footer-card {
  background-color: var(--surface-bg);
  border: 1px solid var(--bs-border-color);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr;
  gap: 1.5rem;
}

.footer-brand-title {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.footer-tagline {
  max-width: 42ch;
}

.footer-links .link-col h6 {
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-social .social-link {
  width: 32px;
  height: 32px;
  border: 1px solid var(--bs-border-color);
  background-color: var(--surface-bg);
  margin-right: .5rem;
}

@media (max-width: 991.98px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: .75rem;
  }
}

.footer-brand picture .img {
  width: 140px;
}

.footer-brand-title{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:.5rem;
}

.hero-copy {
  gap: 12px;
}

.hero-content-block {
  padding: 12px 18px;
  border-radius: 18px;
}

.hero-pagination {
  margin-top: 18px;
}

.card {
  border-radius: 18px;
  overflow: hidden;
}

.card-title {
  color: var(--text-color);
}

.card-text {
  color: var(--muted-text-color);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: -.01em;
}

.section-title {
  margin-bottom: 1rem;
}

.footer-card{position:relative;overflow:hidden}
.footer-card::before{content:"";position:absolute;inset:-40% -20% auto -20%;height:220px;background:radial-gradient(600px 300px at 20% 20%, rgba(124,58,237,.18), transparent 60%), radial-gradient(600px 300px at 80% 80%, rgba(34,211,238,.18), transparent 60%);filter:blur(40px);pointer-events:none}
.footer-top{display:flex;flex-wrap:wrap;gap:24px;justify-content:space-between;align-items:flex-start}
.footer-brand{flex:1 1 280px;min-width:240px;display:flex;flex-direction:column;gap:.75rem}
.footer-links{display:flex;flex-wrap:wrap;gap:24px;flex:1 1 360px}
.footer-links .link-col{flex:1 1 160px;min-width:160px}
.footer-news{flex:1 1 320px;min-width:260px}
.footer-social{display:flex;flex-wrap:wrap;gap:8px;justify-content:flex-start}
.footer-bottom{display:flex;flex-wrap:wrap;gap:12px;align-items:center;justify-content:space-between}
.footer-brand-title{display:inline-flex;flex-direction:column;align-items:flex-start;gap:.5rem}
.footer-tagline{max-width:420px}
.practice-hub .hub-metrics i {
  font-size: 1.25rem;
  color: var(--accent-start);
}

.hub-card {
  position: relative;
  min-height: 200px;
  border-radius: var(--radius-standard);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--bs-border-color);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.hub-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 250px at 20% 20%, rgba(124, 58, 237, .18), transparent 60%), radial-gradient(500px 250px at 80% 80%, rgba(34, 211, 238, .18), transparent 60%);
}

.hub-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
}

.hub-card-body {
  position: absolute;
  left: .8rem;
  right: .8rem;
  bottom: .8rem;
  padding: .5rem .6rem;
  border-radius: var(--radius-standard);
  background-color: var(--glass-bg);
  border: 1px solid var(--glass-border-color);
}

.footer-social .social-link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid transparent;
  background-image: linear-gradient(var(--surface-bg), var(--surface-bg)), linear-gradient(135deg, var(--accent-start), var(--accent-end));
  background-origin: border-box;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social .social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.16);
  filter: brightness(1.05);
}

.footer-social .social-link i {
  color: var(--bs-body-color);
  font-size: 1.1rem;
}
.practice-hub {
  position: relative;
}

.hub-accent {
  width: 120px;
  height: 4px;
  border-radius: 999px;
  background-image: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  margin-bottom: 1rem;
}

.practice-hub .btn {
  text-decoration: none !important;
}

.chip {
  text-decoration: none;
}

.hub-metrics .hub-metric {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem .8rem;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--radius-standard);
  background-color: var(--surface-bg);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hub-metrics .hub-metric:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0,0,0,.14);
}

.hub-metrics .icon-ring {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background-image: linear-gradient(var(--surface-bg), var(--surface-bg)), linear-gradient(135deg, var(--accent-start), var(--accent-end));
  background-origin: border-box;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hub-metrics .title {
  font-weight: 700;
}
.quick-start .btn {
  text-decoration: none !important;
}

.qs-accent {
  width: 120px;
  height: 4px;
  border-radius: 999px;
  background-image: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  margin-bottom: 1rem;
}

.qs-filters .chip {
  border: 1px solid var(--bs-border-color);
  background-color: var(--surface-bg);
}

.qs-card {
  position: relative;
  min-height: 200px;
  border-radius: var(--radius-standard);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--bs-border-color);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.qs-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 250px at 20% 20%, rgba(124, 58, 237, .18), transparent 60%), radial-gradient(500px 250px at 80% 80%, rgba(34, 211, 238, .18), transparent 60%);
}

.qs-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
}

.qs-card-body {
  position: absolute;
  left: .8rem;
  right: .8rem;
  bottom: .8rem;
  padding: .5rem .6rem;
  border-radius: var(--radius-standard);
  background-color: var(--glass-bg);
  border: 1px solid var(--glass-border-color);
}

.qs-meta {
  display: flex;
  gap: .75rem;
  align-items: center;
  font-size: .875rem;
  color: var(--bs-secondary-color);
}

.qs-card-cta { display: none; }

.qs-stats {
  display: flex;
  gap: .75rem;
  align-items: center;
  font-size: .875rem;
  color: var(--bs-secondary-color);
}

.qs-stats i {
  color: var(--accent-start);
  margin-right: .25rem;
}
