/* ==========================================================================
   Be Your Champion (BYC) — Material-inspired cold theme
   Palette sampled from the brand logo (Google Blue) + crown orange accent
   ========================================================================== */

:root {
  /* Cold, Google-style palette */
  --primary: #4285f4;         /* Google blue / logo blue */
  --primary-dark: #1a56c4;
  --primary-darker: #174ea6;
  --primary-light: #e8f0fe;   /* Google's light blue tint */
  --accent: #ff8f1c;          /* logo crown orange — used sparingly */
  --accent-dark: #e6790a;

  --bg: #f4f7fb;              /* cold light grey-blue background */
  --surface: #ffffff;
  --surface-alt: #eef2f8;
  --border: #dde3ec;

  --text-primary: #202124;
  --text-secondary: #5f6368;
  --text-on-primary: #ffffff;

  --shadow-1: 0 1px 2px 0 rgba(60,64,67,0.30), 0 1px 3px 1px rgba(60,64,67,0.15);
  --shadow-2: 0 1px 3px 0 rgba(60,64,67,0.30), 0 4px 8px 3px rgba(60,64,67,0.15);
  --shadow-3: 0 2px 6px 2px rgba(60,64,67,0.15), 0 1px 2px 0 rgba(60,64,67,0.30);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: "Google Sans", "Roboto", Arial, sans-serif;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 16px; color: var(--text-secondary); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ---------- Buttons (Material) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: box-shadow .18s ease, background .18s ease, transform .05s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-1);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-2); }

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-1);
}
.btn-accent:hover { background: var(--accent-dark); box-shadow: var(--shadow-2); }

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { background: var(--primary-light); border-color: var(--primary-light); }

.btn-lg { padding: 14px 34px; font-size: 1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
}
.brand:hover { text-decoration: none; }
.brand img { width: 44px; height: 44px; border-radius: 50%; }
.brand-name {
  font-family: "Google Sans", "Roboto", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.15;
}
.brand-name span { display: block; font-size: 0.68rem; font-weight: 500; color: var(--text-secondary); letter-spacing: 0.04em; text-transform: uppercase; }
.brand-name .champion { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
}
.nav-links a:hover { background: var(--primary-light); color: var(--primary-dark); text-decoration: none; }
.nav-links a.active { color: var(--primary-dark); background: var(--primary-light); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
}
.nav-toggle:hover { background: var(--surface-alt); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(155deg, #eef4ff 0%, #f4f7fb 55%, #f4f7fb 100%);
  padding: 72px 0 88px;
  overflow: hidden;
  position: relative;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-copy p.lead {
  font-size: 1.1rem;
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: "Google Sans", "Roboto", Arial, sans-serif;
}
.hero-stats div span { font-size: 0.85rem; color: var(--text-secondary); }

.hero-art {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
  padding: 40px;
  text-align: center;
  position: relative;
}
.hero-art img { width: 100%; max-width: 320px; margin: 0 auto; }
.hero-art .badge-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.pill {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}
.pill.accent { background: #fff3e6; color: var(--accent-dark); }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-alt { background: var(--surface); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

/* ---------- Cards / Grid ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--border);
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-badge.accent { background: #fff3e6; color: var(--accent-dark); }
.icon-badge .icon { width: 26px; height: 26px; }

.icon {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}

.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; }

/* Stat strip */
.stat-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
}
.stat-strip .grid-4 { text-align: center; }
.stat-strip strong { display: block; font-size: 2.1rem; font-family: "Google Sans", "Roboto", Arial, sans-serif; }
.stat-strip span { font-size: 0.85rem; opacity: 0.85; }

/* Steps / process */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step { position: relative; padding-top: 8px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Timeline (About) */
.timeline {
  border-left: 3px solid var(--primary-light);
  margin-left: 12px;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.timeline-item { position: relative; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--primary-light);
}
.timeline-item strong { color: var(--primary-dark); display: block; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 4px; }

/* Values */
.value-row { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 28px; }
.value-row .icon-badge { flex-shrink: 0; margin-bottom: 0; }

/* CTA band */
.cta-band {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  box-shadow: var(--shadow-1);
}
.cta-band h2 { margin-bottom: 8px; }
.cta-band .btn-row { display: flex; justify-content: center; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

/* ---------- Contact page ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}
.contact-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
  padding: 32px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .icon-badge { margin-bottom: 0; flex-shrink: 0; }
.contact-item h4 { margin: 0 0 4px; font-size: 0.95rem; }
.contact-item p { margin: 0 0 4px; }
.contact-item p:last-child { margin-bottom: 0; }
.contact-item a { color: var(--text-secondary); }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 24px;
  box-shadow: var(--shadow-1);
}
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

/* Form (Material text fields) */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 500; color: var(--text-primary); }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-primary);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--text-secondary); margin-top: -8px; }
.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.form-status.success { display: block; background: #e6f4ea; color: #1e7a34; }
.form-status.error { display: block; background: #fce8e6; color: #c5221f; }

/* ---------- Footer ---------- */
.site-footer {
  background: #16233d;
  color: #c9d3e0;
  padding: 56px 0 24px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 40px; height: 40px; border-radius: 50%; }
.footer-brand strong { color: #fff; font-family: "Google Sans", "Roboto", Arial, sans-serif; }
.site-footer h4 { color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.site-footer a { color: #c9d3e0; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.82rem;
  color: #8b98ac;
  flex-wrap: wrap;
  gap: 12px;
}
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.social-row a:hover { background: var(--primary); }

/* ---------- About hero ---------- */
.page-hero {
  background: linear-gradient(155deg, #eef4ff 0%, #f4f7fb 60%);
  padding: 56px 0;
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero p.lead { max-width: 60ch; margin: 0 auto; font-size: 1.05rem; }

/* Breadcrumb-ish */
.crumbs { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 10px; }
.crumbs a { color: var(--text-secondary); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 380px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-2);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
  .nav-cta .btn span.btn-text-full { display: none; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 24px; }
  .hero { padding: 48px 0 64px; }
  section { padding: 52px 0; }
  .stat-strip { padding: 32px 20px; }
}
