/* ============================================================
   SugarDaddyJamaica.com - Main Stylesheet
   Caribbean Luxury + Modern Sugar Dating Platform
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;700&display=swap');

/* ============================================================
   CSS Custom Properties (Design Tokens)
   ============================================================ */
:root {
  /* Jamaican Quiet Luxury Palette */
  --primary: #123F35;
  --primary-light: #1E5C4C;
  --primary-dark: #0B2C25;
  --primary-rgb: 18, 63, 53;

  --secondary: #2B6D70;
  --secondary-light: #397F82;
  --secondary-dark: #1E5558;
  --secondary-rgb: 43, 109, 112;

  --accent: #C5A25D;
  --accent-light: #D7BA7B;
  --accent-dark: #9B7A3D;

  /* Legacy alias keeps existing components on the restrained gold accent. */
  --coral: #C5A25D;
  --coral-light: #D7BA7B;
  --coral-dark: #9B7A3D;

  /* Backgrounds & Surfaces */
  --bg: #FBF8F2;
  --bg-white: #FFFFFF;
  --bg-muted: #EFE7DA;
  --bg-card: #FFFFFF;

  /* Text Colors */
  --text: #15211D;
  --text-muted: #68716C;
  --text-light: #8B918D;
  --text-white: #FFFFFF;

  /* Borders & Dividers */
  --border: rgba(18, 63, 53, 0.14);
  --border-light: rgba(21, 33, 29, 0.08);

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(21, 33, 29, 0.05);
  --shadow-md: 0 6px 16px rgba(21, 33, 29, 0.07);
  --shadow-lg: 0 14px 32px rgba(21, 33, 29, 0.09);
  --shadow-xl: 0 24px 56px rgba(21, 33, 29, 0.12);
  --shadow-primary: 0 10px 28px rgba(var(--primary-rgb), 0.24);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 80rem;
  --header-height: 4rem;
}

/* ============================================================
   Reset & Base Styles
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }

p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   Utility Classes
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

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

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-coral { color: var(--coral); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--text-white); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
}

.section-label-primary {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
}

.section-label-secondary {
  background: rgba(var(--secondary-rgb), 0.1);
  color: var(--secondary);
}

.section-label-coral {
  background: rgba(197, 162, 93, 0.14);
  color: #725725;
}

.section-label-accent {
  background: rgba(197, 162, 93, 0.16);
  color: var(--text);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--font-size-4xl);
  line-height: 1.15;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: var(--font-size-lg);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-sm);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
  line-height: 1;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: var(--font-size-lg);
}

.btn-primary {
  background: var(--primary);
  color: var(--text-white);
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(var(--primary-rgb), 0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--text-white);
  box-shadow: 0 8px 24px rgba(var(--secondary-rgb), 0.25);
}
.btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-1px);
}

.btn-coral {
  background: var(--accent);
  color: var(--text);
}
.btn-coral:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--text-white);
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--text-white);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--text-white);
}

.btn-accent {
  background: var(--accent);
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(197, 162, 93, 0.28);
}
.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-arrow {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap var(--transition-base);
}
.btn-arrow:hover {
  gap: 0.75rem;
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* ============================================================
   Header / Navigation
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: var(--font-size-sm);
}

.header-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-lg);
  color: var(--primary);
  line-height: 1.2;
}
.header-logo-text span {
  color: var(--coral);
}

.header-nav {
  display: none;
}

.header-nav a {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  padding: 0.25rem 0;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--primary);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.header-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  color: var(--text);
  transition: background var(--transition-fast);
}
.header-menu-btn:hover {
  background: var(--bg-muted);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: var(--space-lg);
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu a {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0;
}

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

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  position: relative;
  min-height: max(42rem, calc(100svh - var(--header-height)));
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 24, 18, 0.9) 0%, rgba(5, 24, 18, 0.68) 48%, rgba(5, 24, 18, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 24, 18, 0.46) 0%, rgba(5, 24, 18, 0.05) 55%),
    url('../images/sugar-daddy-jamaica-site.webp') center 38% / cover no-repeat;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding-top: clamp(3.5rem, 9vw, 7rem);
  padding-bottom: clamp(3.5rem, 9vw, 7rem);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: min(100%, 44rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.14);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: var(--font-size-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 0.375rem 1rem;
  margin-bottom: var(--space-lg);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: 800;
  line-height: 1.04;
  margin-bottom: var(--space-lg);
  color: var(--text-white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}
.hero-title > span {
  display: block;
}
.hero-title-intro {
  font-size: 0.56em;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
.hero-title-accent {
  width: fit-content;
  margin-top: 0.18em;
  color: #f4dca5;
  background: linear-gradient(100deg, #fff5dc 0%, #eac779 48%, #fff0c8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title-location {
  width: fit-content;
  margin-top: 0.12em;
  padding-bottom: 0.14em;
  font-size: 0.72em;
  font-style: italic;
  font-weight: 600;
  color: var(--text-white);
  border-bottom: 2px solid rgba(244, 220, 165, 0.72);
}

.hero-desc {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 32rem;
}

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

.hero-buttons .btn {
  min-height: 3.25rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  width: min(100%, 34rem);
}

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

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--text-white);
}

.hero-stat-label {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.76);
}

.hero-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.3);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--bg-muted);
  aspect-ratio: 4 / 5;
}

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

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--primary-rgb), 0.3), transparent);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 180px;
  animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(2) { animation-delay: 0.5s; }
.floating-card:nth-child(3) { animation-delay: 1s; }

.floating-card-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.floating-card-icon.green,
.floating-card-icon.blue,
.floating-card-icon.gold {
  background: rgba(var(--primary-rgb), 0.09);
  color: var(--primary);
}

.floating-card-title {
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--text);
}

.floating-card-subtitle {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   Section Spacing
   ============================================================ */
.section {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header .section-title {
  position: relative;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}

.section-header .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3.5rem;
  height: 3px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* ============================================================
   Image + Text Split Layout
   ============================================================ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.split-image {
  position: relative;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: 0.75rem 0.75rem 0 rgba(197, 162, 93, 0.16), var(--shadow-lg);
  background: var(--bg-muted);
}

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

.split-image-overlay {
  position: absolute;
  inset: 0;
}

.split-image-overlay.blue { background: linear-gradient(to bottom right, rgba(var(--secondary-rgb), 0.2), transparent); }
.split-image-overlay.coral { background: linear-gradient(to bottom right, rgba(197, 162, 93, 0.16), transparent); }

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: var(--space-xl) 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-item-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-item-text {
  font-size: var(--font-size-sm);
  color: var(--text);
  line-height: 1.6;
}

/* ============================================================
   Card Grids
   ============================================================ */
.card-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.card-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.card-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* ============================================================
   Feature Cards
   ============================================================ */
.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-2xl);
  padding: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--transition-base);
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.18);
}

.feature-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  background: rgba(118, 217, 198, 0.12);
  border: 1px solid rgba(145, 230, 213, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A8E8DB;
  margin-bottom: 1rem;
}

.feature-card-icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

.feature-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.feature-card-desc {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ============================================================
   City Cards
   ============================================================ */
.city-card {
  background: var(--bg-card);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

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

.city-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.city-card:hover .city-card-image img {
  transform: scale(1.05);
}

.city-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.city-card-name {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-white);
  font-size: var(--font-size-2xl);
}

.city-card-body {
  padding: var(--space-lg);
}

.city-card-desc {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

/* ============================================================
   Profile Cards
   ============================================================ */
.profile-card {
  background: var(--bg-card);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

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

.profile-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px) saturate(0.82) brightness(0.9);
  transform: scale(1.045);
  transition: transform 500ms ease;
}
.profile-card:hover .profile-card-image img {
  transform: scale(1.085);
}

.profile-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.profile-card-lock {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.625rem;
  height: 2.625rem;
  color: var(--text-white);
  background: rgba(21, 33, 29, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius-full);
  box-shadow: 0 0.5rem 1.5rem rgba(5, 24, 18, 0.22);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.profile-card-lock svg {
  width: 1.125rem;
  height: 1.125rem;
}

.profile-card-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 4;
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  color: var(--text-white);
}
.profile-card-badge.daddy,
.profile-card-badge.baby { background: rgba(21, 33, 29, 0.88); }

.profile-card-status {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profile-card-status-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
}
.profile-card-status-dot.online { background: #4ade80; }
.profile-card-status-dot.offline { background: #9ca3af; }

.profile-card-status-text {
  font-size: var(--font-size-xs);
  color: var(--text-white);
}

.profile-card-body {
  padding: 1.25rem;
}

.profile-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.profile-card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-lg);
  color: var(--text);
}

.profile-card-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

.profile-card-bio {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.profile-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.profile-card-tag {
  font-size: var(--font-size-xs);
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
}

/* ============================================================
   How It Works / Steps
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  position: relative;
}

.step-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary);
  color: var(--text-white);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--font-size-lg);
}

.step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   Lifestyle Section
   ============================================================ */
.lifestyle-section {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
  background: var(--primary-dark);
}

.lifestyle-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.lifestyle-text .section-title {
  color: var(--text-white);
  margin-bottom: var(--space-lg);
}

.lifestyle-text p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.lifestyle-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.lifestyle-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 1rem;
}

.lifestyle-item-icon {
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.lifestyle-item-label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-white);
}

.lifestyle-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lifestyle-gallery-item {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--bg-muted);
}

.lifestyle-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: 3 / 4;
}

.lifestyle-gallery-item:not(.tall) {
  aspect-ratio: 4 / 3;
}

/* ============================================================
   Safety Section
   ============================================================ */
.safety-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.safety-card {
  background: var(--bg-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.safety-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.safety-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-xl);
  background: rgba(var(--primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.25rem;
}

.safety-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.safety-card-desc {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.safety-cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--primary-light) 0%, var(--primary) 45%, var(--secondary) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-3xl);
  padding: var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}

.safety-cta-card::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -12%;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(197, 162, 93, 0.30) 0%, transparent 70%);
  pointer-events: none;
}

.safety-cta-card::after {
  content: "";
  position: absolute;
  bottom: -55%;
  left: -8%;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.safety-cta-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.safety-cta-icon {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
}

.safety-cta-text {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.safety-cta-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-white);
  font-size: var(--font-size-xl);
  margin-bottom: 0.375rem;
}

.safety-cta-desc {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 34rem;
}

.safety-cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.safety-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text-white);
  font-size: var(--font-size-xs);
  font-weight: 500;
  border-radius: var(--radius-full);
  padding: 0.4rem 0.8rem;
}

.safety-cta-btn {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Mobile: stack the CTA banner vertically and stretch the button */
@media (max-width: 767px) {
  .safety-cta-card {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-lg);
    padding: var(--space-xl);
  }

  .safety-cta-inner {
    flex: 0 0 auto;
    align-items: flex-start;
  }

  .safety-cta-btn {
    width: 100%;
  }
}

/* ============================================================
   Blog / Article Cards
   ============================================================ */
.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
  cursor: pointer;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
}

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

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.blog-card-image img.blog-card-image-faces {
  object-position: center 18%;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.blog-card-category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

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

.blog-card-read-time {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.4;
  transition: color var(--transition-fast);
}
.blog-card:hover .blog-card-title {
  color: var(--primary);
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-3xl);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.testimonial-quote {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

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

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-sm);
}

.testimonial-location {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-base);
  color: var(--text);
  transition: color var(--transition-fast);
}
.faq-trigger:hover {
  color: var(--primary);
}

.faq-trigger-icon {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}
.faq-item.open .faq-trigger-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}
.faq-item.open .faq-content {
  max-height: 500px;
}

.faq-content-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

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

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 44, 37, 0.94), rgba(21, 33, 29, 0.82));
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--text);
  font-size: var(--font-size-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 0.375rem 1rem;
  margin-bottom: var(--space-lg);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.cta-desc {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-note {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-lg);
}

/* ============================================================
   App Download Section
   ============================================================ */
.app-section {
  background: var(--bg-muted);
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.app-content .section-title {
  margin-bottom: var(--space-lg);
}

.app-desc {
  font-size: var(--font-size-lg);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 34rem;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-xl);
}

.app-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--font-size-base);
  color: var(--text);
  font-weight: 500;
}

.app-feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: #111;
  color: var(--text-white);
  padding: 0.5rem 1.1rem 0.5rem 0.625rem;
  border-radius: var(--radius-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  line-height: 1;
}
.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.store-badge svg {
  flex-shrink: 0;
}
.store-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.store-badge-label {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}
.store-badge-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

/* Phone Mockup */
.app-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.app-mockup-image {
  width: min(100%, 48rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 1.75rem 2.5rem rgba(7, 35, 28, 0.16));
}

.phone-mockup {
  position: relative;
  width: 280px;
  max-width: 100%;
  background: #111;
  border-radius: 2.75rem;
  padding: 0.75rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.phone-notch {
  position: absolute;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 7rem;
  height: 1.5rem;
  background: #111;
  border-radius: 0 0 1rem 1rem;
  z-index: 3;
}

.phone-screen {
  position: relative;
  border-radius: 2.15rem;
  overflow: hidden;
  aspect-ratio: 9 / 19;
  background: var(--bg-muted);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-screen-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 107, 75, 0.65) 0%, rgba(15, 107, 75, 0) 45%);
}

.phone-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  z-index: 2;
}
.phone-topbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.phone-topbar-brand span {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}
.phone-topbar-actions {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.phone-profile {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
}
.phone-profile-name {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.15rem;
}
.phone-profile-loc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.6rem;
}
.phone-profile-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.phone-profile-tags span {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

/* Floating cards around phone */
.phone-float {
  position: absolute;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  z-index: 4;
  animation: float 3.5s ease-in-out infinite;
}
.phone-float .phone-float-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.phone-float.match {
  top: 22%;
  left: -1rem;
}
.phone-float.match .phone-float-dot { background: var(--coral); }
.phone-float.chat {
  bottom: 30%;
  right: -1.2rem;
  animation-delay: 1.2s;
}
.phone-float.chat .phone-float-dot { background: var(--secondary); }

/* App section responsive */
@media (min-width: 768px) {
  .app-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--text);
  color: var(--text-white);
  padding: var(--space-3xl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  grid-column: 1 / -1;
}

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

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-sm);
  line-height: 1.3;
}
.footer-logo-text span {
  color: var(--coral);
}

.footer-desc {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-fast);
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-bottom p {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   Page Header (Inner Pages)
   ============================================================ */
.page-header {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 29, 25, 0.84), rgba(18, 63, 53, 0.58));
}

.page-header-content {
  position: relative;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.page-header-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.page-header-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

.page-header-desc {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* Full-height role heroes: editorial split on desktop, immersive image on mobile. */
.role-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: calc(100svh - var(--header-height));
  padding: 0;
  background: var(--bg);
}

.role-hero .page-header-bg {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 1;
  min-height: inherit;
}

.role-hero .page-header-bg img {
  object-position: center;
}

.role-hero .page-header-overlay {
  display: none;
}

.role-hero .page-header-content {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(2rem, 7vw, 7rem) clamp(2rem, 5vw, 5rem) clamp(2rem, 7vw, 7rem) clamp(2rem, 8vw, 8rem);
  text-align: left;
}

.role-hero .page-header-title {
  max-width: 36rem;
  color: var(--text);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1.08;
}

.role-hero .page-header-desc {
  max-width: 35rem;
  color: var(--text-muted);
}

.page-header-actions {
  display: flex;
  margin-top: var(--space-xl);
}

/* ============================================================
   Benefits Grid
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.benefit-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.role-benefits .benefit-card-icon {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.benefit-card-icon.green,
.benefit-card-icon.blue,
.benefit-card-icon.coral,
.benefit-card-icon.gold {
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
}

.benefit-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.benefit-card-desc {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   Guide Section (SEO editorial blocks)
   ============================================================ */
.guide-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-2xl);
  line-height: 1.25;
  margin-bottom: var(--space-md);
  color: var(--text);
}

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

.guide-lead {
  color: var(--text-muted);
  font-size: var(--font-size-lg);
  line-height: 1.6;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto var(--space-2xl);
}

/* ============================================================
   Content Section (for legal / info pages)
   ============================================================ */
.content-section {
  padding: var(--space-4xl) 0;
}

.content-inner {
  max-width: 48rem;
  margin: 0 auto;
}

.content-inner h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-2xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.content-inner h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-xl);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.content-inner p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.content-inner ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
}

.content-inner li {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.content-inner strong {
  color: var(--text);
}

/* ============================================================
   Login Page
   ============================================================ */
.login-page {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - var(--header-height));
}

.login-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl);
  background: var(--bg);
}

.login-form-wrapper {
  width: 100%;
  max-width: 28rem;
}

.login-form-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.login-form-subtitle {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  color: var(--text);
  font-size: var(--font-size-base);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

.form-checkbox input[type="checkbox"] {
  accent-color: var(--primary);
  width: 1rem;
  height: 1rem;
}

.form-link {
  font-size: var(--font-size-sm);
  color: var(--primary);
  font-weight: 500;
}
.form-link:hover {
  text-decoration: underline;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: var(--space-lg) 0;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-divider span {
  font-size: var(--font-size-xs);
  color: var(--text-light);
  text-transform: uppercase;
}

.login-image-side {
  display: none;
  position: relative;
  overflow: hidden;
}

.login-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--primary-rgb), 0.7), rgba(var(--primary-rgb), 0.2));
}

.login-image-text {
  position: absolute;
  bottom: var(--space-2xl);
  left: var(--space-2xl);
  right: var(--space-2xl);
  color: var(--text-white);
}

.login-image-text h2 {
  color: var(--text-white);
  font-size: var(--font-size-3xl);
  margin-bottom: 0.5rem;
}

.login-image-text p {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   Contact Form
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-3xl);
  padding: var(--space-xl);
  color: var(--text-white);
}

.contact-info-card h3 {
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
  margin-bottom: 0.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
}

.form-textarea {
  resize: vertical;
  min-height: 8rem;
}

/* ============================================================
   Chat Room Page
   ============================================================ */
.chat-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.chat-sidebar {
  background: var(--bg-card);
  border-radius: var(--radius-3xl);
  border: 1px solid var(--border);
  overflow: hidden;
}

.chat-sidebar-header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.chat-sidebar-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-lg);
}

.chat-contacts {
  max-height: 400px;
  overflow-y: auto;
}

.chat-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem var(--space-lg);
  cursor: pointer;
  transition: background var(--transition-fast);
}
.chat-contact:hover,
.chat-contact.active {
  background: var(--bg-muted);
}

.chat-contact-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--bg-muted);
  overflow: hidden;
  flex-shrink: 0;
}

.chat-contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-contact-info {
  flex: 1;
  min-width: 0;
}

.chat-contact-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-sm);
}

.chat-contact-preview {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-contact-status {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.chat-contact-status.online { background: #4ade80; }
.chat-contact-status.offline { background: #9ca3af; }

.chat-main {
  background: var(--bg-card);
  border-radius: var(--radius-3xl);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-height: 500px;
}

.chat-main-header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-messages {
  flex: 1;
  padding: var(--space-lg);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message {
  max-width: 75%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-xl);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

.chat-message.sent {
  align-self: flex-end;
  background: var(--primary);
  color: var(--text-white);
}

.chat-message.received {
  align-self: flex-start;
  background: var(--bg-muted);
  color: var(--text);
}

.chat-message-time {
  font-size: var(--font-size-xs);
  opacity: 0.6;
  margin-top: 0.25rem;
}

.chat-input-area {
  padding: var(--space-lg);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.75rem;
}

.chat-input-area .form-input {
  flex: 1;
}

/* ============================================================
   Wishlist Page
   ============================================================ */
.wishlist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.wishlist-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}
.wishlist-card:hover {
  box-shadow: var(--shadow-lg);
}

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

.wishlist-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.wishlist-card:hover .wishlist-card-image img {
  transform: scale(1.05);
}

.wishlist-card-price {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--accent);
  color: var(--text);
  font-weight: 700;
  font-size: var(--font-size-sm);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
}

.wishlist-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.wishlist-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
}

.wishlist-card-desc {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.wishlist-card-category {
  align-self: flex-start;
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.wishlist-card-body .btn {
  margin-top: auto !important;
}

/* ============================================================
   Tips Cards
   ============================================================ */
.tip-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.tip-card-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

.tip-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tip-card-desc {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   Stats Band
   ============================================================ */
.stats-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-3xl);
  padding: var(--space-2xl) var(--space-lg);
  box-shadow: var(--shadow-lg);
}

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

.stat-value {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}

.stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.86);
  margin-top: 0.35rem;
}

.stat-sub {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.62);
  margin-top: 0.2rem;
}

/* ============================================================
   Do's & Don'ts
   ============================================================ */
.dos-donts {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.dd-card {
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.dd-card.do {
  background: linear-gradient(160deg, rgba(var(--primary-rgb), 0.07), rgba(var(--primary-rgb), 0.02));
  border-color: rgba(var(--primary-rgb), 0.22);
}

.dd-card.dont {
  background: linear-gradient(160deg, rgba(193, 92, 73, 0.08), rgba(193, 92, 73, 0.02));
  border-color: rgba(193, 92, 73, 0.22);
}

.dd-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.dd-head-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.dd-card.do .dd-head-icon { background: rgba(var(--primary-rgb), 0.14); color: var(--primary); }
.dd-card.dont .dd-head-icon { background: rgba(193, 92, 73, 0.14); color: #C15C49; }

.dd-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-lg);
  color: var(--text);
}

.dd-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dd-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: var(--text);
}

.dd-item-icon {
  flex-shrink: 0;
  font-weight: 800;
  line-height: 1.5;
}

.dd-card.do .dd-item-icon { color: var(--primary); }
.dd-card.dont .dd-item-icon { color: #C15C49; }

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

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-in {
  animation: fadeInUp 0.6s ease both;
}

/* ============================================================
   Scroll Reveal (for JS)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Modal / Overlay
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-white);
  border-radius: var(--radius-3xl);
  padding: var(--space-xl);
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  color: var(--text);
}

/* ============================================================
   Alert / Notification
   ============================================================ */
.alert {
  padding: 1rem;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
}

.alert-success {
  background: #e6f4ec;
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.alert-error {
  background: #fde8ec;
  color: #d4183d;
  border: 1px solid rgba(212, 24, 61, 0.2);
}

/* ============================================================
   Back to Top Button
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-white);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
  z-index: 40;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ============================================================
   Responsive - Tablet (768px+)
   ============================================================ */
@media (min-width: 768px) {
  :root {
    --header-height: 4.5rem;
  }

  .hero-title {
    font-size: var(--font-size-5xl);
  }

  .split-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-grid.reverse .split-image {
    order: 1;
  }
  .split-grid.reverse .split-content {
    order: 2;
  }

  .card-grid-4,
  .card-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lifestyle-content {
    grid-template-columns: 1fr 1fr;
  }

  .safety-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: row;
  }

  .cta-title {
    font-size: var(--font-size-5xl);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .chat-layout {
    grid-template-columns: 300px 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 2fr;
  }

  .login-page {
    grid-template-columns: 1fr 1fr;
  }

  .login-image-side {
    display: block;
  }

  .profile-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: var(--font-size-5xl);
  }
}

@media (max-width: 767px) {
  .btn-lg {
    max-width: 100%;
    padding: 1rem 1.75rem;
    white-space: normal;
    line-height: 1.25;
    justify-content: center;
    text-align: center;
  }

  .page-header:not(.role-hero) {
    padding: 4rem 0;
  }

  .page-header:not(.role-hero) .page-header-title {
    font-size: clamp(2rem, 9vw, 2.5rem);
    line-height: 1.12;
  }

  .page-header:not(.role-hero) .page-header-desc {
    font-size: 1rem;
    line-height: 1.65;
  }

  .login-form-side {
    padding: 3rem 1.5rem;
  }

  .login-form-wrapper .btn {
    min-width: 0;
    height: auto;
    min-height: 3rem;
    white-space: normal;
    line-height: 1.35;
  }

  .role-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100svh - var(--header-height));
    padding: 0;
    background: var(--primary-dark);
  }

  .role-hero .page-header-bg {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .role-hero .page-header-overlay {
    display: block;
    background: linear-gradient(180deg, rgba(5, 24, 18, 0.42) 0%, rgba(5, 24, 18, 0.66) 48%, rgba(5, 24, 18, 0.9) 100%);
  }

  .role-hero .page-header-content {
    width: 100%;
    max-width: 34rem;
    margin: 0 auto;
    padding: 3rem clamp(1rem, 5vw, 1.25rem) 2rem;
    text-align: center;
    top: 2rem;
  }

  .role-hero .page-header-title {
    max-width: none;
    color: var(--text-white);
    font-size: clamp(2.25rem, 9vw, 3rem);
    line-height: 1.1;
  }

  .role-hero .page-header-desc {
    max-width: 32rem;
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.65;
  }

  .role-hero .page-header-actions {
    justify-content: center;
  }

  .role-hero .page-header-actions .btn {
    width: auto;
    min-width: 11.5rem;
    justify-content: center;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    background:
      linear-gradient(180deg, rgba(5, 24, 18, 0.44) 0%, rgba(5, 24, 18, 0.82) 60%, rgba(5, 24, 18, 0.94) 100%),
      url('../images/sugar-daddy-jamaica-site.webp') 88% center / cover no-repeat;
  }

  .hero .container {
    padding-left: clamp(1rem, 5vw, 1.25rem);
    padding-right: clamp(1rem, 5vw, 1.25rem);
  }

  .hero-grid {
    align-items: end;
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }

  .hero-title {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .hero-title-accent,
  .hero-title-location {
    margin-inline: auto;
  }

  .hero-content {
    margin-inline: auto;
    text-align: center;
    top: 2rem;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.65;
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-buttons .btn {
    width: auto;
    min-width: 11.5rem;
    justify-content: center;
  }

  .hero-stats {
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .hero-stat {
    flex: 1 1 0;
  }

  .hero-stat-value {
    font-size: var(--font-size-xl);
  }

  .hero-stat-label {
    line-height: 1.35;
  }
}

/* ============================================================
   Responsive - Desktop (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
  }

  .header-actions {
    display: flex;
  }

  .header-menu-btn {
    display: none;
  }

  .card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .safety-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .section {
    padding: var(--space-4xl) 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wishlist-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .profile-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   Responsive - Extra Large (1200px+)
   ============================================================ */
@media (min-width: 1200px) {
  .hero-title {
    font-size: var(--font-size-6xl);
  }

  .section-title {
    font-size: var(--font-size-5xl);
  }
}

/* ============================================================
   Print Styles
   ============================================================ */
@media print {
  .header,
  .footer,
  .back-to-top,
  .mobile-menu {
    display: none;
  }
}
.page-header-meta {
  margin-top: var(--space-md);
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--font-size-sm);
  line-height: 1.5;
}

.page-header-meta a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.context-links {
  margin-top: var(--space-lg);
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}

.context-links a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(0, 107, 86, 0.3);
  text-underline-offset: 0.2em;
}
