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

:root {
  --bg: #d6e4f5;
  --bg-2: #deeaf8;
  --bg-3: #ccdcef;
  --bg-card: #e4ecf9;
  --border: rgba(0,51,102,0.12);
  --border-hover: rgba(0,51,102,0.22);
  --text: #001a33;
  --text-soft: #1a3a5c;
  --text-light: #335577;
  --brand: #003366;
  --brand-dark: #001a33;
  --accent: #0059b3;
  --accent-hover: #004080;
  --accent-light: #3385cc;
  --accent-glow: rgba(0,89,179,0.2);
  --accent-2: #0066cc;
  --green: #0059b3;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 99px;
  --shadow-sm: 0 1px 3px rgba(0,51,102,0.06);
  --shadow-md: 0 4px 16px rgba(0,51,102,0.08);
  --shadow-lg: 0 12px 40px rgba(0,51,102,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 24px var(--accent-glow);
  transform: translateY(-2px);
}
.btn-ghost { background: transparent; color: var(--text-soft); }
.btn-ghost:hover { color: var(--brand); background: rgba(0,51,102,0.05); }
.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--border-hover);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.w-full { width: 100%; }

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0,89,179,0.25);
  background: rgba(0,89,179,0.08);
  color: var(--accent-hover);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(240,244,248,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin-left: 16px;
}
.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-cta { display: flex; gap: 8px; margin-left: auto; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-soft); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background: linear-gradient(170deg, var(--brand-dark) 0%, var(--brand) 60%, #004080 100%);
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 400px;
  background: rgba(0,89,179,0.15);
  top: -100px; left: 50%;
  transform: translateX(-50%);
}
.glow-2 {
  width: 300px; height: 300px;
  background: rgba(0,89,179,0.1);
  top: 200px; right: 10%;
}

/* Home hero: split layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { max-width: 600px; }
.hero-text h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 20px;
}
.accent {
  color: var(--accent-light);
}
.hero-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-actions .btn-ghost { color: rgba(255,255,255,0.9); }
.hero-actions .btn-ghost:hover { color: #fff; background: rgba(255,255,255,0.1); }
.hero .badge { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.12); color: #ffffff; }
.hero-mascot {
  width: 320px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Centered hero variant (for sub-pages) */
.hero-centered {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.hero-centered h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 20px;
}
.hero-centered p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── SECTION COMMON ── */
.section { padding: 100px 0; }
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--brand);
  margin-bottom: 16px;
}
.section-header p { color: var(--text-soft); font-size: 16px; line-height: 1.75; }

/* ── PROBLEM TABS (home page) ── */
.problems { background: var(--bg-2); }
.problem-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.problem-tab {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}
.problem-tab:hover { border-color: var(--border-hover); color: var(--brand); }
.problem-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.problem-panel {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.problem-panel.active { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.problem-panel h3 { font-size: 22px; font-weight: 700; color: var(--brand); margin-bottom: 12px; }
.problem-panel p { font-size: 15px; color: var(--text-soft); line-height: 1.75; margin-bottom: 24px; }
.problem-panel .mascot-small { width: 180px; height: auto; opacity: 0.9; }

/* ── SERVICES ── */
.services-section { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(0,89,179,0.08);
  border: 1px solid rgba(0,89,179,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-hover);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--brand); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-soft); line-height: 1.7; }
.service-card-highlight {
  border-color: rgba(0,89,179,0.25);
  background: linear-gradient(160deg, rgba(0,89,179,0.04), var(--bg-card));
}
.card-tag {
  display: inline-flex;
  margin-top: 14px;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-hover);
  background: rgba(0,89,179,0.08);
  border: 1px solid rgba(0,89,179,0.15);
}

/* ── ENGAGEMENT MODELS (services page) ── */
.engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.engage-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s;
  box-shadow: var(--shadow-sm);
}
.engage-card:hover { border-color: var(--border-hover); }
.engage-card h3 { font-size: 16px; font-weight: 700; color: var(--brand); margin-bottom: 8px; }
.engage-card .engage-for {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-hover);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.engage-card p { font-size: 14px; color: var(--text-soft); line-height: 1.65; }

/* ── DIFF BAND ── */
.diff-band {
  padding: 72px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.diff-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.diff-item {
  flex: 1;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 0 40px;
}
.diff-item:first-child { padding-left: 0; }
.diff-item:last-child { padding-right: 0; }
.diff-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  min-width: 52px; max-width: 52px;
  min-height: 52px; max-height: 52px;
  background: rgba(0,89,179,0.08);
  border: 1px solid rgba(0,89,179,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-hover);
  overflow: hidden;
}
.diff-icon svg { width: 24px; height: 24px; flex-shrink: 0; }
.diff-item h3 { font-size: 16px; font-weight: 700; color: var(--brand); margin-bottom: 8px; }
.diff-item p { font-size: 14px; color: var(--text-soft); line-height: 1.7; }
.diff-divider { width: 1px; align-self: stretch; background: var(--border); flex-shrink: 0; }

/* ── APPROACH CARDS ── */
.approach { background: var(--bg); }
.approach-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.approach-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.25s, transform 0.25s;
  box-shadow: var(--shadow-sm);
}
.approach-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.approach-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.approach-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 12px;
  line-height: 1.35;
}
.approach-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ── ABOUT PAGE: VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, transform 0.25s;
  box-shadow: var(--shadow-sm);
}
.value-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: rgba(0,89,179,0.08);
  border: 1px solid rgba(0,89,179,0.15);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-hover);
}
.value-icon svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 17px; font-weight: 700; color: var(--brand); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-soft); line-height: 1.7; }

/* About: story split */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-text h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--brand);
  margin-bottom: 20px;
  line-height: 1.2;
}
.story-text p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}
.story-text p:last-child { margin-bottom: 0; }
.story-img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(0,51,102,0.15));
}

/* ── WHO WE SERVE ── */
.who-section { background: var(--bg); }
.who-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.who-text .badge { margin-bottom: 16px; }
.who-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--brand);
  margin-bottom: 16px;
  line-height: 1.2;
}
.who-text > p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.who-criteria { display: flex; flex-direction: column; gap: 16px; }
.who-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
}
.who-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(0,89,179,0.1);
  border: 1px solid rgba(0,89,179,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  margin-top: 1px;
}
.who-check svg { width: 12px; height: 12px; }

/* Pricing philosophy card */
.pricing-philosophy {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.pp-icon {
  width: 56px; height: 56px;
  background: rgba(0,89,179,0.08);
  border: 1px solid rgba(0,89,179,0.15);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-hover);
  margin-bottom: 20px;
}
.pricing-philosophy h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 12px;
}
.pricing-philosophy > p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}
.pp-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.pp-point { margin-bottom: 18px; }
.pp-point:last-of-type { margin-bottom: 0; }
.pp-point strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 4px;
}
.pp-point p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ── FEATURE LIST (reusable) ── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(0,89,179,0.1);
  border: 1px solid rgba(0,89,179,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--green);
}
.feature-check svg { width: 13px; height: 13px; }
.feature-list strong { display: block; color: var(--brand); font-size: 15px; margin-bottom: 3px; }
.feature-list p { color: var(--text-soft); font-size: 14px; line-height: 1.65; }

/* ── CTA / CONTACT ── */
.cta-section { background: var(--bg-2); }
.cta-box {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 56px;
  background: var(--brand);
  border: none;
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.glow-cta {
  position: absolute;
  width: 400px; height: 300px;
  background: rgba(0,89,179,0.15);
  border-radius: 50%;
  filter: blur(60px);
  top: -80px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-box .badge {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: var(--accent-light);
}
.cta-box h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
.cta-box > p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 36px; }
.cta-box .btn-primary { background: #fff; color: var(--brand); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.cta-box .btn-primary:hover { background: var(--accent-light); color: var(--brand-dark); }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { font-size: 20px; font-weight: 700; color: var(--brand); margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--text-soft); line-height: 1.75; margin-bottom: 24px; }
.contact-detail {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text);
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(0,89,179,0.08);
  border: 1px solid rgba(0,89,179,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-hover);
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: 20px; font-weight: 700; color: var(--brand); margin-bottom: 8px; }
.contact-form-card > p { font-size: 14px; color: var(--text-soft); margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.contact-form select { appearance: auto; cursor: pointer; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-light); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.contact-form button { align-self: flex-start; }
.contact-mascot {
  width: 120px;
  margin: 32px auto 0;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,51,102,0.15));
}

/* Form shared */
.cta-form { display: flex; flex-direction: column; gap: 12px; text-align: left; position: relative; z-index: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-form input, .cta-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.cta-form input:focus, .cta-form textarea:focus {
  border-color: var(--accent-light);
  background: rgba(255,255,255,0.15);
}
.cta-form button { align-self: center; min-width: 220px; }
.cta-success {
  display: none;
  margin-top: 16px;
  padding: 14px 24px;
  background: rgba(0,89,179,0.1);
  border: 1px solid rgba(0,89,179,0.25);
  border-radius: 12px;
  color: var(--green);
  font-size: 15px;
  font-weight: 500;
}
.cta-success.show { display: block; }

/* Calendar section */
.calendar-section { background: var(--bg-2); }
.calendar-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.calendar-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 16px;
  line-height: 1.2;
}
.calendar-text p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 24px;
}
.calendar-embed {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.calendar-embed p { color: var(--text-light); font-size: 14px; }
.calendar-embed .cal-icon {
  width: 64px; height: 64px;
  background: rgba(0,89,179,0.08);
  border: 1px solid rgba(0,89,179,0.15);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-hover);
  margin-bottom: 8px;
}
.calendar-embed .cal-icon svg { width: 32px; height: 32px; }

/* ── TALK TO US FLOATING BUTTON ── */
.talk-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px 12px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,89,179,0.35);
  text-decoration: none;
  transition: all 0.3s ease;
  animation: float-btn 3s ease-in-out infinite;
}
.talk-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 40px rgba(0,89,179,0.5);
}
.talk-float img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
}
@keyframes float-btn {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ── FOOTER ── */
.footer {
  background: var(--brand-dark);
  color: #fff;
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { font-size: 18px; display: inline-block; margin-bottom: 12px; color: #fff; background: none; -webkit-text-fill-color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; max-width: 260px; }
.footer-location {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .engage-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-cards { grid-template-columns: repeat(2, 1fr); }
  .who-split { grid-template-columns: 1fr; gap: 40px; }
  .story-split { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .calendar-split { grid-template-columns: 1fr; }
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-mascot { width: 220px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .problem-panel.active { grid-template-columns: 1fr; }
  .problem-panel .mascot-small { display: none; }
  .diff-grid { flex-direction: column; gap: 32px; }
  .diff-item { padding: 0 !important; }
  .diff-divider { width: 100%; height: 1px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .hero { padding: 120px 0 64px; }
  .services-grid { grid-template-columns: 1fr; }
  .engage-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .approach-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 36px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-mascot { width: 180px; }
  .talk-float span { display: none; }
  .talk-float { padding: 12px; }
}
