/* =========================================================
   Wild Ginger Marketing — Shared Stylesheet
   Color Palette:
     Teal primary:   #0d9488 / #14b8a6
     Orange accent:  #f97316
     Navy footer:    #1e293b
     Slate text:     #0f172a / #64748b
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
}

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p  { color: #475569; }

.accent-teal   { color: #0d9488; }
.accent-orange { color: #f97316; }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* ── Navigation ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: #0f172a;
}

.navbar-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.brand-name {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  color: #0f172a;
}

.brand-tagline {
  font-size: .7rem;
  color: #64748b;
  font-weight: 400;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.navbar-links a {
  text-decoration: none;
  color: #475569;
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}

.navbar-links a:hover,
.navbar-links a.active { color: #0d9488; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
}

.btn-primary {
  background: #f97316;
  color: #ffffff;
  border-color: #f97316;
}

.btn-primary:hover {
  background: #ea6c0a;
  border-color: #ea6c0a;
}

.btn-secondary {
  background: transparent;
  color: #0d9488;
  border-color: #0d9488;
}

.btn-secondary:hover {
  background: #0d9488;
  color: #ffffff;
}

.btn-white {
  background: #ffffff;
  color: #0d9488;
  border-color: #ffffff;
}

.btn-white:hover {
  background: #f0fdfa;
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
}

/* ── Hero Section ── */
.hero {
  background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 50%, #f8fafc 100%);
  padding: 5rem 0 4rem;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  background: #ccfbf1;
  color: #0d9488;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.hero-title { margin-bottom: 1.25rem; }

.hero-desc {
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 2rem;
  max-width: 520px;
}

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

.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: #475569;
  font-weight: 500;
}

.trust-badge svg {
  color: #0d9488;
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.hero-badge-card {
  position: absolute;
  bottom: 1.5rem;
  left: -1rem;
  background: #ffffff;
  border-radius: 1rem;
  padding: .75rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.hero-badge-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #0d9488, #0ea5e9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.hero-badge-text strong {
  display: block;
  font-size: .85rem;
  color: #0f172a;
}

.hero-badge-text span {
  font-size: .75rem;
  color: #64748b;
}

/* ── Stats Strip ── */
.stats-strip {
  background: linear-gradient(135deg, #0d9488 0%, #0ea5e9 100%);
  padding: 3rem 0;
}

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

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: #f97316;
  display: block;
}

.stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  background: #ccfbf1;
  color: #0d9488;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

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

.section-header p {
  max-width: 600px;
  margin: .75rem auto 0;
  font-size: 1.05rem;
}

/* ── Cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border: 1px solid #f1f5f9;
  transition: transform .2s, box-shadow .2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: #f0fdfa;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #0d9488;
  font-size: 1.4rem;
}

.card h3 { margin-bottom: .5rem; color: #0f172a; }
.card p  { font-size: .9rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1.25rem;
  color: #0d9488;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
}

.card-link:hover { color: #f97316; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, #0d9488 0%, #0369a1 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 { color: #ffffff; margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,.85); margin-bottom: 2rem; font-size: 1.05rem; }

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

/* ── Footer ── */
.footer {
  background: #1e293b;
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}

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

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: .75rem;
}

.footer-brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: .5rem;
}

.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-top: .5rem;
  max-width: 280px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

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

.footer-col ul li {
  margin-bottom: .6rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}

.footer-col ul li a:hover { color: #14b8a6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ── 404 Page ── */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.page-404 h1 { font-size: 6rem; color: #0d9488; margin-bottom: .5rem; }
.page-404 h2 { margin-bottom: 1rem; }
.page-404 p  { margin-bottom: 2rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .navbar-links { display: none; }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}
