/* Geovant Energy — shared styles */
:root {
  --navy: #1f2a7a;
  --navy-dark: #16205e;
  --navy-light: #3a47a5;
  --lavender: #dfe2f2;
  --lavender-soft: #eef0f9;
  --grey: #6b7080;
  --text: #22263a;
  --white: #ffffff;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; }

a { color: var(--navy); text-decoration: none; }

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

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--lavender);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.brand svg { width: 44px; height: 44px; }

.brand-text { line-height: 1.15; }

.brand-name {
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--navy);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.brand-tag {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--grey);
  text-transform: uppercase;
}

nav.menu { display: flex; gap: 26px; align-items: center; }

nav.menu a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

nav.menu a:hover { color: var(--navy); }

nav.menu a.active { color: var(--navy); border-bottom-color: var(--navy); }

.btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn:hover { background: var(--navy-dark); border-color: var(--navy-dark); }

.btn.ghost { background: transparent; color: var(--navy); }

.btn.ghost:hover { background: var(--navy); color: var(--white); }

nav.menu .btn { padding: 9px 22px; color: var(--white); border-bottom: none; }

nav.menu .btn:hover { color: var(--white); }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--navy); cursor: pointer; }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  nav.menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 18px 24px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--lavender);
  }
  nav.menu.open { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 90px 0 100px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -220px;
  top: -160px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: var(--lavender);
  opacity: 0.65;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  color: var(--navy);
  line-height: 1.15;
  max-width: 720px;
  margin-bottom: 20px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--grey);
  max-width: 620px;
  margin-bottom: 34px;
}

.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }

section.alt { background: var(--lavender-soft); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 10px;
}

.section-sub { color: var(--grey); max-width: 640px; margin-bottom: 40px; }

.rule {
  width: 64px;
  height: 4px;
  background: var(--navy);
  border-radius: 2px;
  margin: 18px 0 28px;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--navy-light);
  opacity: 0.35;
}

.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); position: relative; z-index: 1; }

.page-hero p { color: var(--lavender); max-width: 640px; margin-top: 10px; position: relative; z-index: 1; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 24px; }

.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--lavender);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 6px 18px rgba(34, 38, 58, 0.14);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(31, 42, 122, 0.12);
}

.card h3 { color: var(--navy); font-size: 1.12rem; margin-bottom: 10px; }

.card p { color: var(--grey); font-size: 0.95rem; }

.shaded-cards .card { background: var(--lavender-soft); }

.shaded-cards .card .icon { background: var(--white); }

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--lavender-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--navy);
}

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }

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

.stat .num { font-size: 2.2rem; font-weight: 800; color: var(--navy); }

.stat .label { color: var(--grey); font-size: 0.9rem; }

/* Checklist */
ul.checklist { list-style: none; }

ul.checklist li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: var(--text);
}

ul.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--lavender); }

table { width: 100%; border-collapse: collapse; background: var(--white); }

th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 14px 18px;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

td { padding: 13px 18px; border-top: 1px solid var(--lavender); font-size: 0.94rem; }

tr:nth-child(even) td { background: var(--lavender-soft); }

/* ---------- Team ---------- */
.team-card {
  background: var(--white);
  border: 1px solid var(--lavender);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(34, 38, 58, 0.14);
}

.team-card .role-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.team-card .avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--navy);
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.team-card p { color: var(--grey); font-size: 0.93rem; }

/* ---------- Forms ---------- */
form .field { margin-bottom: 18px; }

label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.92rem; color: var(--navy-dark); }

input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--lavender);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(58, 71, 165, 0.15);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band h2 { font-size: 1.6rem; }

.cta-band p { color: var(--lavender); }

.cta-band .btn { background: var(--white); color: var(--navy); border-color: var(--white); }

.cta-band .btn:hover { background: var(--lavender); border-color: var(--lavender); }

/* ---------- Footer ---------- */
footer { background: var(--navy-dark); color: var(--lavender); padding: 56px 0 28px; margin-top: 72px; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }

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

footer h4 { color: var(--white); margin-bottom: 14px; font-size: 1rem; }

footer a { color: var(--lavender); display: block; margin-bottom: 8px; font-size: 0.92rem; }

footer a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
