
/* ==========================================================================
   CREATORHAUS — Premium Futuristic Design System & Styling
   "Netflix Meets Luxury Talent Agency Meets Creator Economy"
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-dark: #06070b;
  --bg-card: rgba(18, 20, 29, 0.75);
  --bg-card-hover: rgba(28, 31, 46, 0.85);
  --bg-glass: rgba(10, 12, 18, 0.7);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 242, 254, 0.3);

  --neon-cyan: #00f2fe;
  --neon-blue: #4facfe;
  --neon-gold: #ffd700;
  --neon-pink: #ff007f;
  --neon-purple: #7928ca;
  --neon-green: #00ff87;

  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-cyan);
}

/* Custom Selection */
::selection {
  background: var(--neon-cyan);
  color: #000000;
}

/* ==========================================================================
   Header & Glass Navigation Bar
   ========================================================================== */
.ch-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  background: rgba(6, 7, 11, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ch-header.scrolled {
  background: rgba(6, 7, 11, 0.92);
  border-bottom: 1px solid rgba(0, 242, 254, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.ch-navbar {
  max-width: 1380px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ch-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
}

.ch-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  border: 1.5px solid var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.3);
  transition: var(--transition-fast);
}

.ch-brand-logo:hover .ch-logo-img {
  transform: rotate(5deg) scale(1.08);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.6);
}

.ch-brand-text {
  background: linear-gradient(135deg, #ffffff 40%, var(--neon-cyan) 80%, var(--neon-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 800;
}

.ch-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.ch-nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.ch-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-gold));
  transition: var(--transition-fast);
  border-radius: 2px;
}

.ch-nav-link:hover, .ch-nav-link.active {
  color: var(--text-main);
}

.ch-nav-link:hover::after, .ch-nav-link.active::after {
  width: 100%;
}

.ch-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ch-btn-cta {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  color: #000000;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.35);
  transition: var(--transition-fast);
}

.ch-btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.6);
  color: #000000;
}

.ch-btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-glow);
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
}

.ch-btn-outline:hover {
  border-color: var(--neon-gold);
  color: var(--neon-gold);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.25);
  transform: translateY(-2px);
}

.ch-sound-toggle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.ch-sound-toggle:hover {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.3);
}

.ch-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.ch-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px 24px;
  overflow: hidden;
  background: var(--bg-dark);
}

.ch-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: contrast(110%) brightness(80%);
  z-index: 1;
}

.ch-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(0, 242, 254, 0.12) 0%, rgba(6, 7, 11, 0.95) 75%);
  z-index: 2;
}

.ch-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  text-align: center;
  margin: 0 auto;
}

.ch-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 40px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
  animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(0, 242, 254, 0.2); }
  50% { box-shadow: 0 0 30px rgba(0, 242, 254, 0.5); }
}

.ch-hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.ch-gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 40%, var(--neon-cyan) 70%, var(--neon-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ch-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 40px auto;
  font-weight: 400;
}

.ch-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Live Metrics Strip
   ========================================================================== */
.ch-metrics-strip {
  background: rgba(14, 17, 26, 0.85);
  border-y: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  padding: 30px 24px;
  position: relative;
  z-index: 20;
}

.ch-metrics-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.ch-metric-card {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-fast);
}

.ch-metric-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 10px 25px rgba(0, 242, 254, 0.1);
}

.ch-metric-value {
  font-family: var(--font-mono);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 6px;
}

.ch-metric-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ==========================================================================
   Main Section Layouts
   ========================================================================== */
.ch-section {
  padding: 100px 24px;
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
}

.ch-section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.ch-section-tag {
  font-family: var(--font-mono);
  color: var(--neon-cyan);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.ch-section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.ch-section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ==========================================================================
   Roster Showcase (Netflix-style tabs & creator cards)
   ========================================================================== */
.ch-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.ch-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.ch-tab-btn:hover, .ch-tab-btn.active {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.15), rgba(121, 40, 202, 0.15));
  border-color: var(--neon-cyan);
  color: var(--text-main);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
}

.ch-creator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.ch-creator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.ch-creator-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--border-glow);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 242, 254, 0.2);
}

.ch-creator-banner {
  height: 140px;
  position: relative;
  overflow: hidden;
}

.ch-creator-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ch-creator-card:hover .ch-creator-banner img {
  transform: scale(1.1);
}

.ch-creator-niche-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(6, 7, 11, 0.8);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  backdrop-filter: blur(10px);
}

.ch-creator-body {
  padding: 0 24px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ch-creator-avatar-wrap {
  margin-top: -45px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.ch-creator-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  object-fit: cover;
  background: var(--bg-dark);
}

.ch-creator-name {
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.ch-verified-icon {
  color: var(--neon-cyan);
  font-size: 1.1rem;
}

.ch-creator-handle {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-family: var(--font-mono);
  margin-bottom: 14px;
}

.ch-creator-tagline {
  color: var(--text-main);
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.ch-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 20px;
  text-align: center;
}

.ch-stat-num {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--neon-cyan);
}

.ch-stat-lbl {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.ch-brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.ch-brand-chip {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 12px;
}

.ch-card-footer {
  margin-top: auto;
}

.ch-btn-full {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ==========================================================================
   Brand ROI Calculator Widget
   ========================================================================== */
.ch-calculator-box {
  background: linear-gradient(135deg, rgba(18, 20, 29, 0.9), rgba(10, 12, 18, 0.95));
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.ch-calc-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ch-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ch-form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

.ch-select, .ch-input, .ch-textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition-fast);
  outline: none;
  width: 100%;
}

.ch-select:focus, .ch-input:focus, .ch-textarea:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.ch-range-slider {
  width: 100%;
  accent-color: var(--neon-cyan);
  cursor: pointer;
  height: 6px;
}

.ch-calc-results {
  background: rgba(6, 7, 11, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ch-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.ch-res-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: var(--radius-sm);
}

.ch-res-val {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--neon-cyan);
}

.ch-res-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.ch-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.ch-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.ch-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--service-color, var(--neon-cyan));
  opacity: 0.7;
}

.ch-service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.ch-service-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--neon-gold);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.ch-service-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.ch-service-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 24px;
}

.ch-deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ch-deliverables-list li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ch-deliverables-list li::before {
  content: '✓';
  color: var(--neon-cyan);
  font-weight: 900;
}

/* ==========================================================================
   Case Studies
   ========================================================================== */
.ch-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
}

.ch-case-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: var(--transition-normal);
}

.ch-case-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-cyan);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
}

.ch-case-header {
  padding: 24px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ch-case-brand {
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.ch-case-body {
  padding: 28px;
}

.ch-case-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.ch-case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

/* ==========================================================================
   Modal Overlay
   ========================================================================== */
.ch-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 7, 11, 0.88);
  backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.ch-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ch-modal-container {
  background: var(--bg-dark);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  max-width: 850px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.95);
}

.ch-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.ch-modal-close:hover {
  background: var(--neon-pink);
  color: #fff;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.ch-footer {
  background: #040508;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 24px 40px 24px;
  margin-top: auto;
}

.ch-footer-grid {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.ch-footer-brand-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 360px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.ch-footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-main);
}

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

.ch-footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.ch-footer-links a:hover {
  color: var(--neon-cyan);
}

.ch-footer-bottom {
  max-width: 1380px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 992px) {
  .ch-calculator-box {
    grid-template-columns: 1fr;
  }
  .ch-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ch-nav-links {
    display: none;
  }
  .ch-mobile-toggle {
    display: block;
  }
  .ch-hero-title {
    font-size: 2.6rem;
  }
  .ch-creator-grid {
    grid-template-columns: 1fr;
  }
  .ch-footer-grid {
    grid-template-columns: 1fr;
  }
}


.ch-developer-watermark {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 20px 20px;
    margin-top: 10px;
    color: var(--text-dim);
    font-size: 12px;
    letter-spacing: 0.3px;
    opacity: 0.75;
}

    .ch-developer-watermark strong {
        color: #d4af37;
        font-weight: 600;
    }

    .ch-developer-watermark a {
        color: var(--text-dim);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .ch-developer-watermark a:hover {
            color: #d4af37;
        }

    .ch-developer-watermark .fa-linkedin-in {
        margin-right: 4px;
    }