/*
Theme Name: CoachDigger Redesign
Theme URI: https://coachdigger.com
Description: Modern, premium fitness directory theme with dark athletic design. Full MyListing/WP Job Manager compatibility, Stripe payments, coach dashboard, SEO optimized with Schema.org structured data.
Version: 2.1.4
Author: CoachDigger Design Team
Author URI: https://coachdigger.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: coachdigger
Domain Path: /languages
Requires at least: 5.0
Tested up to: 6.9
Requires PHP: 7.4
*/

/* ═══════════════════════════════════════════
   COACHDIGGER REDESIGN THEME
   Dark Athletic Premium Design System
   ═══════════════════════════════════════════ */

:root {
  /* CoachDigger Brand Colors - OKLCH Format */
  --cd-orange: #FF6B2B;
  --cd-orange-dark: #E85A1F;
  --cd-surface: #1E2028;
  --cd-surface-2: #252830;
  --cd-surface-3: #2D3040;
  
  /* Theme tokens */
  --background: #111318;
  --foreground: #F0F0F5;
  --card: #1E2028;
  --card-foreground: #F0F0F5;
  --primary: #FF6B2B;
  --primary-foreground: #FFFFFF;
  --secondary: #252830;
  --secondary-foreground: #D9D9E3;
  --muted: #383844;
  --muted-foreground: #999AA3;
  --accent: #FF6B2B;
  --accent-foreground: #FFFFFF;
  --border: rgba(255, 255, 255, 0.08);
  --input: rgba(255, 255, 255, 0.1);
  --radius: 0.5rem;
}

/* ═══════════════════════════════════════════
   BASE STYLES
   ═══════════════════════════════════════════ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--cd-orange-dark);
}

/* ═══════════════════════════════════════════
   SCROLLBAR STYLING
   ═══════════════════════════════════════════ */

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: #383844;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ═══════════════════════════════════════════
   CONTAINER & LAYOUT
   ═══════════════════════════════════════════ */

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1280px;
  }
}

/* ═══════════════════════════════════════════
   BUTTON STYLES
   ═══════════════════════════════════════════ */

button,
.button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-primary,
.button.primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 8px 24px rgba(255, 107, 43, 0.35);
}

.btn-primary:hover,
.button.primary:hover {
  background: var(--cd-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255, 107, 43, 0.45);
}

.btn-secondary,
.button.secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  border: 1px solid var(--border);
}

.btn-secondary:hover,
.button.secondary:hover {
  background: var(--cd-surface-3);
  border-color: var(--primary);
}

/* ═══════════════════════════════════════════
   CUSTOM COMPONENTS
   ═══════════════════════════════════════════ */

.cd-orange-btn {
  background: var(--primary);
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
}

.cd-orange-btn:hover {
  background: var(--cd-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 107, 43, 0.35);
}

.cd-glass-card {
  background: rgba(30, 32, 40, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.cd-sport-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  display: inline-block;
  background: rgba(255, 107, 43, 0.15);
  color: var(--primary);
}

.cd-section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.cd-gradient-text {
  background: linear-gradient(135deg, #FF6B2B, #FFB84D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cd-glow {
  box-shadow: 0 0 20px rgba(255, 107, 43, 0.4), 0 4px 16px rgba(255, 107, 43, 0.2);
}

.cd-glow:hover {
  box-shadow: 0 0 32px rgba(255, 107, 43, 0.6), 0 8px 24px rgba(255, 107, 43, 0.3);
}

.trainer-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.trainer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */

.navbar {
  background: rgba(17, 19, 24, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.navbar-brand span {
  color: var(--primary);
}

.navbar-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar-menu a {
  color: var(--foreground);
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  width: 100%;
}

.navbar-menu a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17, 19, 24, 0.95), rgba(17, 19, 24, 0.75), rgba(17, 19, 24, 0.4));
  z-index: 1;
}

.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 19, 24, 1), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title .highlight {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-search {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-search input {
  flex: 1;
  min-width: 250px;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 1rem;
}

.hero-search input::placeholder {
  color: var(--muted-foreground);
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */

.section {
  padding: 4rem 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

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

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--muted-foreground);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   GRID LAYOUTS
   ═══════════════════════════════════════════ */

.grid {
  display: grid;
  gap: 2rem;
}

.grid > * {
  min-width: 0;
  overflow: hidden;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

/* ═══════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════ */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.25s ease;
}

.card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 107, 43, 0.1);
}

.card-header {
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.card-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  background: var(--cd-surface-3);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
  color: var(--muted-foreground);
}

/* ═══════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 2rem 1rem;
  }
  
  .navbar-container {
    padding: 0 1rem;
  }
}

/* ═══════════════════════════════════════════
   WORDPRESS SPECIFIC
   ═══════════════════════════════════════════ */

.wp-block-image {
  margin: 1.5rem 0;
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.wp-block-button__link {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s ease;
}

.wp-block-button__link:hover {
  background: var(--cd-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 107, 43, 0.35);
}

.wp-block-quote {
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: var(--muted-foreground);
}

.wp-block-separator {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

table th {
  background: var(--secondary);
  padding: 0.75rem;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--border);
}

table td {
  padding: 0.75rem;
  border: 1px solid var(--border);
}

table tbody tr:hover {
  background: rgba(255, 107, 43, 0.05);
}

/* ═══════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════ */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="number"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
  margin-bottom: 1rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 107, 43, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════ */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 2rem; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.hidden {
  display: none;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.gap-5 { gap: 2rem; }


/* ═══════════════════════════════════════════
   NAVBAR ENHANCEMENTS
   ═══════════════════════════════════════════ */

.navbar-scrolled {
  background: rgba(17, 19, 24, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-hidden {
  transform: translateY(-100%);
}

.navbar {
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar-logo-img {
  height: 40px;
  width: auto;
}

.navbar-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: white;
  border-radius: 0.375rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  margin-right: 0.5rem;
}

.navbar-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--foreground);
}

.navbar-logo-accent {
  color: var(--primary);
}

.navbar-nav {
  display: none;
}

@media (min-width: 769px) {
  .navbar-nav {
    display: flex;
  }
}

.navbar-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 769px) {
  .navbar-actions {
    display: flex;
  }
}

.navbar-link {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar-link:hover {
  color: var(--foreground);
}

.navbar-cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* Hamburger */
.navbar-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

@media (min-width: 769px) {
  .navbar-toggle {
    display: none;
  }
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--foreground);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.navbar-toggle.is-active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.is-active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--cd-surface);
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}

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

.mobile-menu-list {
  list-style: none;
  padding: 0;
}

.mobile-menu-list li {
  border-bottom: 1px solid var(--border);
}

.mobile-menu-list a {
  display: block;
  padding: 0.875rem 0;
  color: var(--foreground);
  font-weight: 500;
  transition: color 0.2s ease;
}

.mobile-menu-list a:hover {
  color: var(--primary);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.mobile-menu-link {
  text-align: center;
  color: var(--muted-foreground);
  font-weight: 500;
}

.mobile-menu-cta {
  text-align: center;
}

body.mobile-menu-open {
  overflow: hidden;
}

/* ═══════════════════════════════════════════
   HERO SEARCH BAR
   ═══════════════════════════════════════════ */

.hero-search-bar {
  margin-bottom: 2rem;
}

.hero-search-inputs {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
  flex-wrap: wrap;
}

.hero-search-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  flex: 1;
  min-width: 200px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease;
}

.hero-search-field.is-focused {
  background: rgba(255, 255, 255, 0.04);
}

.hero-search-field input {
  background: transparent;
  border: none;
  color: var(--foreground);
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  padding: 0;
  margin: 0;
}

.hero-search-field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.hero-search-btn {
  padding: 0.875rem 1.5rem;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero-search-inputs {
    flex-direction: column;
  }
  .hero-search-field {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hero-search-btn {
    justify-content: center;
    border-radius: 0 0 0.75rem 0.75rem;
  }
}

/* Hero Tags */
.hero-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-tags-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.hero-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.hero-tag:hover {
  background: rgba(255, 107, 43, 0.15);
  color: var(--primary);
  border-color: rgba(255, 107, 43, 0.3);
}

/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */

.stats-bar {
  background: var(--cd-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-highlight {
  color: var(--primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════
   SECTION HEADER (flex row)
   ═══════════════════════════════════════════ */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-header h2 {
  margin-bottom: 0;
}

.section-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.2s ease;
}

.section-link:hover {
  opacity: 0.8;
}

/* ═══════════════════════════════════════════
   SPORTS GRID
   ═══════════════════════════════════════════ */

.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

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

.sport-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  border-radius: 0.75rem;
  background: var(--cd-surface);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.25s ease;
}

.sport-card:hover {
  border-color: var(--sport-color, var(--primary));
  background: var(--sport-bg, rgba(255, 107, 43, 0.1));
  transform: translateY(-2px);
}

.sport-icon {
  font-size: 1.75rem;
}

.sport-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--foreground);
  text-align: center;
}

/* ═══════════════════════════════════════════
   STEPS GRID
   ═══════════════════════════════════════════ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.step-card {
  background: var(--cd-surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.25s ease;
}

.step-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-desc {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   COACH CTA
   ═══════════════════════════════════════════ */

.coach-cta {
  background: var(--cd-surface);
}

.coach-cta-inner {
  max-width: 700px;
}

.coach-cta-desc {
  color: var(--muted-foreground);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.coach-cta-points {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.coach-cta-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--foreground);
  font-size: 0.95rem;
}

.coach-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════ */

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.25s ease;
}

.blog-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 107, 43, 0.9);
  color: white;
}

.blog-card-content {
  padding: 1.25rem;
}

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  color: var(--foreground);
}

.blog-card-excerpt {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ═══════════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════════ */

.breadcrumbs {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--cd-surface);
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
}

.breadcrumbs a {
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs li:last-child span {
  color: var(--foreground);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   SINGLE POST
   ═══════════════════════════════════════════ */

.single-hero {
  padding: 3rem 0 2rem;
}

.single-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

@media (max-width: 768px) {
  .single-title {
    font-size: 1.75rem;
  }
}

.single-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.single-meta-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.single-meta-author img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.single-meta-author span {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
}

.single-meta-author time {
  display: block;
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

.single-meta-reading {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  background: var(--cd-surface);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.single-featured-image {
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

.single-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.single-content {
  padding-bottom: 3rem;
}

.single-body {
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.single-body h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.single-body h3 {
  font-size: 1.375rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.single-body p {
  margin-bottom: 1.25rem;
}

.single-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.single-body ul,
.single-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.single-body li {
  margin-bottom: 0.5rem;
}

.single-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(255, 107, 43, 0.05);
  border-radius: 0 0.5rem 0.5rem 0;
}

.single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.single-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--cd-surface);
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.single-tag:hover {
  background: rgba(255, 107, 43, 0.15);
  color: var(--primary);
  border-color: rgba(255, 107, 43, 0.3);
}

/* Post Navigation */
.single-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .single-nav {
    grid-template-columns: 1fr;
  }
}

.single-nav-link {
  display: block;
  padding: 1.25rem;
  background: var(--cd-surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.single-nav-link:hover {
  border-color: var(--primary);
}

.single-nav-label {
  display: block;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.single-nav-title {
  display: block;
  font-size: 0.9rem;
  color: var(--foreground);
  font-weight: 500;
}

.single-nav-next {
  text-align: right;
}

/* ═══════════════════════════════════════════
   SINGLE LISTING (Coach Profile)
   ═══════════════════════════════════════════ */

.listing-hero {
  padding: 3rem 0;
}

.listing-hero-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .listing-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.listing-avatar {
  width: 200px;
  height: 200px;
  border-radius: 1rem;
  object-fit: cover;
  border: 3px solid var(--border);
}

.listing-avatar-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 1rem;
  background: var(--cd-surface);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.listing-name {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.listing-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .listing-location {
    justify-content: center;
  }
}

.listing-sports {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .listing-sports {
    justify-content: center;
  }
}

.listing-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .listing-regions {
    justify-content: center;
  }
}

.listing-region-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.15);
  color: #60A5FA;
}

.listing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .listing-actions {
    justify-content: center;
  }
}

.listing-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
}

.listing-content {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--border);
}

.listing-body {
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.listing-qualifications {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.listing-qualifications h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.listing-qual-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.listing-qual-badge {
  font-size: 0.8rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: #4ADE80;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   ARCHIVE / SEARCH
   ═══════════════════════════════════════════ */

.archive-hero {
  padding: 3rem 0 2rem;
}

.archive-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .archive-title {
    font-size: 1.75rem;
  }
}

.archive-desc {
  color: var(--muted-foreground);
  font-size: 1rem;
}

.archive-grid {
  margin-bottom: 3rem;
}

.archive-pagination {
  padding: 2rem 0 3rem;
  text-align: center;
}

.archive-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  background: var(--cd-surface);
  border: 1px solid var(--border);
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
}

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

/* Search Form */
.search-form-wrapper {
  margin-bottom: 2rem;
}

.search-form-inline {
  display: block;
}

.search-input-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cd-surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
}

.search-input-group input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--foreground);
  font-size: 1rem;
  outline: none;
  padding: 0.5rem 0;
  margin: 0;
}

.search-input-group button {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* ═══════════════════════════════════════════
   PAGE TEMPLATE
   ═══════════════════════════════════════════ */

.page-hero {
  padding: 3rem 0 2rem;
}

.page-title {
  font-size: 2.5rem;
}

.page-content {
  padding-bottom: 3rem;
}

.page-body {
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.page-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* ═══════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════ */

.final-cta {
  padding: 5rem 2rem;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .final-cta h2 {
    font-size: 1.75rem;
  }
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   FOOTER ENHANCEMENTS
   ═══════════════════════════════════════════ */

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: white;
  border-radius: 0.375rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
}

.footer-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.footer-logo-accent {
  color: var(--primary);
}

.footer-tagline {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-foreground);
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  background: var(--primary);
  color: white;
}

.footer-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact {
  margin-top: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-contact-item a {
  color: var(--muted-foreground);
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: var(--muted-foreground);
  font-size: 0.8rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--muted-foreground);
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--primary);
}

/* ═══════════════════════════════════════════
   COMMENTS
   ═══════════════════════════════════════════ */

.comments-area {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.comments-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment-list .comment {
  padding: 1.5rem;
  background: var(--cd-surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.comment-list .comment .avatar {
  border-radius: 50%;
  float: left;
  margin-right: 1rem;
}

.comment-author {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.comment-metadata {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.comment-content p {
  color: var(--foreground);
}

.comment-respond {
  margin-top: 2rem;
}

.comment-form label {
  font-weight: 500;
}

.comment-form .submit {
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */

.animate-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.grid .animate-in:nth-child(2) { transition-delay: 0.1s; }
.grid .animate-in:nth-child(3) { transition-delay: 0.2s; }
.grid .animate-in:nth-child(4) { transition-delay: 0.3s; }
.grid .animate-in:nth-child(5) { transition-delay: 0.4s; }
.grid .animate-in:nth-child(6) { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════
   SKIP LINK & ACCESSIBILITY
   ═══════════════════════════════════════════ */

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: fixed;
  top: 5px;
  left: 5px;
  z-index: 100000;
  width: auto;
  height: auto;
  padding: 1rem 1.5rem;
  background: var(--primary);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  clip: auto;
  text-decoration: none;
}

/* Focus styles */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════
   WOOCOMMERCE PAGES
   ═══════════════════════════════════════════ */

.woocommerce-page .site-main {
  padding: 2rem 0;
}

.woocommerce .products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.woocommerce .product {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.25s ease;
}

.woocommerce .product:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.woocommerce .product img {
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.woocommerce .price {
  color: var(--primary);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

/* ═══════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════ */

@media print {
  .navbar,
  .footer,
  .breadcrumbs,
  .single-nav,
  .related-posts,
  .related-coaches,
  .final-cta,
  .stats-bar {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .single-body,
  .listing-body,
  .page-body {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════
   LISTING CARDS (Directory Grid)
   ═══════════════════════════════════════════ */

.listing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.25s ease;
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.listing-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.listing-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.listing-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cd-surface-2);
}

.listing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
  max-width: 100%;
}

.listing-card:hover .listing-card-image img {
  transform: scale(1.05);
}

.listing-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cd-surface-2), var(--cd-surface-3));
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--muted-foreground);
}

.listing-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  pointer-events: none;
}

.listing-card-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  gap: 0.375rem;
  z-index: 2;
}

.listing-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.listing-badge-verified {
  background: rgba(34, 197, 94, 0.9);
  color: white;
}

.listing-badge-featured {
  background: rgba(255, 107, 43, 0.9);
  color: white;
}

.listing-card-content {
  padding: 1.25rem;
}

.listing-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  line-height: 1.3;
  color: var(--foreground);
}

.listing-card-location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--muted-foreground);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.listing-card-tagline {
  color: var(--muted-foreground);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.listing-tag {
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 107, 43, 0.1);
  color: var(--primary);
  border: 1px solid rgba(255, 107, 43, 0.2);
  font-weight: 500;
}

.listing-tag-more {
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-foreground);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   SINGLE LISTING - COVER BANNER
   ═══════════════════════════════════════════ */

.listing-cover {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.listing-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 19, 24, 0.3), rgba(17, 19, 24, 0.85));
}

.listing-hero.has-cover {
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

.listing-hero.has-cover .listing-avatar {
  border: 4px solid var(--background);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Avatar placeholder with initials */
.listing-avatar-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--cd-surface-2), var(--cd-surface-3));
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.listing-avatar-placeholder span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--muted-foreground);
  text-transform: uppercase;
}

/* Verified badge on avatar */
.listing-photo {
  position: relative;
  display: inline-block;
}

.listing-verified-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: white;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Featured tag */
.listing-featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 107, 43, 0.15);
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Tagline */
.listing-tagline {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Social links row */
.listing-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.listing-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-foreground);
  transition: all 0.2s ease;
}

.listing-social-link:hover {
  background: var(--primary);
  color: white;
}

/* ═══════════════════════════════════════════
   SINGLE LISTING - CONTENT GRID (body + sidebar)
   ═══════════════════════════════════════════ */

.listing-content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 968px) {
  .listing-content-grid {
    grid-template-columns: 1fr;
  }
}

.listing-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.listing-sidebar-section {
  background: var(--cd-surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.listing-sidebar-section h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
}

.listing-contact-card {
  border-color: rgba(255, 107, 43, 0.3);
  background: rgba(255, 107, 43, 0.05);
}

/* Gallery grid */
.listing-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.listing-gallery-item {
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 1;
}

.listing-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.listing-gallery-item:hover img {
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════
   DASHBOARD NOTICE
   ═══════════════════════════════════════════ */

.cd-dash-notice {
  padding: 0.875rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.cd-notice-success {
  background: rgba(34, 197, 94, 0.15);
  color: #4ADE80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.cd-notice-error {
  background: rgba(239, 68, 68, 0.15);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ═══════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════ */

.error-404 {
  text-align: center;
  padding: 5rem 2rem;
}

.error-code {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.error-404 h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.error-404 p {
  color: var(--muted-foreground);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.error-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   SPORT ICON SVG SIZING
   ═══════════════════════════════════════════ */

.sport-icon svg {
  display: block;
}

.cd-sport-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.cd-sport-badge svg {
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   HERO BACKGROUND IMAGE
   ═══════════════════════════════════════════ */

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 19, 24, 0.75), rgba(17, 19, 24, 0.95));
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════
   LISTING FILTERS (Directory Search)
   ═══════════════════════════════════════════ */

.listing-filters {
  padding: 0 0 2rem;
}

.listing-filter-form {
  background: var(--cd-surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.5rem;
}

.listing-filter-row {
  display: flex;
  gap: 0;
  align-items: stretch;
  flex-wrap: wrap;
}

.listing-filter-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  flex: 1;
  min-width: 180px;
  border-right: 1px solid var(--border);
  color: var(--muted-foreground);
}

.listing-filter-field:last-of-type {
  border-right: none;
}

.listing-filter-field input,
.listing-filter-field select {
  background: transparent;
  border: none;
  color: var(--foreground);
  font-size: 0.9rem;
  width: 100%;
  outline: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.listing-filter-field input::placeholder {
  color: var(--muted-foreground);
}

.listing-filter-select {
  position: relative;
}

.listing-filter-select::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--muted-foreground);
  pointer-events: none;
}

.listing-filter-select select {
  padding-right: 1.5rem;
  cursor: pointer;
}

.listing-filter-form .cd-orange-btn {
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
}

.listing-results-meta {
  margin-bottom: 1.5rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.listing-results-meta strong {
  color: var(--foreground);
}

@media (max-width: 768px) {
  .listing-filter-row {
    flex-direction: column;
  }
  .listing-filter-field {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .listing-filter-field:last-of-type {
    border-bottom: none;
  }
  .listing-filter-form .cd-orange-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.25rem;
  }
}


/* ═══════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════ */

.faq-section {
  background: var(--background);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--cd-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════
   CTA SECTIONS
   ═══════════════════════════════════════════ */

.cta-section {
  background: var(--cd-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-content {
  max-width: 700px;
}

.cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--foreground);
}

.cta-final {
  background: linear-gradient(135deg, rgba(255,107,43,0.08) 0%, var(--cd-surface) 50%, rgba(255,107,43,0.05) 100%);
}

.cta-final .cta-content {
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   OUTLINE BUTTON
   ═══════════════════════════════════════════ */

.cd-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--cd-orange);
  color: var(--cd-orange);
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cd-outline-btn:hover {
  background: rgba(255,107,43,0.1);
  color: var(--cd-orange);
}

/* ═══════════════════════════════════════════
   SECTION TITLE (centered variant)
   ═══════════════════════════════════════════ */

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.section-title .section-desc {
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   FOOTER SEO TEXT
   ═══════════════════════════════════════════ */

.footer-copyright-sub {
  display: block;
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════
   RESPONSIVE: FAQ & CTA
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
  .cta-features {
    grid-template-columns: 1fr;
  }
  .faq-question h3 {
    font-size: 0.9rem;
  }
}


/* ============================================================
   BLOG ARCHIVE v2.1.3
   ============================================================ */
.blog-hero { padding: 5rem 0 3rem; background: linear-gradient(135deg,#0d0d0d 0%,#1a1a1a 100%); border-bottom: 1px solid rgba(255,255,255,0.06); }
.blog-hero-inner { max-width: 680px; }
.blog-hero-title { font-size: clamp(2rem,5vw,3rem); font-weight: 800; color: #fff; line-height: 1.15; margin: 0.5rem 0 1rem; }
.blog-hero-desc { color: rgba(255,255,255,0.6); font-size: 1.05rem; line-height: 1.7; margin: 0; }
.blog-categories-bar { padding: 1.25rem 0; background: #111; border-bottom: 1px solid rgba(255,255,255,0.06); }
.blog-cat-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.blog-cat-pill { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.35rem 0.85rem; border-radius: 100px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.65); font-size: 0.82rem; font-weight: 500; text-decoration: none; transition: background 0.2s,color 0.2s; border: 1px solid transparent; }
.blog-cat-pill:hover,.blog-cat-pill.active { background: rgba(255,107,43,0.15); color: #FF6B2B; border-color: rgba(255,107,43,0.3); }
.blog-cat-count { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); font-size: 0.72rem; padding: 0.1rem 0.4rem; border-radius: 100px; }
.blog-archive-wrap { padding: 3rem 0 4rem; }
.blog-posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media (max-width:900px) { .blog-posts-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:600px) { .blog-posts-grid { grid-template-columns: 1fr; } }
.blog-post-card { background: #1a1a1a; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,0.07); transition: transform 0.2s,border-color 0.2s; }
.blog-post-card:hover { transform: translateY(-3px); border-color: rgba(255,107,43,0.3); }
.blog-post-featured { grid-column: 1/-1; flex-direction: row; }
@media (max-width:700px) { .blog-post-featured { flex-direction: column; } }
.blog-post-thumb { position: relative; display: block; overflow: hidden; background: #111; flex-shrink: 0; }
.blog-post-card:not(.blog-post-featured) .blog-post-thumb { height: 200px; }
.blog-post-featured .blog-post-thumb { width: 45%; min-height: 300px; }
@media (max-width:700px) { .blog-post-featured .blog-post-thumb { width: 100%; min-height: 220px; } }
.blog-post-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.blog-post-card:hover .blog-post-img { transform: scale(1.04); }
.blog-post-img-placeholder { width: 100%; height: 100%; min-height: 200px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,#1a1a1a,#222); }
.blog-post-cat-badge { position: absolute; top: 0.75rem; left: 0.75rem; background: #FF6B2B; color: #fff; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.2rem 0.6rem; border-radius: 4px; }
.blog-post-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.blog-post-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.blog-post-date,.blog-post-read-time { display: flex; align-items: center; gap: 0.35rem; color: rgba(255,255,255,0.4); font-size: 0.78rem; }
.blog-post-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin: 0 0 0.6rem; line-height: 1.35; }
.blog-post-featured .blog-post-title { font-size: 1.4rem; }
.blog-post-title a { color: inherit; text-decoration: none; }
.blog-post-title a:hover { color: #FF6B2B; }
.blog-post-excerpt { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.65; margin: 0 0 auto; padding-bottom: 1rem; }
.blog-post-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.07); margin-top: auto; }
.blog-post-author { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.blog-post-author-avatar { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
.blog-post-read-link { display: flex; align-items: center; gap: 0.35rem; color: #FF6B2B; font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: gap 0.2s; }
.blog-post-read-link:hover { gap: 0.6rem; }
.blog-pagination { margin-top: 2.5rem; display: flex; justify-content: center; }
.blog-pagination .nav-links { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; justify-content: center; }
.blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); font-size: 0.88rem; font-weight: 500; text-decoration: none; transition: background 0.2s,color 0.2s; }
.blog-pagination .page-numbers:hover,.blog-pagination .page-numbers.current { background: #FF6B2B; color: #fff; }
.blog-pagination .prev,.blog-pagination .next { width: auto; padding: 0 1rem; gap: 0.4rem; }
.blog-empty { text-align: center; padding: 5rem 1rem; color: rgba(255,255,255,0.4); }
.blog-empty h2 { color: #fff; margin: 1rem 0 0.5rem; }
.blog-empty p { margin-bottom: 1.5rem; }
.blog-cta-strip { padding: 3rem 0; background: linear-gradient(135deg,#1a1a1a,#111); border-top: 1px solid rgba(255,255,255,0.06); }
.blog-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.blog-cta-copy h3 { color: #fff; font-size: 1.3rem; font-weight: 700; margin: 0 0 0.35rem; }
.blog-cta-copy p { color: rgba(255,255,255,0.55); margin: 0; }

/* ============================================================
   ABOUT US PAGE v2.1.3
   ============================================================ */
.about-hero { padding: 5rem 0 4rem; background: linear-gradient(135deg,#0d0d0d 0%,#1a1a1a 60%,#0d0d0d 100%); border-bottom: 1px solid rgba(255,255,255,0.06); }
.about-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width:768px) { .about-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-hero-title { font-size: clamp(2rem,4.5vw,3rem); font-weight: 800; color: #fff; line-height: 1.15; margin: 0.5rem 0 1rem; }
.about-hero-accent { color: #FF6B2B; display: block; }
.about-hero-desc { color: rgba(255,255,255,0.6); font-size: 1.05rem; line-height: 1.7; margin: 0 0 2rem; }
.about-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.about-hero-secondary-btn { display: inline-flex; align-items: center; padding: 0.75rem 1.5rem; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; color: rgba(255,255,255,0.8); font-weight: 600; text-decoration: none; transition: border-color 0.2s,color 0.2s; }
.about-hero-secondary-btn:hover { border-color: #FF6B2B; color: #FF6B2B; }
.about-hero-visual { display: flex; flex-direction: column; gap: 1rem; }
.about-hero-card { display: flex; align-items: center; gap: 1.25rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 1.25rem 1.5rem; transition: border-color 0.2s; }
.about-hero-card:hover { border-color: rgba(255,107,43,0.3); }
.about-hero-card-text { display: flex; flex-direction: column; }
.about-hero-card-text strong { font-size: 1.5rem; font-weight: 800; color: #fff; }
.about-hero-card-text span { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.about-mission { padding: 5rem 0; }
.about-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width:768px) { .about-mission-grid { grid-template-columns: 1fr; } }
.about-section-title { font-size: clamp(1.5rem,3.5vw,2.2rem); font-weight: 800; color: #fff; margin: 0.5rem 0 1.25rem; line-height: 1.25; }
.about-mission-content p { color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 1rem; }
.about-mission-points { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: 0.75rem; }
.about-mission-points li { display: flex; align-items: flex-start; gap: 0.75rem; color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.about-mission-points li svg { flex-shrink: 0; margin-top: 2px; }
.about-mission-visual { display: flex; align-items: center; justify-content: center; }
.about-mission-badge { width: 220px; height: 220px; border-radius: 50%; border: 2px solid rgba(255,107,43,0.3); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; text-align: center; padding: 2rem; background: radial-gradient(circle,rgba(255,107,43,0.05) 0%,transparent 70%); }
.about-mission-badge-text { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.4; }
.about-stats { padding: 3rem 0; background: #FF6B2B; }
.about-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
@media (max-width:768px) { .about-stats-grid { grid-template-columns: repeat(2,1fr); } }
.about-stat-item { display: flex; flex-direction: column; gap: 0.35rem; }
.about-stat-number { font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1; }
.about-stat-plus { font-size: 1.5rem; }
.about-stat-label { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; }
.about-values { padding: 5rem 0; background: #111; }
.about-section-header { text-align: center; margin-bottom: 3rem; }
.about-values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
@media (max-width:600px) { .about-values-grid { grid-template-columns: 1fr; } }
.about-value-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 2rem; transition: border-color 0.2s,background 0.2s; }
.about-value-card:hover { border-color: rgba(255,107,43,0.3); background: rgba(255,107,43,0.04); }
.about-value-icon { margin-bottom: 1rem; }
.about-value-card h3 { color: #fff; font-size: 1.1rem; font-weight: 700; margin: 0 0 0.6rem; }
.about-value-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; margin: 0; }
.about-how { padding: 5rem 0; }
.about-steps-grid { display: flex; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
.about-step { flex: 1; min-width: 200px; }
.about-step-num { font-size: 3rem; font-weight: 900; color: rgba(255,107,43,0.2); line-height: 1; margin-bottom: 0.75rem; }
.about-step h3 { color: #fff; font-size: 1.15rem; font-weight: 700; margin: 0 0 0.6rem; }
.about-step p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; margin: 0; }
.about-step-divider { display: flex; align-items: center; padding-top: 2.5rem; }
.about-cta { padding: 5rem 0; background: linear-gradient(135deg,#1a1a1a,#111); border-top: 1px solid rgba(255,255,255,0.06); }
.about-cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.about-cta-inner h2 { font-size: clamp(1.5rem,3.5vw,2.2rem); font-weight: 800; color: #fff; margin: 0 0 0.75rem; }
.about-cta-inner p { color: rgba(255,255,255,0.6); margin: 0 0 2rem; font-size: 1.05rem; }
.about-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.about-cta-coach-btn { display: inline-flex; align-items: center; padding: 0.75rem 1.5rem; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; color: rgba(255,255,255,0.8); font-weight: 600; text-decoration: none; transition: border-color 0.2s,color 0.2s; }
.about-cta-coach-btn:hover { border-color: #FF6B2B; color: #FF6B2B; }

/* ============================================================
   FOOTER NEWSLETTER BAR v2.1.3
   ============================================================ */
.footer-newsletter-bar { background: rgba(255,107,43,0.08); border-bottom: 1px solid rgba(255,107,43,0.15); padding: 2rem 0; }
.footer-newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-newsletter-title { color: #fff; font-size: 1.1rem; font-weight: 700; margin: 0 0 0.25rem; }
.footer-newsletter-sub { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin: 0; }
.footer-newsletter-form { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-newsletter-input { padding: 0.65rem 1rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); color: #fff; font-size: 0.9rem; min-width: 240px; transition: border-color 0.2s; }
.footer-newsletter-input:focus { outline: none; border-color: #FF6B2B; }
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter-btn { padding: 0.65rem 1.25rem; font-size: 0.9rem; }
.footer-logo-wordmark { display: flex; align-items: center; gap: 0.5rem; }
.footer-logo-text { font-size: 1.2rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.footer-logo-accent { color: #FF6B2B; }
