/* ==========================================================================
   iOven.ai — Shared Stylesheet
   Palette: Indigo #4F46E5, Violet #7C3AED, Pink #DB2777, Cyan #06B6D4,
            Teal #14B8A6, Ink #1F2430
   Headings: Poppins (SemiBold/Bold) · Body: Inter (Regular)
   ========================================================================== */

:root {
  --indigo: #4F46E5;
  --violet: #7C3AED;
  --pink: #DB2777;
  --cyan: #06B6D4;
  --teal: #14B8A6;
  --ink: #1F2430;

  --grad-brand: linear-gradient(90deg, var(--indigo), var(--violet), var(--pink));
  --grad-ai: linear-gradient(90deg, var(--cyan), var(--teal));
  --grad-btn: linear-gradient(90deg, var(--indigo), var(--pink));
  --grad-btn-alt: linear-gradient(90deg, var(--cyan), var(--teal));
  --grad-hero: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 45%, var(--pink) 100%);

  --bg: #ffffff;
  --bg-soft: #F7F7FB;
  --border: #E7E7F1;
  --muted: #5B6270;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(31, 36, 48, 0.08);
  --shadow-hover: 0 12px 32px rgba(31, 36, 48, 0.14);

  --container: 1180px;
  --nav-h: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Roboto, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding-left: 1.2em; }

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

.eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--grad-ai);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.section {
  padding: 88px 0;
}
.section--tight { padding: 56px 0; }
.section--soft { background: var(--bg-soft); }

.section-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.btn-primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 8px 20px rgba(219, 39, 119, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(219, 39, 119, 0.35); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--indigo); color: var(--indigo); transform: translateY(-2px); }
.btn-on-dark {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-on-dark:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
}
.logo .l1 { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo .l2 { background: var(--grad-ai); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--violet); }
.nav-links a.active { color: var(--indigo); font-weight: 600; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  border-radius: 2px;
  background: var(--grad-btn);
}
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-140%);
    transition: transform 0.3s ease;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: block; }
  .nav-cta .btn-primary.desktop-only { display: none; }
}

/* ---------------- Hero ---------------- */
.hero {
  background: var(--grad-hero);
  color: #fff;
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.12) 0, transparent 40%),
                     radial-gradient(circle at 85% 80%, rgba(255,255,255,0.10) 0, transparent 45%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-inner .eyebrow { background: none; -webkit-text-fill-color: unset; color: rgba(255,255,255,0.85); }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero .lead { font-size: 1.15rem; color: rgba(255,255,255,0.9); max-width: 620px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-tagline {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 18px;
  border-radius: 999px;
}
.page-hero {
  background: var(--grad-hero);
  color: #fff;
  padding: 64px 0 72px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.9); max-width: 620px; margin: 0 auto; }

/* ---------------- Cards ---------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: transparent; }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: var(--grad-btn);
  color: #fff;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.card-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link:hover { color: var(--pink); }

@media (max-width: 960px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }

/* ---------------- Why / advantage points ---------------- */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.advantage {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.advantage-dot {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad-ai);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.advantage-dot svg { width: 20px; height: 20px; }
.advantage h4 { margin-bottom: 4px; font-size: 1.05rem; }
.advantage p { color: var(--muted); font-size: 0.92rem; margin: 0; }
@media (max-width: 900px) { .advantage-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .advantage-grid { grid-template-columns: 1fr; } }

/* ---------------- Industries chips ---------------- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.chip {
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 14.5px;
  transition: 0.2s ease;
}
.chip:hover { background: #fff; border-color: var(--violet); color: var(--violet); box-shadow: var(--shadow); }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  color: #fff;
  box-shadow: var(--shadow);
}
.industry-card h3 { color: #fff; }
.industry-card p { color: rgba(255,255,255,0.9); margin: 0; font-size: 0.93rem; }
.industry-card:nth-child(1) { background: linear-gradient(135deg, var(--indigo), var(--violet)); }
.industry-card:nth-child(2) { background: linear-gradient(135deg, var(--violet), var(--pink)); }
.industry-card:nth-child(3) { background: linear-gradient(135deg, var(--pink), #b8477a); }
.industry-card:nth-child(4) { background: linear-gradient(135deg, var(--cyan), var(--teal)); }
.industry-card:nth-child(5) { background: linear-gradient(135deg, var(--teal), #0f8f7a); }
@media (max-width: 960px) { .industry-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .industry-grid { grid-template-columns: 1fr; } }

/* ---------------- Leadership ---------------- */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.leader-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  text-align: center;
}
.leader-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 4px var(--border);
  overflow: hidden;  
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* crops to fill, no stretching */
  object-position: center top; /* adjust if faces get cropped oddly */
}

.leader-card h3 { margin-bottom: 2px; }
.leader-title { color: var(--violet); font-weight: 600; font-size: 0.9rem; margin-bottom: 14px; }
.leader-card p.bio { color: var(--muted); font-size: 0.93rem; }
.leader-links { display: flex; justify-content: center; gap: 12px; margin-top: 12px; }
.icon-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  transition: 0.2s ease;
}
.icon-btn:hover { background: var(--grad-ai); color: #fff; }
.icon-btn svg { width: 18px; height: 18px; }
@media (max-width: 720px) { .leader-grid { grid-template-columns: 1fr; } }

/* Leadership teaser on home */
.teaser-row {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.teaser-person { display: flex; align-items: center; gap: 14px; }
.teaser-photo {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad-brand);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700;
}
.teaser-person strong { display: block; font-size: 0.95rem; }
.teaser-person span { font-size: 0.82rem; color: var(--muted); }

/* ---------------- Stats band ---------------- */
.stats-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  background: var(--grad-ai);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 4px; }
@media (max-width: 760px) { .stats-band { grid-template-columns: 1fr 1fr; } }

/* ---------------- CTA band ---------------- */
.cta-band {
  background: var(--grad-hero);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  color: #fff;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.9); margin-bottom: 28px; }

/* ---------------- Service detail rows ---------------- */
.service-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }
.service-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.service-icon svg { width: 34px; height: 34px; }
.service-row:nth-child(1) .service-icon { background: linear-gradient(135deg, var(--indigo), var(--violet)); }
.service-row:nth-child(2) .service-icon { background: linear-gradient(135deg, var(--violet), var(--pink)); }
.service-row:nth-child(3) .service-icon { background: linear-gradient(135deg, var(--pink), #b8477a); }
.service-row:nth-child(4) .service-icon { background: linear-gradient(135deg, var(--cyan), var(--teal)); }
.service-row:nth-child(5) .service-icon { background: linear-gradient(135deg, var(--indigo), var(--cyan)); }
.service-row:nth-child(6) .service-icon { background: linear-gradient(135deg, var(--teal), #0f8f7a); }
.service-row h3 { margin-bottom: 8px; font-size: 1.4rem; }
.service-row ul { margin: 0 0 18px; padding-left: 20px; color: var(--muted); font-size: 0.95rem; }
.service-row li { margin-bottom: 4px; }
@media (max-width: 640px) {
  .service-row { grid-template-columns: 1fr; text-align: left; }
}

/* ---------------- Values ---------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.value-pill {
  text-align: center;
  padding: 24px 12px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  font-weight: 600;
  font-size: 0.92rem;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.vm-card .eyebrow { margin-bottom: 8px; }
@media (max-width: 720px) { .vm-grid { grid-template-columns: 1fr; } }

/* ---------------- Contact ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-info-row { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info-row .icon-btn { flex-shrink: 0; background: #fff; }
.contact-info-row h4 { margin-bottom: 2px; font-size: 0.95rem; }
.contact-info-row p, .contact-info-row a { color: var(--muted); font-size: 0.92rem; margin: 0; }
.contact-info-row a:hover { color: var(--indigo); }
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid var(--border);
}
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(79,70,229,0.12);
}
.form-note { font-size: 13px; color: var(--muted); margin-top: -4px; }
.form-status { font-size: 14px; font-weight: 600; margin-top: 12px; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: var(--teal); }

/* Honeypot field — hidden from real users */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.92rem; max-width: 280px; }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.92rem; transition: color 0.2s ease; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social .icon-btn { background: rgba(255,255,255,0.08); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 20px; }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------------- Scroll reveal ---------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card:hover, .btn:hover, .btn-primary:hover, .btn-ghost:hover { transform: none; }
}

/* ---------------- Divider ---------------- */
.grad-divider {
  height: 4px;
  background: var(--grad-brand);
  border: none;
  margin: 0;
}

/* ---------------- Misc page hero small ---------------- */
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 10px; }


/* Advisory board */
.advisor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.advisor-card {
  display: flex;
  gap: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.advisor-photo {
  width: 68px; height: 68px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad-ai);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
}
.advisor-card h3 { margin-bottom: 2px; font-size: 1.1rem; }
.advisor-title { color: var(--teal); font-weight: 600; font-size: 0.85rem; margin-bottom: 10px; }
.advisor-card p.bio { color: var(--muted); font-size: 0.9rem; margin: 0; }
@media (max-width: 720px) { .advisor-grid { grid-template-columns: 1fr; } }
