/* ============================================================
   GOCMOGO.COM — Shared Stylesheet
   Ellen Koch | Fractional CMO
   Colors: Blues + Yellows + Pink pops | Light, airy, premium
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Blues */
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-900: #1e3a8a;

  /* Yellows */
  --yellow-50:  #fefce8;
  --yellow-100: #fef9c3;
  --yellow-300: #fde047;
  --yellow-400: #facc15;
  --yellow-500: #eab308;
  --yellow-600: #ca8a04;

  /* Pink pops */
  --pink-100: #fce7f3;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;

  /* Neutrals */
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Semantic */
  --bg:        #ffffff;
  --bg-soft:   #f8fafc;
  --bg-blue:   #eff6ff;
  --border:    #e2e8f0;
  --text:      #1e293b;
  --muted:     #64748b;
  --dim:       #94a3b8;

  /* Brand */
  --primary:   #2563eb;
  --primary-light: #60a5fa;
  --accent:    #facc15;
  --accent-dark: #ca8a04;
  --pop:       #ec4899;
  --pop-light: #f9a8d4;

  /* Spacing */
  --max-w: 1140px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(37,99,235,.07);
  --shadow-lg: 0 8px 32px rgba(37,99,235,.12);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--gray-900);
  font-weight: 700;
}
h1 { font-size: clamp(38px, 5.5vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 18px; }
p  { color: var(--muted); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pop);
  margin-bottom: 12px;
}

.lead {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section   { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* ── NAVBAR ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: white;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  font-family: 'Playfair Display', serif;
}

.nav-logo-text span { color: var(--pop); }

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--primary); }

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
  background: var(--blue-700) !important;
  transform: translateY(-1px);
  text-decoration: none !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 9px;
  padding: 13px 26px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-decoration: none !important;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
}

.btn-pink {
  background: var(--pop);
  color: white;
  border-color: var(--pop);
}
.btn-pink:hover {
  background: var(--pink-600);
  border-color: var(--pink-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(236,72,153,.25);
}

.btn-yellow {
  background: var(--accent);
  color: var(--gray-900);
  border-color: var(--accent);
}
.btn-yellow:hover {
  background: var(--yellow-500);
  transform: translateY(-2px);
}

.btn-lg { font-size: 16px; padding: 16px 32px; border-radius: 10px; }
.btn-sm { font-size: 13px; padding: 9px 18px; }

/* ── CARDS ── */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.badge-blue  { background: var(--blue-100); color: var(--blue-700); }
.badge-pink  { background: var(--pink-100); color: var(--pink-600); }
.badge-yellow { background: var(--yellow-100); color: var(--yellow-600); }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 56px; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 17px; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── HERO GRADIENT BLOB ── */
.blob-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}

/* ── STAT BAND ── */
.stat-band {
  background: var(--blue-900);
  color: white;
  padding: 48px 0;
}
.stat-band .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px;
  color: var(--blue-200);
  font-weight: 500;
}

/* ── TESTIMONIAL ── */
.testimonial-card {
  background: var(--bg-blue);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--gray-800);
  line-height: 1.65;
  margin-bottom: 20px;
}
.testimonial-card blockquote::before { content: '\201C'; font-size: 40px; color: var(--primary-light); line-height: 0; vertical-align: -16px; margin-right: 4px; }
.testimonial-card blockquote::after  { content: '\201D'; font-size: 40px; color: var(--primary-light); line-height: 0; vertical-align: -16px; margin-left: 4px; }
.testimonial-attribution {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.testimonial-attribution span {
  color: var(--muted);
  font-weight: 400;
}

/* ── PROCESS STEPS ── */
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37,99,235,.3);
}
.step-content h4 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.step-content p  { font-size: 14px; color: var(--muted); }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--pink-400); }
.footer-tagline {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 20px;
  line-height: 1.65;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.footer-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: 0.04em;
}
.footer-badge.pink { border-color: rgba(249,168,212,0.3); color: var(--pink-300); }
.footer h5 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  font-size: 14px;
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s;
}
.footer ul li a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-left { font-size: 13px; color: var(--gray-500); }
.footer-legal-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.footer-legal-links a {
  font-size: 13px;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--gray-300); }

/* ── HIGHLIGHT / MARK ── */
.text-highlight {
  background: linear-gradient(135deg, var(--accent), var(--yellow-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-blue { color: var(--primary); }
.text-pink { color: var(--pop); }

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.gap-3 { gap: 12px; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.gap-2 { gap: 8px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder {
  background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
  border: 2px dashed var(--blue-200);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blue-400);
  font-size: 14px;
  font-weight: 500;
}
.img-placeholder-icon { font-size: 36px; }

/* ── PINK ACCENT STRIPE ── */
.stripe-pink  { border-top: 4px solid var(--pop); }
.stripe-blue  { border-top: 4px solid var(--primary); }
.stripe-yellow { border-top: 4px solid var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .nav-toggle { display: flex; }
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
}

/* ── PRINT ── */
@media print {
  .nav, .footer { display: none; }
  body { font-size: 12px; }
}
