/* ============================================
   FOREVER TENNIS — SHARED SITE STYLES
   Premium Racquet Sports Pro Shop
   ============================================ */

:root {
  --forest: #111111;
  --forest-deep: #0A0A0A;
  --sage: #2980C4;
  --sage-light: #3A94D9;
  --gold: #2980C4;
  --gold-bright: #3A94D9;
  --gold-muted: #1F6DAD;
  --brand-green: #80b817;
  --brand-green-bright: #95cf28;

  --cream: #F5F6F8;
  --cream-warm: #EBEDF1;
  --white: #FFFFFF;
  --gray-100: #F0F1F3;
  --gray-200: #DDDFE3;
  --gray-300: #B5B9C1;
  --gray-400: #7D828C;
  --gray-500: #5C616B;
  --gray-600: #3E424A;
  --gray-700: #2A2D33;
  --black: #0A0A0A;

  --font-display: 'Poppins', -apple-system, sans-serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --section-pad: clamp(60px, 8vw, 120px);
  --container: min(1280px, 90vw);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- UTILITY ---- */
.container { width: var(--container); margin: 0 auto; }

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--forest-deep);
  letter-spacing: -0.5px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--white);
  isolation: isolate;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--forest-deep);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: var(--gold); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary svg { position: relative; z-index: 1; transition: transform 0.35s ease; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: all 0.35s ease;
}

.btn-outline:hover { background: var(--white); color: var(--forest-deep); border-color: var(--white); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.35s ease;
}
.btn-dark:hover { background: var(--forest-deep); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: transparent;
  color: var(--forest-deep);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid var(--gray-300);
  transition: all 0.35s ease;
}
.btn-ghost:hover { border-color: var(--forest); color: var(--forest); }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.topbar {
  background: #000000;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: var(--gold); transition: color 0.3s; }
.topbar a:hover { color: var(--gold-bright); }
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-divider { width: 1px; height: 12px; background: rgba(255,255,255,0.15); }

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0A0A0A;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 80px;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 52px; width: auto; object-fit: contain; }

nav { display: flex; align-items: center; gap: 6px; }

nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

nav a:hover { color: #FFFFFF; }
nav a:hover::after { transform: scaleX(1); }
nav a.active { color: #FFFFFF; }
nav a.active::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 12px;
  padding: 12px 28px;
  background: #2980C4;
  color: var(--white) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.3s;
}
.nav-cta:hover { background: #3A94D9; }
.nav-cta::after { display: none; }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-toggle span { width: 24px; height: 2px; background: #FFFFFF; transition: all 0.3s; }

/* ============================================
   HERO (HOME) / PAGE HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--forest-deep);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.72) 50%, rgba(10,10,10,0.55) 100%);
  z-index: 1;
}
.hero-image { position: absolute; inset: 0; z-index: 0; }
.hero-image-placeholder { width: 100%; height: 100%; background: #0A0A0A; }
.hero-image-placeholder img,
.hero-image-placeholder video { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(200,169,94,0.15);
  border: 1px solid rgba(200,169,94,0.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.8s ease both;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 28px;
  letter-spacing: -1px;
  animation: fadeSlideUp 0.8s 0.15s ease both;
}
.hero h1 em { font-style: normal; font-weight: 800; color: #3A94D9; }

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}

.hero-features { display: flex; flex-wrap: wrap; gap: 20px 36px; margin-bottom: 44px; animation: fadeSlideUp 0.8s 0.4s ease both; }
.hero-feature { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; }
.hero-feature-icon { width: 28px; height: 28px; background: rgba(200,169,94,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hero-feature-icon svg { width: 14px; height: 14px; color: var(--gold); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; animation: fadeSlideUp 0.8s 0.5s ease both; }

.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3); font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; animation: pulse 2s infinite;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); }

/* Compact page hero (for inner pages) */
.page-hero {
  position: relative;
  background: var(--forest-deep);
  color: var(--white);
  padding: 96px 0 80px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(41,128,196,0.12) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .hero-badge { margin-bottom: 24px; animation: fadeSlideUp 0.8s ease both; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  max-width: 840px;
  margin-bottom: 20px;
  letter-spacing: -1px;
  animation: fadeSlideUp 0.8s 0.15s ease both;
}
.page-hero h1 em { font-style: normal; color: var(--gold-bright); font-weight: 800; }
.page-hero p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}

.breadcrumbs { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 32px; color: rgba(255,255,255,0.45); animation: fadeSlideUp 0.8s ease both; }
.breadcrumbs a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.breadcrumbs a:hover { color: var(--gold-bright); }
.breadcrumbs span { margin: 0 10px; color: rgba(255,255,255,0.3); }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar { background: var(--forest); padding: 0; overflow: hidden; }
.trust-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  padding: 36px 32px; display: flex; align-items: center; gap: 18px;
  border-right: 1px solid rgba(255,255,255,0.08); transition: background 0.3s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,0.04); }
.trust-icon {
  flex-shrink: 0; width: 48px; height: 48px; background: rgba(200,169,94,0.12);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 22px; height: 22px; color: var(--gold); }
.trust-text h4 { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 2px; letter-spacing: -0.2px; }
.trust-text p { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.3px; }

/* ============================================
   DIFFERENTIATORS / FEATURE CARDS
   ============================================ */
.differentiators { padding: var(--section-pad) 0; background: var(--cream); }
.diff-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.diff-header .section-title { font-size: clamp(36px, 4vw, 52px); margin-top: 16px; margin-bottom: 20px; }
.diff-header p { font-size: 16px; color: var(--gray-500); line-height: 1.7; }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.diff-card {
  background: var(--white); border: 1px solid var(--gray-200); transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.diff-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.diff-card-image { width: 100%; aspect-ratio: 16/10; overflow: hidden; background: var(--cream-warm); }
.diff-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.diff-card:hover .diff-card-image img { transform: scale(1.05); }
.diff-card-body { padding: 28px 32px 32px; }
.diff-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--forest-deep); margin-bottom: 10px; letter-spacing: -0.3px; }
.diff-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }
.diff-card .card-tag { display: inline-block; margin-top: 14px; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-muted); }

/* ============================================
   SPLIT LAYOUT (stringing, content+image)
   ============================================ */
.stringing { padding: var(--section-pad) 0; background: var(--white); }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-image { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.split-image-placeholder { width: 100%; height: 100%; overflow: hidden; }
.split-image-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.split-image-accent { position: absolute; top: -20px; right: -20px; width: 120px; height: 120px; border: 2px solid var(--gold); opacity: 0.3; }
.split-content .section-label { margin-bottom: 16px; }
.split-content .section-title { font-size: clamp(32px, 3.5vw, 46px); margin-bottom: 24px; }
.split-content > p { font-size: 16px; color: var(--gray-500); line-height: 1.7; margin-bottom: 32px; }

.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.price-card { padding: 24px; background: var(--cream); border: 1px solid var(--gray-200); }
.price-card h4 { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.price-card .price { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--forest-deep); }
.price-card .price small { font-size: 14px; font-weight: 400; color: var(--gray-400); }
.price-card p { font-size: 12px; color: var(--gray-400); margin-top: 4px; }
.price-card.featured { background: var(--forest); border-color: var(--forest); }
.price-card.featured h4 { color: var(--gold); }
.price-card.featured .price { color: var(--white); }
.price-card.featured .price small { color: rgba(255,255,255,0.5); }
.price-card.featured p { color: rgba(255,255,255,0.5); }

.guarantee-badge {
  display: flex; align-items: center; gap: 12px; padding: 16px 20px;
  background: rgba(41,128,196,0.08); border-left: 3px solid var(--gold); margin-bottom: 32px;
}
.guarantee-badge p { font-size: 14px; font-weight: 500; color: var(--forest-deep); }
.guarantee-badge p strong { color: var(--gold-muted); }

/* ============================================
   DEMO PROGRAM
   ============================================ */
.demo-program { padding: var(--section-pad) 0; background: var(--forest-deep); position: relative; overflow: hidden; }
.demo-program::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(41,128,196,0.08) 0%, transparent 70%); border-radius: 50%;
}
.demo-header { text-align: center; max-width: 640px; margin: 0 auto 64px; position: relative; z-index: 1; }
.demo-header .section-label { color: var(--gold); }
.demo-header .section-title { font-size: clamp(36px, 4vw, 52px); color: var(--white); margin-top: 16px; margin-bottom: 20px; }
.demo-header p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.7; }

.demo-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; z-index: 1; }
.demo-step { text-align: center; padding: 40px 32px; position: relative; }
.demo-step-number { font-family: var(--font-display); font-size: 64px; font-weight: 800; color: rgba(41,128,196,0.15); line-height: 1; margin-bottom: 20px; }
.demo-step-icon {
  width: 64px; height: 64px; background: rgba(41,128,196,0.12);
  border: 1px solid rgba(41,128,196,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.demo-step-icon svg { width: 28px; height: 28px; color: var(--gold-bright); }
.demo-step h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.demo-step p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

.demo-pricing { text-align: center; margin-top: 48px; position: relative; z-index: 1; }
.demo-pricing-box {
  display: inline-flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: center;
  padding: 28px 48px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}
.demo-price-item { text-align: center; }
.demo-price-item .amount { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--gold-bright); }
.demo-price-item .label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.demo-price-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
.demo-cta { margin-top: 36px; position: relative; z-index: 1; text-align: center; }

/* ============================================
   SERVICES CARDS
   ============================================ */
.services { padding: var(--section-pad) 0; background: var(--cream); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 40px; }
.services-header-left { max-width: 500px; }
.services-header .section-title { font-size: clamp(32px, 3.5vw, 46px); margin-top: 16px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { background: var(--white); overflow: hidden; border: 1px solid var(--gray-200); transition: all 0.4s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.08); }
.service-card-image { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-warm); }
.service-card-image-placeholder { width: 100%; height: 100%; overflow: hidden; }
.service-card-image-placeholder img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-image-placeholder img { transform: scale(1.05); }
.service-card-body { padding: 28px 24px; }
.service-card-body h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--forest-deep); margin-bottom: 8px; }
.service-card-body p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold-muted); transition: gap 0.3s;
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 14px; height: 14px; }

/* ============================================
   TOURNAMENT / COMMUNITY
   ============================================ */
.tournament { padding: var(--section-pad) 0; background: var(--white); overflow: hidden; }
.tournament-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.tournament-content .section-title { font-size: clamp(32px, 3.5vw, 46px); margin-top: 16px; margin-bottom: 24px; }
.tournament-content > p { font-size: 16px; color: var(--gray-500); line-height: 1.7; margin-bottom: 32px; }
.tournament-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 36px; }
.stat-item { text-align: center; padding: 24px 16px; background: var(--cream); }
.stat-number { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--forest-deep); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; }
.tournament-images { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; }
.tournament-images .img-placeholder { overflow: hidden; min-height: 180px; background: var(--cream-warm); }
.tournament-images .img-placeholder:first-child { grid-row: 1 / 3; min-height: 376px; }
.tournament-images .img-placeholder img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   BEGINNER / STYLED-LIST SECTION
   ============================================ */
.beginners { padding: var(--section-pad) 0; background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); }
.beginners-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: center; }
.beginners-visual { position: relative; }
.beginners-image-placeholder { aspect-ratio: 3/4; overflow: hidden; background: var(--cream-warm); }
.beginners-image-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.beginners-float-card {
  position: absolute; bottom: -20px; right: -30px; background: var(--forest); color: var(--white);
  padding: 28px 32px; max-width: 240px;
}
.beginners-float-card h4 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.beginners-float-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.beginners-content .section-title { font-size: clamp(32px, 3.5vw, 46px); margin-top: 16px; margin-bottom: 24px; }
.beginners-content > p { font-size: 16px; color: var(--gray-500); line-height: 1.7; margin-bottom: 32px; }
.beginners-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.beginners-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--gray-600); }
.beginners-list li svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--sage); margin-top: 2px; }

/* ============================================
   BRANDS
   ============================================ */
.brands { padding: 56px 0; background: var(--white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.brands-label { text-align: center; margin-bottom: 36px; }
.brands-grid { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 28px 44px; }
.brand-logo { display: flex; align-items: center; justify-content: center; opacity: 0.35; transition: opacity 0.3s; }
.brand-logo:hover { opacity: 0.8; }
.brand-logo svg { height: 24px; width: auto; }
.brand-logo--text { font-family: var(--font-body); font-size: 15px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--black); }
.brand-logo--script { font-family: Georgia, 'Times New Roman', serif; font-size: 22px; font-weight: 700; font-style: italic; letter-spacing: 1px; color: var(--black); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: var(--section-pad) 0; background: var(--cream); }
.testimonials-header { text-align: center; max-width: 500px; margin: 0 auto 56px; }
.testimonials-header .section-title { font-size: clamp(32px, 3.5vw, 46px); margin-top: 16px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--white); padding: 40px 32px; border: 1px solid var(--gray-200); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 20px; }
.testimonial-stars svg { width: 16px; height: 16px; color: var(--gold); }
.testimonial-card blockquote { font-family: var(--font-display); font-size: 18px; font-weight: 400; font-style: italic; line-height: 1.6; color: var(--gray-600); margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; background: var(--cream-warm); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--forest);
}
.testimonial-author-info h5 { font-size: 14px; font-weight: 600; color: var(--forest-deep); }
.testimonial-author-info p { font-size: 12px; color: var(--gray-400); }

/* ============================================
   WHY US (Icon row)
   ============================================ */
.why-us { padding: 64px 0; background: var(--forest); }
.why-us-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; text-align: center; }
.why-us-item { padding: 24px 16px; }
.why-us-item svg { width: 32px; height: 32px; color: var(--gold); margin-bottom: 16px; }
.why-us-item h4 { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.why-us-item p { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner { padding: var(--section-pad) 0; background: var(--cream-warm); text-align: center; }
.cta-banner .section-title { font-size: clamp(36px, 4vw, 56px); margin-top: 16px; margin-bottom: 20px; }
.cta-banner p { font-size: 16px; color: var(--gray-500); max-width: 500px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   INNER PAGE CONTENT BLOCKS
   ============================================ */
.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--forest-deep); color: var(--white); }
.section--forest { background: var(--forest); color: var(--white); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

.section-intro { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-intro .section-title { font-size: clamp(32px, 4vw, 48px); margin-top: 14px; margin-bottom: 18px; }
.section-intro p { font-size: 16px; color: var(--gray-500); line-height: 1.7; }
.section--dark .section-intro .section-title,
.section--forest .section-intro .section-title { color: var(--white); }
.section--dark .section-intro p,
.section--forest .section-intro p { color: rgba(255,255,255,0.6); }

.prose { max-width: 780px; margin: 0 auto; }
.prose h2 {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2; color: var(--forest-deep); margin: 48px 0 18px; letter-spacing: -0.4px;
}
.prose h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--forest-deep); margin: 32px 0 12px; }
.prose p { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 18px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 22px; color: var(--gray-600); }
.prose li { margin-bottom: 10px; line-height: 1.7; }

/* Pricing rows */
.price-table {
  display: grid; gap: 16px; margin: 24px 0 8px;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  align-items: center;
}
.price-row--dark { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); color: var(--white); }
.price-row h4 { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--forest-deep); margin-bottom: 2px; letter-spacing: -0.2px; }
.price-row--dark h4 { color: var(--white); }
.price-row .sub { font-size: 13px; color: var(--gray-500); }
.price-row--dark .sub { color: rgba(255,255,255,0.55); }
.price-row .rate { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gold-muted); white-space: nowrap; }
.price-row--dark .rate { color: var(--gold-bright); }

/* Feature grid (three-column cards on inner pages) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.section--dark .feature-card,
.section--forest .feature-card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
}
.feature-card .feature-icon {
  width: 48px; height: 48px; background: rgba(41,128,196,0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature-card .feature-icon svg { width: 22px; height: 22px; color: var(--gold-bright); }
.feature-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--forest-deep); margin-bottom: 10px; letter-spacing: -0.2px; }
.section--dark .feature-card h3,
.section--forest .feature-card h3 { color: var(--white); }
.feature-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }
.section--dark .feature-card p,
.section--forest .feature-card p { color: rgba(255,255,255,0.6); }

/* Brand chips */
.brand-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 32px; }
.brand-chip {
  padding: 8px 16px;
  background: rgba(41,128,196,0.08);
  border: 1px solid rgba(41,128,196,0.25);
  color: var(--gold-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.section--dark .brand-chip,
.section--forest .brand-chip {
  background: rgba(41,128,196,0.12);
  border-color: rgba(41,128,196,0.35);
  color: var(--gold-bright);
}

/* Two-column content layout */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}
.two-col--reverse > :first-child { order: 2; }
.two-col img { width: 100%; height: 100%; object-fit: cover; }
.two-col-media { aspect-ratio: 4/5; overflow: hidden; background: var(--cream-warm); }

/* Sizing chart / simple table */
.size-chart {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.size-chart th,
.size-chart td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
}
.size-chart th {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest-deep);
  background: var(--cream);
  letter-spacing: 0.5px;
}
.size-chart tr:last-child td { border-bottom: none; }

/* Plans grid (demo plans) */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.plan-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(15, 31, 23, 0.04);
  display: flex;
  flex-direction: column;
}
.plan-card:hover { border-color: var(--primary-blue, #2980C4); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(15, 31, 23, 0.08); }
.plan-card .plan-price { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--primary-blue, #2980C4); line-height: 1; margin-bottom: 6px; }
.plan-card .plan-length { font-size: 13px; font-weight: 600; color: var(--forest-deep); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.plan-card .plan-demos { font-size: 13px; color: var(--gray-500, #6b7280); }

/* Rules list */
.rules-list {
  list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 24px 0;
}
.rules-list li {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px 20px;
  background: var(--white);
  border-left: 3px solid var(--gold-bright);
  color: var(--gray-700, #2a2a2a);
  font-size: 15px;
  line-height: 1.65;
  box-shadow: 0 1px 2px rgba(15, 31, 23, 0.04);
}
.rules-list li strong { color: var(--forest-deep); margin-right: 4px; font-weight: 700; font-family: var(--font-display); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); padding: 24px 28px; }
.faq-item h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--forest-deep); margin-bottom: 10px; letter-spacing: -0.2px; }
.faq-item p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* Related pages */
.related-pages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.related-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}
.related-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.related-card h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--forest-deep); margin-bottom: 6px; }
.related-card p { font-size: 13px; color: var(--gray-500); margin-bottom: 12px; }
.related-card .related-link { font-size: 12px; font-weight: 600; color: var(--gold-muted); letter-spacing: 1px; text-transform: uppercase; }

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--forest-deep); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo-text { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 24px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; background: rgba(255,255,255,0.06); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold); color: var(--forest-deep); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-hours { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color 0.3s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.7; } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible, .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .split-layout,
  .tournament-layout,
  .beginners-layout,
  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .two-col--reverse > :first-child { order: 0; }

  .diff-grid,
  .testimonials-grid,
  .feature-grid,
  .related-pages { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { display: none; }
  .mobile-toggle { display: flex; }
  .topbar { display: none; }

  .header-inner { height: 68px; }

  .hero { min-height: 85vh; }
  .hero h1 { font-size: clamp(36px, 10vw, 56px); }
  .hero-features { flex-direction: column; gap: 12px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons a { text-align: center; justify-content: center; }

  .trust-bar-inner { grid-template-columns: 1fr; }
  .diff-grid,
  .feature-grid,
  .related-pages { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .demo-steps { grid-template-columns: 1fr; }
  .tournament-stats { grid-template-columns: repeat(3, 1fr); }
  .tournament-images { grid-template-columns: 1fr; }
  .tournament-images .img-placeholder:first-child { grid-row: auto; min-height: 200px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .plans-grid { grid-template-columns: 1fr; }

  .beginners-float-card { position: static; max-width: 100%; margin-top: 16px; }
  .split-image-accent { display: none; }

  .services-header { flex-direction: column; align-items: flex-start; }

  .page-hero { padding: 64px 0 56px; }
}

/* ============================================
   INNER-PAGE UTILITY CLASSES
   (added for stringing/rackets/demo/pickleball/padel/platform/shoes/accessories/apparel)
   ============================================ */

/* Brand / logo lockup in header & footer */
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #27a8e1 0%, #2980C4 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  border-radius: 8px;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.2px;
}
.brand-text small {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-top: 3px;
}
.brand--footer .brand-text strong { color: var(--white); }

/* Header CTA group + ghost button override (header is dark #0A0A0A) */
.header-cta { display: inline-flex; align-items: center; gap: 12px; }
header .btn-ghost,
.site-header .btn-ghost {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.18);
  padding: 11px 22px;
  font-size: 12px;
}
header .btn-ghost:hover,
.site-header .btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.04);
}
header .btn-primary,
.site-header .btn-primary { padding: 11px 22px; font-size: 12px; }

/* Page-hero inner wrapper (just centers content; uses .container as well) */
.page-hero-inner { position: relative; z-index: 1; }

/* Eyebrow label (uppercase pre-heading) */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section--white .eyebrow,
.section--cream .eyebrow { color: var(--gold-muted); }

/* Page-hero content */
.page-hero .lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  margin: 0 0 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Light ghost button (white text, white border — for dark backgrounds) */
.btn-ghost--light {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  background: transparent;
}
.btn-ghost--light:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Section-intro: support h2 directly (not just .section-title) */
.section-intro h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  color: var(--forest-deep);
  margin: 8px 0 18px;
  letter-spacing: -0.6px;
}
.section--dark .section-intro h2,
.section--forest .section-intro h2 { color: var(--white); }

/* Trust grid (4-up stats below page-hero) */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-bar .trust-grid .trust-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 32px 28px;
}
.trust-bar .trust-grid .trust-item strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  line-height: 1.1;
}
.trust-bar .trust-grid .trust-item span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.4px;
}

/* Plan cards (demo program) — support h3 + meta + featured */
.plan-card-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--primary-blue, #2980C4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.plan-card h3 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--primary-blue, #2980C4);
  line-height: 1;
  margin: 0 0 8px;
}
.plan-card-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--forest-deep);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.plan-card ul {
  list-style: none;
  text-align: left;
  margin: 0 0 20px;
  padding: 0;
  flex: 1;
}
.plan-card ul li {
  font-size: 14px;
  color: var(--gray-700, #2a2d33);
  line-height: 1.55;
  padding: 6px 0 6px 18px;
  position: relative;
}
.plan-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 7px; height: 7px;
  background: var(--primary-blue, #2980C4);
  border-radius: 50%;
}
.plan-card .btn { width: 100%; justify-content: center; }
.plan-card--featured {
  background: linear-gradient(180deg, #f3f9fd 0%, #ffffff 100%);
  border-color: var(--primary-blue, #2980C4);
  border-width: 2px;
  box-shadow: 0 18px 50px rgba(41, 128, 196, 0.15);
}
.plan-card--featured .plan-card-eyebrow,
.plan-card--featured h3 { color: var(--primary-blue, #2980C4); }

/* Card link (inline arrow link inside a feature card) */
.card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-muted);
  letter-spacing: 0.5px;
}
.card-link:hover { color: var(--gold-bright); }
.section--dark .card-link,
.section--forest .card-link { color: var(--gold-bright); }

/* Related-card: support <strong> + <span> markup */
.related-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.related-card span {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* FAQ items as native <details>/<summary> */
details.faq-item { padding: 0; }
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -0.1px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-muted);
  line-height: 1;
  transition: transform 0.25s ease;
}
details.faq-item[open] summary::after { content: '−'; }
details.faq-item > p {
  padding: 0 28px 22px;
  margin: 0;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* CTA banner with side-by-side inner layout (overrides default centered cta-banner) */
.cta-banner:has(.cta-banner-inner) {
  background: var(--forest-deep);
  color: var(--white);
  text-align: left;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner-inner > div:first-child { max-width: 560px; }
.cta-banner-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.cta-banner:has(.cta-banner-inner) p {
  color: rgba(255,255,255,0.65);
  margin: 0;
  max-width: none;
  font-size: 15px;
  line-height: 1.6;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Footer additions (footer-meta row, footer-grid h4, .site-footer wrapper) */
.site-footer { background: var(--forest-deep); padding: 72px 0 0; }
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer .footer-grid > div > p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}
.site-footer .footer-grid h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.site-footer .footer-grid ul { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-grid ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.site-footer .footer-grid ul li a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.site-footer .footer-grid ul li a:hover { color: var(--white); }
.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.4px;
}

/* Inner-page responsive */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr; }
  .brand-text small { display: none; }
  .header-cta .btn-ghost { display: none; }
  .footer-meta { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================
   BRAND LOGO STRIP (court shoes & similar)
   ============================================ */
.brand-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 32px;
  align-items: center;
  justify-items: center;
  margin: 36px 0 0;
  padding: 40px 24px;
  border-top: 1px solid var(--gray-200, #e5e7eb);
  border-bottom: 1px solid var(--gray-200, #e5e7eb);
}
.brand-logos .brand-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: #5C616B;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
  opacity: 1;
  transition: color 0.3s ease, transform 0.25s ease;
  cursor: default;
  display: inline-block;
}
.brand-logos .brand-logo:hover { transform: scale(1.08); }
.brand-logo .dot { padding: 0 1px; color: #C8102E; font-weight: 800; }

/* Per-brand hover colors — show each brand's signature color */
.brand-logos .brand-nike:hover      { color: #111111; }
.brand-logos .brand-asics:hover     { color: #003D7C; }
.brand-logos .brand-wilson:hover    { color: #D71920; }
.brand-logos .brand-mizuno:hover    { color: #1B2D6B; }
.brand-logos .brand-head:hover      { color: #C8102E; }
.brand-logos .brand-babolat:hover   { color: #0B1F3F; }
.brand-logos .brand-lacoste:hover   { color: #004526; }
.brand-logos .brand-kswiss:hover    { color: #C8102E; }
.brand-logos .brand-selkirk:hover   { color: #0058A3; }
.brand-logos .brand-joola:hover     { color: #C8102E; }
.brand-logos .brand-paddletek:hover { color: #111111; }
.brand-logos .brand-onix:hover      { color: #C8102E; }
.brand-logos .brand-yonex:hover     { color: #00529F; }
.brand-logos .brand-dunlop:hover    { color: #FFB81C; text-shadow: 0 0 1px rgba(0,0,0,0.4); }
.brand-logos .brand-volkl:hover     { color: #C8102E; }
.brand-logos .brand-tecnifibre:hover{ color: #C8102E; }
.brand-logos .brand-sofibella:hover { color: #6C2BD9; }
.brand-logos .brand-amyandlulu:hover{ color: #E91E63; }
.brand-logos .brand-tail:hover      { color: #1B5E20; }

/* Per-brand type treatments approximating each logo's signature */
.brand-nike    { font-style: italic; letter-spacing: -0.5px; font-weight: 800; }
.brand-asics   { font-style: italic; letter-spacing: 0.5px; }
.brand-wilson  { font-style: italic; letter-spacing: 0.5px; }
.brand-mizuno  { font-style: italic; letter-spacing: 1px; }
.brand-head    { letter-spacing: 3px; font-weight: 900; }
.brand-babolat { letter-spacing: 2.5px; font-weight: 700; font-size: 22px; }
.brand-lacoste { letter-spacing: 2.5px; font-weight: 700; font-size: 22px; }
.brand-kswiss  { letter-spacing: 1.5px; font-weight: 800; }

/* Pickleball paddle brand wordmarks */
.brand-selkirk   { letter-spacing: 1.5px; font-weight: 800; }
.brand-joola     { letter-spacing: 2.5px; font-weight: 900; }
.brand-paddletek { letter-spacing: 0.5px; font-weight: 700; font-size: 22px; }
.brand-onix      { letter-spacing: 3px; font-weight: 800; }

/* Tennis racket brand wordmarks */
.brand-yonex      { letter-spacing: 2px; font-weight: 800; }
.brand-dunlop     { letter-spacing: 1.5px; font-weight: 800; }
.brand-volkl      { letter-spacing: 2.5px; font-weight: 700; }
.brand-tecnifibre { letter-spacing: 1px; font-weight: 700; font-size: 20px; }

/* Apparel brand wordmarks */
.brand-sofibella  { letter-spacing: 1.5px; font-weight: 700; font-size: 22px; font-style: italic; }
.brand-amyandlulu { letter-spacing: 1px; font-weight: 700; font-size: 20px; }
.brand-tail       { letter-spacing: 4px; font-weight: 800; }

/* 7-up variant — natural-fit grid that wraps cleanly */
.brand-logos--7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 24px 20px;
}

/* 6-up variant */
.brand-logos--6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px 20px;
}

@media (max-width: 1100px) {
  .brand-logos--7 { grid-template-columns: repeat(4, 1fr); }
  .brand-logos--6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .brand-logos { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .brand-logos--7 { grid-template-columns: repeat(3, 1fr); }
  .brand-logos--6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .brand-logos { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; padding: 28px 12px; }
  .brand-logos--7 { grid-template-columns: repeat(2, 1fr); }
  .brand-logos--6 { grid-template-columns: repeat(2, 1fr); }
  .brand-logo { font-size: 22px; }
  .brand-babolat, .brand-lacoste, .brand-paddletek, .brand-sofibella, .brand-amyandlulu { font-size: 18px; }
}

/* ============================================
   PAGE HERO WITH IMAGE (split layout)
   ============================================ */
.page-hero--with-image {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.page-hero-text { min-width: 0; }
.page-hero-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 6px 20px rgba(0,0,0,0.25);
  aspect-ratio: 4 / 3;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(41,128,196,0) 60%, rgba(41,128,196,0.18) 100%);
  pointer-events: none;
}
.page-hero-media:hover img { transform: scale(1.03); }

@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero-media { aspect-ratio: 16 / 10; max-height: 360px; order: -1; }
}

/* ============================================
   INLINE SECTION IMAGES (sprinkled across inner pages)
   ============================================ */
.section-image {
  margin: 48px auto 0;
  max-width: 980px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.16), 0 4px 14px rgba(0,0,0,0.06);
  background: var(--white, #fff);
}
.section-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.section-image figcaption {
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-500, #5C616B);
  text-align: center;
  font-style: italic;
  letter-spacing: 0.2px;
  background: var(--white, #fff);
  border-top: 1px solid var(--gray-200, #DDDFE3);
}

/* Side-by-side text + image */
.image-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  margin: 48px 0 0;
}
.image-split-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.16), 0 4px 14px rgba(0,0,0,0.06);
  aspect-ratio: 4 / 3;
}
.image-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.image-split-img:hover img { transform: scale(1.03); }
.image-split-text h3 { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 28px); color: var(--forest-deep); margin-bottom: 14px; line-height: 1.2; }
.image-split-text p { font-size: 16px; line-height: 1.7; color: var(--gray-600, #3E424A); }
.image-split-text p + p { margin-top: 12px; }
.image-split--reverse .image-split-img { order: 2; }

@media (max-width: 800px) {
  .image-split { grid-template-columns: 1fr; gap: 24px; }
  .image-split--reverse .image-split-img { order: 0; }
}

/* ============================================
   COLOR ACCENTS — keep pages from going text-heavy
   ============================================ */

/* Highlight em tags inside any h2/h3 with brand blue */
.section h2 em,
.section-intro h2 em,
.prose h2 em,
.prose h3 em,
section h2 em { font-style: normal; font-weight: 800; color: var(--sage, #2980C4); }

/* Eyebrow/section labels — punchier blue */
.section-label,
.eyebrow {
  color: var(--sage, #2980C4) !important;
}

/* Strong text inside body copy → brand blue */
.prose p strong,
.section-intro p strong,
.feature-card p strong { color: var(--sage, #2980C4); font-weight: 700; }

/* Bullet lists in .prose → brand blue dots */
.prose ul { list-style: none; padding-left: 0; }
.prose ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 7px;
  height: 7px;
  background: var(--sage, #2980C4);
  border-radius: 50%;
}

/* Keep the small label on its own line above the centered inline-block h2 */
.section-intro .section-label,
.section-intro .eyebrow {
  display: block;
}

/* Tasteful accent bar under section h2s in centered intros */
.section-intro h2 {
  position: relative;
  display: inline-block;
}
.section-intro h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, var(--sage, #2980C4) 0%, var(--brand-green, #80b817) 100%);
  border-radius: 2px;
}

/* For .prose h2 (left-aligned), use a left accent bar */
.prose h2 {
  position: relative;
  padding-left: 18px;
  margin-top: 32px;
}
.prose h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: linear-gradient(180deg, var(--sage, #2980C4) 0%, var(--brand-green, #80b817) 100%);
  border-radius: 2px;
}
.prose h3 {
  color: var(--sage, #2980C4);
  margin-top: 28px;
  margin-bottom: 10px;
}

/* Inline links inside prose pop a bit (skip button-styled links) */
.prose a:not([class*="btn"]) {
  color: var(--sage, #2980C4);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(41,128,196,0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
.prose a:not([class*="btn"]):hover { text-decoration-color: var(--sage, #2980C4); }

/* Feature card heading nudge */
.feature-card h3 { color: var(--forest-deep); }
.feature-card { transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; }
.feature-card:hover {
  border-color: var(--sage, #2980C4);
  box-shadow: 0 16px 40px rgba(41,128,196,0.10);
}

/* Related-card hover gets the green pop */
.related-card { transition: all 0.3s ease; }
.related-card:hover strong { color: var(--sage, #2980C4); }

/* Subtle green tick before brand chip-style blocks */
