/* ==========================================================================
   Humonolgy - Core Theme Stylesheet
   ========================================================================== */

/* 1. Reset & Global Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body {
  font-family: var(--sg-font-body);
  color: var(--sg-charcoal);
  background-color: var(--sg-cream);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* 2. Skip Link (Accessibility) */
.sg-skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--sg-navy);
  color: var(--sg-white);
  padding: 12px 20px;
  z-index: 10000;
  border-radius: var(--sg-radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top var(--sg-transition-fast);
}

.sg-skip-link:focus {
  top: 20px;
  outline: 3px solid var(--sg-teal);
}

/* 3. Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--sg-font-heading);
  color: var(--sg-navy);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; }

p {
  margin-bottom: 1.25rem;
  color: var(--sg-charcoal-light);
}

a {
  color: var(--sg-teal-dark);
  text-decoration: none;
  transition: color var(--sg-transition-fast);
}

a:hover, a:focus-visible {
  color: var(--sg-navy);
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--sg-teal);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 4. Layout & Grid Containers */
.sg-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

.sg-container-narrow {
  max-width: 860px;
}

.sg-section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}

.sg-section-sand {
  background-color: var(--sg-sand);
}

.sg-section-white {
  background-color: var(--sg-white);
}

.sg-section-navy {
  background-color: var(--sg-navy);
  color: var(--sg-white);
}

.sg-section-navy h1,
.sg-section-navy h2,
.sg-section-navy h3,
.sg-section-navy h4 {
  color: var(--sg-white);
}

.sg-section-navy p {
  color: rgba(255, 255, 255, 0.85);
}

.sg-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}

.sg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sg-teal-dark);
  margin-bottom: 12px;
  background: var(--sg-teal-light);
  padding: 6px 14px;
  border-radius: var(--sg-radius-pill);
}

.sg-section-title {
  margin-bottom: 16px;
}

.sg-section-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--sg-slate);
}

/* 5. Buttons & Interactive Controls */
.sg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sg-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--sg-radius-pill);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--sg-transition-fast);
  text-align: center;
  line-height: 1.2;
}

.sg-btn-primary {
  background-color: var(--sg-teal);
  color: var(--sg-white);
  box-shadow: 0 4px 14px var(--sg-teal-glow);
}

.sg-btn-primary:hover, .sg-btn-primary:focus-visible {
  background-color: var(--sg-teal-dark);
  color: var(--sg-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 184, 169, 0.28);
}

.sg-btn-navy {
  background-color: var(--sg-navy);
  color: var(--sg-white);
}

.sg-btn-navy:hover, .sg-btn-navy:focus-visible {
  background-color: var(--sg-navy-dark);
  color: var(--sg-white);
  transform: translateY(-2px);
}

.sg-btn-secondary {
  background-color: transparent;
  color: var(--sg-navy);
  border-color: var(--sg-navy);
}

.sg-btn-secondary:hover, .sg-btn-secondary:focus-visible {
  background-color: var(--sg-navy);
  color: var(--sg-white);
  transform: translateY(-2px);
}

.sg-btn-ghost-white {
  background-color: transparent;
  color: var(--sg-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.sg-btn-ghost-white:hover, .sg-btn-ghost-white:focus-visible {
  background-color: var(--sg-white);
  color: var(--sg-navy);
}

.sg-btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.sg-btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* 6. Page Loader */
.sg-page-loader {
  position: fixed;
  inset: 0;
  background: var(--sg-cream);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.sg-page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sg-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--sg-border);
  border-top-color: var(--sg-teal);
  border-radius: 50%;
  animation: sg-spin 0.8s linear infinite;
}

@keyframes sg-spin {
  to { transform: rotate(360deg); }
}

.sg-loader-text {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sg-slate);
  font-weight: 600;
}

/* 7. Scroll Progress Bar */
.sg-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--sg-teal), var(--sg-navy));
  z-index: 9999;
  transition: width 0.08s ease-out;
}

/* 8. Top Bar */
.sg-topbar {
  background: var(--sg-navy-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.825rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sg-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.sg-topbar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sg-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
}

.sg-topbar-item a {
  color: inherit;
}

.sg-topbar-item a:hover {
  color: var(--sg-teal);
}

.sg-topbar-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sg-topbar-socials a {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: all var(--sg-transition-fast);
}

.sg-topbar-socials a:hover {
  background: var(--sg-teal);
  color: var(--sg-white);
  transform: translateY(-1px);
}

/* 9. Header & Navigation */
.sg-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--sg-cream);
  z-index: 1000;
  transition: background-color var(--sg-transition-normal), box-shadow var(--sg-transition-normal), padding var(--sg-transition-normal);
  border-bottom: 1px solid transparent;
}

.sg-header.is-scrolled {
  background-color: rgba(250, 249, 246, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(26, 43, 95, 0.06);
  border-bottom: 1px solid var(--sg-border);
}

.sg-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  transition: padding var(--sg-transition-normal);
}

.sg-header.is-scrolled .sg-header-inner {
  padding: 12px 0;
}

.sg-brand-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sg-brand-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sg-brand-logo-wrap .custom-logo-link {
  display: flex;
  align-items: center;
}

.sg-brand-logo-wrap .custom-logo {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.sg-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.sg-brand-logo {
  max-height: 48px;
  width: auto;
}

.sg-brand-title {
  font-family: var(--sg-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sg-navy);
  letter-spacing: -0.02em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sg-brand-dot {
  width: 8px;
  height: 8px;
  background-color: var(--sg-teal);
  border-radius: 50%;
  display: inline-block;
}

.sg-brand-tagline {
  font-size: 0.75rem;
  color: var(--sg-slate);
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Desktop Nav */
.sg-nav-desktop {
  display: none;
}

@media (min-width: 992px) {
  .sg-nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

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

.sg-primary-menu li {
  position: relative;
}

.sg-primary-menu > li > a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--sg-navy);
  padding: 8px 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

.sg-primary-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--sg-teal);
  transition: width var(--sg-transition-fast);
}

.sg-primary-menu > li:hover > a::after,
.sg-primary-menu > li.current-menu-item > a::after {
  width: 100%;
}

.sg-primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--sg-white);
  border-radius: var(--sg-radius-md);
  padding: 12px 0;
  list-style: none;
  box-shadow: var(--sg-shadow-md);
  border: 1px solid var(--sg-border-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--sg-transition-fast);
  z-index: 100;
}

.sg-primary-menu li:hover > .sub-menu,
.sg-primary-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sg-primary-menu .sub-menu a {
  display: block;
  padding: 8px 20px;
  color: var(--sg-charcoal);
  font-size: 0.9rem;
}

.sg-primary-menu .sub-menu a:hover {
  background: var(--sg-sand-light);
  color: var(--sg-teal-dark);
}

/* Mobile Nav Toggle */
.sg-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
  border-radius: var(--sg-radius-sm);
}

@media (min-width: 992px) {
  .sg-hamburger {
    display: none;
  }
}

.sg-hamburger-bar {
  width: 24px;
  height: 2px;
  background-color: var(--sg-navy);
  border-radius: 2px;
  transition: all var(--sg-transition-fast);
  transform-origin: 1px;
}

.sg-hamburger.is-active .sg-hamburger-bar:nth-child(1) {
  transform: rotate(45deg);
}

.sg-hamburger.is-active .sg-hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.sg-hamburger.is-active .sg-hamburger-bar:nth-child(3) {
  transform: rotate(-45deg);
}

/* Mobile Drawer */
.sg-mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(17, 28, 64, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all var(--sg-transition-normal);
}

.sg-mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.sg-mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 360px);
  background: var(--sg-white);
  padding: 80px 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform var(--sg-transition-normal);
  overflow-y: auto;
}

.sg-mobile-drawer.is-open .sg-mobile-drawer-content {
  transform: translateX(0);
}

.sg-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sg-mobile-menu a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--sg-navy);
  display: block;
}

.sg-mobile-menu .sub-menu {
  list-style: none;
  padding-left: 16px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sg-mobile-menu .sub-menu a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--sg-slate);
}

/* 10. Hero Section */
.sg-hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
  background: radial-gradient(circle at 80% 20%, rgba(0, 184, 169, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(26, 43, 95, 0.05) 0%, transparent 60%),
              var(--sg-cream);
  overflow: hidden;
}

.sg-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

@media (min-width: 992px) {
  .sg-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.sg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sg-white);
  padding: 8px 16px;
  border-radius: var(--sg-radius-pill);
  box-shadow: var(--sg-shadow-sm);
  border: 1px solid var(--sg-border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sg-navy);
  margin-bottom: 20px;
}

.sg-hero-badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--sg-teal);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 184, 169, 0.6);
  animation: sg-pulse 2s infinite;
}

@keyframes sg-pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 184, 169, 0.6); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 184, 169, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 184, 169, 0); }
}

.sg-hero-headline {
  margin-bottom: 20px;
}

.sg-hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--sg-charcoal-light);
  margin-bottom: 32px;
  max-width: 580px;
}

.sg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.sg-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--sg-border);
}

.sg-hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sg-slate);
}

.sg-hero-meta-icon {
  color: var(--sg-teal);
}

.sg-hero-media {
  position: relative;
}

.sg-hero-media-wrapper {
  position: relative;
  border-radius: var(--sg-radius-lg);
  overflow: hidden;
  box-shadow: var(--sg-shadow-lg);
  border: 1px solid var(--sg-border);
  aspect-ratio: 4 / 3.8;
  background: var(--sg-sand);
}

.sg-hero-media-wrapper img,
.sg-hero-media-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sg-hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 16px 22px;
  border-radius: var(--sg-radius-md);
  box-shadow: var(--sg-shadow-md);
  border: 1px solid var(--sg-border);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}

.sg-hero-floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sg-teal-light);
  color: var(--sg-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.sg-hero-floating-text h4 {
  font-size: 0.9rem;
  margin: 0 0 2px;
  color: var(--sg-navy);
}

.sg-hero-floating-text p {
  font-size: 0.75rem;
  margin: 0;
  color: var(--sg-slate);
}

/* 11. Statistics Section */
.sg-stats {
  background: var(--sg-white);
  padding: 48px 0;
  border-top: 1px solid var(--sg-border);
  border-bottom: 1px solid var(--sg-border);
}

.sg-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .sg-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sg-stat-card {
  text-align: center;
  padding: 12px;
}

.sg-stat-number {
  font-family: var(--sg-font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--sg-navy);
  line-height: 1;
  margin-bottom: 8px;
}

.sg-stat-number span {
  color: var(--sg-teal);
}

.sg-stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sg-slate);
  letter-spacing: 0.02em;
}

/* 12. Services Section */
.sg-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 640px) {
  .sg-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sg-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sg-service-card {
  background: var(--sg-white);
  border-radius: var(--sg-radius-md);
  border: 1px solid var(--sg-border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--sg-transition-normal);
  position: relative;
  overflow: hidden;
}

.sg-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--sg-teal);
  opacity: 0;
  transition: opacity var(--sg-transition-fast);
}

.sg-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sg-shadow-md);
  border-color: rgba(0, 184, 169, 0.3);
}

.sg-service-card:hover::before {
  opacity: 1;
}

.sg-service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--sg-radius-md);
  background: var(--sg-teal-light);
  color: var(--sg-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.sg-service-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.sg-service-excerpt {
  font-size: 0.95rem;
  color: var(--sg-charcoal-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

.sg-service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--sg-border-light);
  font-size: 0.85rem;
  color: var(--sg-slate);
}

.sg-service-link {
  font-weight: 600;
  color: var(--sg-teal-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* 13. Interactive Service Finder Tool */
.sg-finder-container {
  background: var(--sg-white);
  border-radius: var(--sg-radius-lg);
  border: 1px solid var(--sg-border);
  box-shadow: var(--sg-shadow-md);
  padding: clamp(24px, 5vw, 48px);
  max-width: 800px;
  margin: 0 auto;
}

.sg-finder-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
}

.sg-finder-progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sg-border);
  z-index: 1;
  transform: translateY(-50%);
}

.sg-finder-progress-fill {
  height: 100%;
  background: var(--sg-teal);
  transition: width 0.3s ease;
  width: 33.3%;
}

.sg-finder-step-bullet {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sg-white);
  border: 2px solid var(--sg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sg-slate);
  position: relative;
  z-index: 2;
  transition: all 0.2s ease;
}

.sg-finder-step-bullet.is-active {
  border-color: var(--sg-teal);
  background: var(--sg-teal);
  color: var(--sg-white);
}

.sg-finder-step-bullet.is-completed {
  border-color: var(--sg-teal);
  background: var(--sg-teal-light);
  color: var(--sg-teal-dark);
}

.sg-finder-step {
  display: none;
}

.sg-finder-step.is-active {
  display: block;
}

.sg-finder-question {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  margin-bottom: 24px;
  text-align: center;
}

.sg-finder-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

@media (min-width: 600px) {
  .sg-finder-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sg-finder-option-btn {
  background: var(--sg-sand-light);
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius-md);
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--sg-transition-fast);
  color: var(--sg-charcoal);
  font-family: var(--sg-font-body);
  font-size: 0.95rem;
}

.sg-finder-option-btn:hover,
.sg-finder-option-btn:focus-visible {
  background: var(--sg-teal-light);
  border-color: var(--sg-teal);
  transform: translateY(-2px);
}

.sg-finder-option-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sg-white);
  color: var(--sg-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sg-finder-result {
  text-align: center;
  padding: 16px 0;
}

.sg-finder-result-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sg-teal-light);
  color: var(--sg-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}

.sg-finder-disclaimer {
  font-size: 0.78rem;
  color: var(--sg-slate);
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--sg-border-light);
  text-align: center;
}

/* 14. Team Section */
.sg-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .sg-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .sg-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sg-team-card {
  background: var(--sg-white);
  border-radius: var(--sg-radius-md);
  border: 1px solid var(--sg-border);
  overflow: hidden;
  box-shadow: var(--sg-shadow-sm);
  transition: all var(--sg-transition-normal);
}

.sg-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sg-shadow-md);
}

.sg-team-img-wrap {
  aspect-ratio: 1;
  background: var(--sg-sand);
  overflow: hidden;
}

.sg-team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--sg-transition-slow);
}

.sg-team-card:hover .sg-team-img-wrap img {
  transform: scale(1.04);
}

.sg-team-content {
  padding: 24px 20px;
}

.sg-team-name {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.sg-team-role {
  font-size: 0.88rem;
  color: var(--sg-teal-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.sg-team-bio {
  font-size: 0.9rem;
  color: var(--sg-charcoal-light);
  margin-bottom: 14px;
}

.sg-team-credentials {
  font-size: 0.8rem;
  color: var(--sg-slate);
  padding-top: 10px;
  border-top: 1px solid var(--sg-border-light);
}

/* 15. Testimonials Section & Carousel */
.sg-testimonial-slider {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.sg-testimonial-slides {
  position: relative;
  min-height: 240px;
}

.sg-testimonial-slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transform: translateX(20px);
}

.sg-testimonial-slide.is-active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
  transform: translateX(0);
}

.sg-testimonial-card {
  background: var(--sg-white);
  border-radius: var(--sg-radius-lg);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--sg-border);
  box-shadow: var(--sg-shadow-md);
  text-align: center;
}

.sg-testimonial-quote-icon {
  font-size: 2rem;
  color: var(--sg-teal);
  margin-bottom: 16px;
  opacity: 0.5;
}

.sg-testimonial-text {
  font-family: var(--sg-font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--sg-navy);
  line-height: 1.55;
  margin-bottom: 24px;
}

.sg-testimonial-author {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sg-charcoal);
  margin-bottom: 4px;
}

.sg-testimonial-context {
  font-size: 0.85rem;
  color: var(--sg-slate);
}

.sg-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.sg-slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--sg-border);
  background: var(--sg-white);
  color: var(--sg-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--sg-transition-fast);
}

.sg-slider-btn:hover {
  background: var(--sg-teal);
  color: var(--sg-white);
  border-color: var(--sg-teal);
}

.sg-slider-dots {
  display: flex;
  gap: 8px;
}

.sg-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sg-border);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sg-slider-dot.is-active {
  background: var(--sg-teal);
  width: 24px;
  border-radius: var(--sg-radius-pill);
}

/* 16. FAQ Accordion */
.sg-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sg-faq-item {
  background: var(--sg-white);
  border-radius: var(--sg-radius-md);
  border: 1px solid var(--sg-border);
  overflow: hidden;
  transition: border-color var(--sg-transition-fast);
}

.sg-faq-item.is-open {
  border-color: var(--sg-teal);
  box-shadow: var(--sg-shadow-sm);
}

.sg-faq-trigger {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--sg-font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sg-navy);
  cursor: pointer;
}

.sg-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sg-sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--sg-transition-fast);
}

.sg-faq-item.is-open .sg-faq-icon {
  transform: rotate(180deg);
  background: var(--sg-teal-light);
  color: var(--sg-teal-dark);
}

.sg-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sg-faq-content-inner {
  padding: 0 24px 22px;
  color: var(--sg-charcoal-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* 17. Gallery Grid & Lightbox */
.sg-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.sg-gallery-item {
  position: relative;
  border-radius: var(--sg-radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--sg-shadow-sm);
}

.sg-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--sg-transition-normal);
}

.sg-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 28, 64, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: var(--sg-white);
  opacity: 0;
  transition: opacity var(--sg-transition-fast);
}

.sg-gallery-item:hover img,
.sg-gallery-item:focus-visible img {
  transform: scale(1.05);
}

.sg-gallery-item:hover .sg-gallery-overlay,
.sg-gallery-item:focus-visible .sg-gallery-overlay {
  opacity: 1;
}

.sg-gallery-caption {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Lightbox Modal */
.sg-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 40, 0.94);
  backdrop-filter: blur(8px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.sg-lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.sg-lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.sg-lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--sg-radius-md);
  box-shadow: var(--sg-shadow-modal);
}

.sg-lightbox-caption {
  color: var(--sg-white);
  text-align: center;
  margin-top: 12px;
  font-size: 0.95rem;
}

.sg-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--sg-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.sg-lightbox-close:hover {
  background: var(--sg-teal);
}

/* 18. Interactive Wellness Tools */
.sg-tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .sg-tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sg-tool-card {
  background: var(--sg-white);
  border-radius: var(--sg-radius-lg);
  border: 1px solid var(--sg-border);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sg-shadow-sm);
  transition: all var(--sg-transition-normal);
}

.sg-tool-card:hover {
  box-shadow: var(--sg-shadow-md);
  border-color: rgba(0, 184, 169, 0.35);
}

.sg-tool-header {
  margin-bottom: 20px;
}

.sg-tool-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sg-teal-dark);
  background: var(--sg-teal-light);
  padding: 4px 10px;
  border-radius: var(--sg-radius-pill);
  margin-bottom: 8px;
}

.sg-tool-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.sg-tool-desc {
  font-size: 0.88rem;
  color: var(--sg-slate);
  margin-bottom: 20px;
}

/* Breathing Tool Visualizer */
.sg-breathing-visualizer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  flex-grow: 1;
}

.sg-breathing-circle-outer {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--sg-sand-light);
  border: 2px dashed var(--sg-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sg-breathing-circle-inner {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sg-teal), var(--sg-navy-light));
  transition: transform 4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sg-white);
  font-weight: 700;
  font-size: 0.85rem;
}

.sg-breathing-circle-inner.is-inhale {
  transform: scale(1.75);
}

.sg-breathing-circle-inner.is-exhale {
  transform: scale(1);
}

.sg-breathing-instruction {
  font-family: var(--sg-font-heading);
  font-size: 1.15rem;
  color: var(--sg-navy);
  margin-top: 18px;
  font-weight: 600;
  height: 28px;
  text-align: center;
}

.sg-breathing-timer {
  font-size: 0.8rem;
  color: var(--sg-slate);
  margin-top: 4px;
}

/* Grounding Exercise Interactive */
.sg-grounding-box {
  background: var(--sg-sand-light);
  border-radius: var(--sg-radius-md);
  padding: 18px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.sg-grounding-step-count {
  font-family: var(--sg-font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--sg-teal-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.sg-grounding-step-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sg-navy);
  margin-bottom: 6px;
}

.sg-grounding-step-desc {
  font-size: 0.85rem;
  color: var(--sg-charcoal-light);
  margin: 0;
}

/* Prompts Box */
.sg-prompts-box {
  background: var(--sg-sand-light);
  border-radius: var(--sg-radius-md);
  padding: 18px;
  margin-bottom: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
}

.sg-prompt-quote {
  font-family: var(--sg-font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--sg-navy);
  line-height: 1.5;
  margin: 0;
}

/* 19. Booking Modal & Form */
.sg-modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 28, 64, 0.6);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--sg-transition-normal);
}

.sg-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.sg-modal-dialog {
  background: var(--sg-white);
  border-radius: var(--sg-radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--sg-shadow-modal);
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform var(--sg-transition-normal);
  padding: clamp(24px, 5vw, 40px);
}

.sg-modal.is-open .sg-modal-dialog {
  transform: translateY(0) scale(1);
}

.sg-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sg-sand-light);
  border: 1px solid var(--sg-border);
  color: var(--sg-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--sg-transition-fast);
  font-size: 1.2rem;
}

.sg-modal-close:hover {
  background: var(--sg-navy);
  color: var(--sg-white);
}

.sg-modal-header {
  margin-bottom: 24px;
  padding-right: 36px;
}

.sg-modal-title {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  margin-bottom: 6px;
}

.sg-modal-desc {
  font-size: 0.95rem;
  color: var(--sg-slate);
  margin: 0;
}

/* Form Styles */
.sg-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sg-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .sg-form-row-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .sg-form-row-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sg-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.sg-form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sg-navy);
}

.sg-form-label span.required {
  color: var(--sg-teal-dark);
}

.sg-form-input,
.sg-form-select,
.sg-form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--sg-font-body);
  font-size: 0.95rem;
  color: var(--sg-charcoal);
  background: var(--sg-sand-light);
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius-sm);
  transition: all var(--sg-transition-fast);
}

.sg-form-input:focus,
.sg-form-select:focus,
.sg-form-textarea:focus {
  background: var(--sg-white);
  border-color: var(--sg-teal);
  box-shadow: 0 0 0 3px var(--sg-teal-glow);
  outline: none;
}

.sg-form-textarea {
  resize: vertical;
  min-height: 90px;
}

.sg-form-hint {
  font-size: 0.78rem;
  color: var(--sg-slate);
}

.sg-form-error-msg {
  font-size: 0.78rem;
  color: var(--sg-error);
  display: none;
}

.has-error .sg-form-input,
.has-error .sg-form-select,
.has-error .sg-form-textarea {
  border-color: var(--sg-error);
  background: #FFF5F5;
}

.has-error .sg-form-error-msg {
  display: block;
}

.sg-form-draft-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--sg-teal-light);
  padding: 8px 14px;
  border-radius: var(--sg-radius-sm);
  font-size: 0.8rem;
  color: var(--sg-teal-dark);
}

.sg-form-draft-clear {
  background: none;
  border: none;
  color: var(--sg-teal-dark);
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.75rem;
  padding: 0;
}

.sg-form-status {
  padding: 16px;
  border-radius: var(--sg-radius-sm);
  font-size: 0.9rem;
  display: none;
  align-items: center;
  gap: 12px;
}

.sg-form-status.is-success {
  display: flex;
  background: #F0FFF4;
  border: 1px solid #C6F6D5;
  color: #22543D;
}

.sg-form-status.is-error {
  display: flex;
  background: #FFF5F5;
  border: 1px solid #FED7D7;
  color: #742A2A;
}

/* Honeypot hidden input */
.sg-hp-field {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

/* 20. Footer Section */
.sg-footer {
  background: var(--sg-navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: clamp(60px, 8vw, 90px) 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sg-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .sg-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sg-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  }
}

.sg-footer-col h4 {
  color: var(--sg-white);
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.sg-footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.sg-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sg-footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.sg-footer-links a:hover {
  color: var(--sg-teal);
  padding-left: 4px;
}

.sg-footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.sg-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.sg-footer-contact-item a {
  color: inherit;
}

.sg-footer-contact-item a:hover {
  color: var(--sg-teal);
}

/* Newsletter in Footer */
.sg-newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.sg-newsletter-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--sg-white);
  padding: 10px 14px;
  border-radius: var(--sg-radius-pill);
  font-size: 0.88rem;
}

.sg-newsletter-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--sg-teal);
  outline: none;
}

.sg-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.sg-footer-crisis {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--sg-radius-md);
  padding: 16px 20px;
  margin-bottom: 36px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sg-footer-crisis-icon {
  color: var(--sg-teal);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.sg-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.825rem;
}

.sg-footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

.sg-footer-bottom a:hover {
  color: var(--sg-teal);
}

/* 21. Floating Buttons & Mobile Action Bar */
.sg-floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sg-floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sg-white);
  box-shadow: var(--sg-shadow-md);
  cursor: pointer;
  transition: all var(--sg-transition-fast);
  border: none;
  font-size: 1.25rem;
}

.sg-floating-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.sg-floating-wa {
  background: #25D366;
}

.sg-floating-call {
  background: var(--sg-teal);
}

.sg-back-to-top {
  background: var(--sg-navy);
  opacity: 0;
  visibility: hidden;
  transition: all var(--sg-transition-fast);
}

.sg-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

/* Mobile Bottom Booking Bar */
.sg-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-top: 1px solid var(--sg-border);
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(17, 28, 64, 0.08);
}

@media (max-width: 767px) {
  .sg-mobile-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

.sg-mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sg-navy);
  padding: 6px;
  border-radius: var(--sg-radius-sm);
  text-decoration: none;
}

.sg-mobile-bar-btn.primary-cta {
  background: var(--sg-teal);
  color: var(--sg-white);
  border-radius: var(--sg-radius-pill);
}

/* 22. Standard Content / Blog / Pages */
.sg-content-area {
  padding: clamp(40px, 6vw, 80px) 0;
}

.sg-article-card {
  background: var(--sg-white);
  border-radius: var(--sg-radius-md);
  border: 1px solid var(--sg-border);
  overflow: hidden;
  box-shadow: var(--sg-shadow-sm);
  transition: all var(--sg-transition-normal);
  display: flex;
  flex-direction: column;
}

.sg-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sg-shadow-md);
}

.sg-article-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--sg-sand);
}

.sg-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--sg-transition-slow);
}

.sg-article-card:hover .sg-article-thumb img {
  transform: scale(1.04);
}

.sg-article-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sg-article-meta {
  font-size: 0.82rem;
  color: var(--sg-slate);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sg-article-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.sg-article-title a {
  color: var(--sg-navy);
}

.sg-article-title a:hover {
  color: var(--sg-teal-dark);
}

.sg-article-excerpt {
  font-size: 0.92rem;
  color: var(--sg-charcoal-light);
  margin-bottom: 18px;
  flex-grow: 1;
}

/* Single Post Entry */
.sg-single-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 36px;
}

.sg-single-featured-image {
  margin: 0 auto 40px;
  max-width: 1000px;
  border-radius: var(--sg-radius-lg);
  overflow: hidden;
  box-shadow: var(--sg-shadow-md);
}

.sg-entry-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--sg-charcoal);
  max-width: 760px;
  margin: 0 auto;
}

.sg-entry-content p {
  margin-bottom: 1.5rem;
}

.sg-entry-content h2,
.sg-entry-content h3 {
  margin: 2.2rem 0 1rem;
}

.sg-entry-content blockquote {
  border-left: 4px solid var(--sg-teal);
  padding: 16px 24px;
  margin: 2rem 0;
  background: var(--sg-sand-light);
  border-radius: 0 var(--sg-radius-md) var(--sg-radius-md) 0;
  font-family: var(--sg-font-heading);
  font-style: italic;
  color: var(--sg-navy);
}

/* Pagination */
.sg-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.sg-pagination .page-numbers {
  padding: 8px 16px;
  border-radius: var(--sg-radius-sm);
  border: 1px solid var(--sg-border);
  background: var(--sg-white);
  color: var(--sg-navy);
  font-weight: 600;
}

.sg-pagination .page-numbers.current,
.sg-pagination .page-numbers:hover {
  background: var(--sg-teal);
  color: var(--sg-white);
  border-color: var(--sg-teal);
}

/* 23. HIPAA Compliance & Privacy Policy Modal */
.sg-hipaa-dialog {
  max-width: 720px;
  padding: clamp(24px, 4vw, 36px);
}

.sg-hipaa-badge-wrap {
  margin-bottom: 12px;
}

.sg-hipaa-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sg-teal-light);
  color: var(--sg-teal-dark);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: var(--sg-radius-pill);
  border: 1px solid rgba(0, 184, 169, 0.25);
}

.sg-hipaa-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FFF5F5;
  border: 1px solid #FED7D7;
  border-left: 4px solid #E53E3E;
  border-radius: var(--sg-radius-md);
  padding: 14px 18px;
  margin-bottom: 20px;
  color: #742A2A;
  font-size: 0.88rem;
  line-height: 1.5;
}

.sg-hipaa-alert-icon {
  font-size: 1.25rem;
  line-height: 1;
  color: #E53E3E;
  flex-shrink: 0;
  margin-top: 1px;
}

.sg-hipaa-alert-body strong {
  color: #9B2C2C;
}

.sg-hipaa-scrollbox {
  background: #FBFBFA;
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius-md);
  padding: 20px 24px;
  max-height: 280px;
  overflow-y: auto;
  margin-bottom: 22px;
  scrollbar-width: thin;
  scrollbar-color: var(--sg-border) transparent;
}

.sg-hipaa-scrollbox::-webkit-scrollbar {
  width: 6px;
}

.sg-hipaa-scrollbox::-webkit-scrollbar-thumb {
  background-color: var(--sg-border);
  border-radius: 4px;
}

.sg-hipaa-section {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #ECEEEF;
}

.sg-hipaa-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.sg-hipaa-section h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sg-navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sg-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sg-sand);
  color: var(--sg-navy);
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.sg-hipaa-section p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--sg-slate);
  margin: 0;
}

.sg-hipaa-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--sg-border);
}

.sg-hipaa-agree-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--sg-charcoal);
}

.sg-hipaa-agree-label input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--sg-teal);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}

.sg-hipaa-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sg-hipaa-accept-btn {
  flex: 1;
  min-width: 180px;
}

.sg-hipaa-small-note {
  font-size: 0.76rem;
  color: var(--sg-slate-light);
  margin: 0;
  text-align: center;
}

.sg-footer-privacy-btn {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--sg-transition-fast);
}

.sg-footer-privacy-btn:hover {
  color: var(--sg-teal);
}

/* ==========================================================================
   Article Comments & Reflection Section (Humonolgy Theme)
   Fixes unstyled WordPress comment_form markup & elevates reflection UX
   ========================================================================== */

.sg-comments-area,
#comments {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--sg-border);
  width: 100%;
  box-sizing: border-box;
}

.sg-comments-header {
  margin-bottom: 28px;
}

.sg-comments-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sg-teal-dark);
  background: var(--sg-teal-light);
  padding: 4px 12px;
  border-radius: var(--sg-radius-pill);
  margin-bottom: 8px;
  border: 1px solid rgba(0, 184, 169, 0.25);
}

.sg-comments-title,
.comments-title {
  font-family: var(--sg-font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--sg-navy);
  margin: 0;
  line-height: 1.3;
}

.sg-comments-title span,
.comments-title span {
  color: var(--sg-teal-dark);
  font-style: italic;
}

/* Existing Comment Thread List */
.sg-comment-list,
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 44px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sg-comment-list .children,
.comment-list .children {
  list-style: none;
  padding-left: 18px;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 2px solid rgba(0, 184, 169, 0.3);
}

@media (min-width: 640px) {
  .sg-comment-list .children,
  .comment-list .children {
    padding-left: 32px;
    border-left: 2.5px solid rgba(0, 184, 169, 0.25);
  }
}

.comment-body,
.sg-comment-card {
  background: var(--sg-white);
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius-md);
  padding: 22px 24px;
  box-shadow: var(--sg-shadow-sm);
  transition: all var(--sg-transition-fast);
}

.comment-body:hover,
.sg-comment-card:hover {
  border-color: rgba(0, 184, 169, 0.4);
  box-shadow: var(--sg-shadow-md);
}

.comment-meta,
.sg-comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sg-sand);
}

.comment-author,
.sg-comment-author-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comment-author .avatar,
.sg-comment-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sg-teal-light);
  background: var(--sg-sand);
  flex-shrink: 0;
}

.comment-author .fn,
.sg-comment-author-name {
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--sg-navy);
  font-style: normal;
}

.comment-metadata,
.sg-comment-date {
  font-size: 0.82rem;
  color: var(--sg-slate);
}

.comment-metadata a {
  color: var(--sg-slate);
  text-decoration: none;
}

.comment-metadata a:hover {
  color: var(--sg-teal-dark);
}

.comment-content,
.sg-comment-content {
  font-size: 0.94rem;
  line-height: 1.68;
  color: var(--sg-charcoal);
  margin-bottom: 14px;
}

.comment-content p:last-child {
  margin-bottom: 0;
}

.comment .reply,
.sg-comment-reply {
  display: flex;
  justify-content: flex-end;
}

.comment-reply-link,
.sg-comment-reply-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sg-teal-dark);
  background: var(--sg-teal-light);
  padding: 6px 14px;
  border-radius: var(--sg-radius-pill);
  text-decoration: none;
  transition: all var(--sg-transition-fast);
  border: 1px solid transparent;
}

.comment-reply-link:hover,
.sg-comment-reply-btn:hover {
  background: var(--sg-teal);
  color: var(--sg-navy-dark);
  border-color: var(--sg-teal-dark);
}

.sg-reply-icon {
  font-size: 1rem;
  line-height: 1;
}

.sg-comments-closed {
  background: var(--sg-sand-light);
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius-md);
  padding: 18px 24px;
  text-align: center;
  color: var(--sg-slate);
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 32px;
}

/* ==========================================================================
   Comment Form / Response Box (.comment-respond)
   Transforms default WordPress layout into modern, high-end design
   ========================================================================== */

.comment-respond,
.sg-comment-respond,
#respond {
  background: var(--sg-sand-light);
  border: 1.5px solid var(--sg-border);
  border-radius: var(--sg-radius-lg);
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(26, 43, 95, 0.04);
  margin-top: 48px;
  position: relative;
  box-sizing: border-box;
  clear: both;
}

@media (max-width: 640px) {
  .comment-respond,
  .sg-comment-respond,
  #respond {
    padding: 24px 18px;
    border-radius: var(--sg-radius-md);
  }
}

.comment-respond *,
#respond * {
  box-sizing: border-box;
}

.sg-reply-header {
  margin-bottom: 8px;
}

.sg-reply-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sg-teal-dark);
  background: var(--sg-teal-light);
  padding: 4px 12px;
  border-radius: var(--sg-radius-pill);
  margin-bottom: 8px;
  border: 1px solid rgba(0, 184, 169, 0.25);
}

.comment-reply-title,
#reply-title,
#respond #reply-title {
  font-family: var(--sg-font-heading);
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 700;
  color: var(--sg-navy);
  margin: 0 0 8px 0;
  line-height: 1.25;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

#cancel-comment-reply-link,
.sg-cancel-reply-wrap a {
  font-family: var(--sg-font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sg-error);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--sg-transition-fast);
}

#cancel-comment-reply-link:hover,
.sg-cancel-reply-wrap a:hover {
  opacity: 0.75;
}

.comment-notes,
#respond .comment-notes {
  font-size: 0.88rem;
  color: var(--sg-slate);
  margin: 0 0 24px 0;
  line-height: 1.55;
}

.comment-notes .required,
.sg-form-label .required,
.sg-field-label .required,
label .required,
#respond label .required {
  color: var(--sg-teal-dark);
  font-weight: 700;
  margin-left: 2px;
}

/* ==========================================================================
   Comment Form Grid & Elements
   Explicitly clears all floats and creates a balanced responsive grid
   ========================================================================== */

#respond #commentform,
#respond .comment-form,
.comment-respond #commentform,
.comment-respond .comment-form,
.comment-form,
.sg-comment-form {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 20px !important;
  margin: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (min-width: 768px) {
  #respond #commentform,
  #respond .comment-form,
  .comment-respond #commentform,
  .comment-respond .comment-form,
  .comment-form,
  .sg-comment-form {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px 22px !important;
  }
}

/* Force every form group or paragraph to stack vertically and clear floats */
#respond p,
#respond #commentform > p,
#respond .comment-form > p,
.comment-respond p,
.comment-form > p,
.comment-form .sg-form-group {
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  text-align: left !important;
  box-sizing: border-box !important;
}

/* Comment Textarea occupies full grid width */
#respond .comment-form-comment,
.comment-form .comment-form-comment {
  grid-column: 1 / -1 !important;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
}

/* Name, Email, Website: 1 Column each on desktop */
#respond .comment-form-author,
.comment-form .comment-form-author {
  grid-column: 1 !important;
}

#respond .comment-form-email,
.comment-form .comment-form-email {
  grid-column: 2 !important;
}

#respond .comment-form-url,
.comment-form .comment-form-url {
  grid-column: 3 !important;
}

@media (max-width: 767px) {
  #respond .comment-form-author,
  #respond .comment-form-email,
  #respond .comment-form-url,
  .comment-form .comment-form-author,
  .comment-form .comment-form-email,
  .comment-form .comment-form-url {
    grid-column: 1 / -1 !important;
  }
}

/* Cookies consent checkbox spans full width and displays horizontally */
#respond .comment-form-cookies-consent,
.comment-form .comment-form-cookies-consent,
.comment-form .sg-cookies-group {
  grid-column: 1 / -1 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

/* Submit container spans full width */
#respond .form-submit,
.comment-form .form-submit,
.comment-form .sg-submit-group {
  grid-column: 1 / -1 !important;
  margin: 6px 0 0 0 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
}

/* Labels: Clean, elevated, stacked directly above input */
#respond label,
#respond #commentform label,
.comment-respond label,
.comment-form label,
.sg-field-label,
.sg-form-label {
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: var(--sg-navy) !important;
  letter-spacing: 0.01em !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-align: left !important;
  margin: 0 0 4px 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: both !important;
  width: auto !important;
  line-height: 1.3 !important;
}

.sg-label-icon {
  color: var(--sg-teal-dark);
  flex-shrink: 0;
}

/* Inputs & Textarea Styling - Full Width, High-End Border, Pill/Card Softness */
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"],
#respond textarea,
#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"],
#commentform textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
.sg-form-input,
.sg-form-textarea {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  float: none !important;
  clear: both !important;
  box-sizing: border-box !important;
  font-family: var(--sg-font-body);
  font-size: 0.95rem !important;
  color: var(--sg-charcoal) !important;
  background: var(--sg-white) !important;
  border: 1.5px solid var(--sg-border) !important;
  border-radius: var(--sg-radius-md) !important;
  padding: 13px 18px !important;
  line-height: 1.5 !important;
  transition: all var(--sg-transition-fast) !important;
  outline: none !important;
  height: 52px !important;
  min-height: 52px !important;
  box-shadow: 0 2px 6px rgba(26, 43, 95, 0.03) !important;
}

@media (max-width: 640px) {
  #respond input[type="text"],
  #respond input[type="email"],
  #respond input[type="url"],
  #respond textarea,
  #commentform input[type="text"],
  #commentform input[type="email"],
  #commentform input[type="url"],
  #commentform textarea,
  .comment-form input[type="text"],
  .comment-form input[type="email"],
  .comment-form input[type="url"],
  .comment-form textarea,
  .sg-form-input,
  .sg-form-textarea {
    font-size: 16px !important; /* Prevents iOS auto-zoom */
    min-height: 50px !important;
  }
}

#respond input[type="text"]:hover,
#respond input[type="email"]:hover,
#respond input[type="url"]:hover,
#respond textarea:hover,
#commentform input[type="text"]:hover,
#commentform input[type="email"]:hover,
#commentform input[type="url"]:hover,
#commentform textarea:hover,
.comment-form input[type="text"]:hover,
.comment-form input[type="email"]:hover,
.comment-form input[type="url"]:hover,
.comment-form textarea:hover,
.sg-form-input:hover,
.sg-form-textarea:hover {
  border-color: var(--sg-teal) !important;
  background: var(--sg-white) !important;
}

#respond input[type="text"]:focus,
#respond input[type="email"]:focus,
#respond input[type="url"]:focus,
#respond textarea:focus,
#commentform input[type="text"]:focus,
#commentform input[type="email"]:focus,
#commentform input[type="url"]:focus,
#commentform textarea:focus,
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus,
.sg-form-input:focus,
.sg-form-textarea:focus {
  border-color: var(--sg-teal) !important;
  box-shadow: 0 0 0 4px var(--sg-teal-glow) !important;
  background: var(--sg-white) !important;
}

#respond textarea,
#commentform textarea,
.comment-form textarea,
.sg-form-textarea {
  height: auto !important;
  min-height: 140px !important;
  padding: 16px 18px !important;
  resize: vertical !important;
  line-height: 1.6 !important;
}

#respond input::placeholder,
#respond textarea::placeholder,
#commentform input::placeholder,
#commentform textarea::placeholder {
  color: #94A3B8 !important;
  opacity: 1 !important;
}

/* Checkbox Consent */
#respond input[type="checkbox"],
#commentform input[type="checkbox"],
.comment-form input[type="checkbox"],
.sg-checkbox {
  width: 20px !important;
  min-width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  accent-color: var(--sg-teal);
  margin: 0 !important;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 6px;
}

#respond .comment-form-cookies-consent label,
#commentform .comment-form-cookies-consent label,
.comment-form .comment-form-cookies-consent label,
.sg-checkbox-label {
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  color: var(--sg-slate) !important;
  line-height: 1.45 !important;
  cursor: pointer;
  margin: 0 !important;
  display: inline !important;
}

/* Submit Button - Styled as high-contrast teal pill with dark navy text */
#respond input[type="submit"],
#respond button[type="submit"],
#commentform input[type="submit"],
#commentform button[type="submit"],
.comment-form input[type="submit"],
.comment-form button[type="submit"],
.comment-form .form-submit input[type="submit"],
.comment-form .form-submit button[type="submit"],
.sg-comment-submit-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;
  background: var(--sg-teal) !important;
  color: var(--sg-navy-dark) !important;
  font-family: var(--sg-font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  padding: 14px 36px !important;
  border-radius: var(--sg-radius-pill) !important;
  border: none !important;
  cursor: pointer !important;
  transition: all var(--sg-transition-fast) !important;
  box-shadow: 0 4px 14px rgba(0, 184, 169, 0.28) !important;
  height: auto !important;
  min-height: 50px !important;
  width: auto !important;
  text-decoration: none !important;
}

@media (max-width: 640px) {
  #respond input[type="submit"],
  #respond button[type="submit"],
  #commentform input[type="submit"],
  #commentform button[type="submit"],
  .comment-form input[type="submit"],
  .comment-form button[type="submit"],
  .sg-comment-submit-btn {
    width: 100% !important;
  }
}

#respond input[type="submit"]:hover,
#respond button[type="submit"]:hover,
#commentform input[type="submit"]:hover,
#commentform button[type="submit"]:hover,
.comment-form input[type="submit"]:hover,
.comment-form button[type="submit"]:hover,
.sg-comment-submit-btn:hover {
  background: var(--sg-teal-dark) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 143, 131, 0.35) !important;
}

#respond input[type="submit"]:active,
#respond button[type="submit"]:active,
#commentform input[type="submit"]:active,
#commentform button[type="submit"]:active,
.sg-comment-submit-btn:active {
  transform: translateY(0);
}

/* Security & Safe Space Moderation Note */
.sg-comment-moderation-note {
  grid-column: 1 / -1 !important;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  border: 1.5px solid var(--sg-border);
  border-left: 3.5px solid var(--sg-teal);
  border-radius: var(--sg-radius-sm);
  padding: 14px 18px;
  font-size: 0.84rem;
  color: var(--sg-slate);
  line-height: 1.5;
  width: 100%;
  box-sizing: border-box;
}

.sg-note-icon {
  color: var(--sg-teal-dark);
  flex-shrink: 0;
  margin-top: 1px;
}

.sg-submit-arrow {
  transition: transform var(--sg-transition-fast);
}

.comment-form button[type="submit"]:hover .sg-submit-arrow,
.sg-comment-submit-btn:hover .sg-submit-arrow {
  transform: translateX(4px);
}

