@charset "UTF-8";
/* ai.scss -> ai.css */
:root {
  --ai-ink: #000000;
  --ai-accent: #0a9c80; /* green accent for highlight */
  --ai-btn: #003c64; /* deep blue buttons */
  --ai-pill: #007d5c; /* green pills on image */
  --ai-white: #ffffff;
}

/* Header (final) */
/* Fallback tokens */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1200;
  background: #ffffff;
  color: #000000;
  border-bottom: 1px solid #efefef;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.site-header.is-top {
  background: transparent;
  border-color: transparent;
}
.site-header.is-top .nav-link,
.site-header.is-top .nav-link--btn {
  color: #ffffff;
}
.site-header.is-top .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}
.site-header.is-top .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}
.site-header.is-top .caret {
  border-color: #ffffff;
}
.site-header.is-scrolled {
  background: #ffffff;
  border-bottom: 1px solid #efefef;
}
.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .nav-link--btn {
  color: #000000;
}
.site-header.is-scrolled .btn-outline {
  color: #000000;
  border-color: rgba(0, 0, 0, 0.55);
}
.site-header.is-scrolled .btn-outline:hover {
  background: rgba(0, 0, 0, 0.06);
}
.site-header.is-scrolled .caret {
  border-color: currentColor;
}
.site-header .header-bar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand: title below logo */
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-decoration: none;
}
.brand .brand-mark {
  height: 58px;
  display: block;
}
.brand .brand-title {
  height: 12px;
  display: block;
}

/* Mobile hamburger -> X */
.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background: transparent;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.menu-toggle .bar {
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle .bar:nth-child(1) {
  transform: translateY(-6px);
}
.menu-toggle .bar:nth-child(2) {
  transform: translateY(0);
}
.menu-toggle .bar:nth-child(3) {
  transform: translateY(6px);
}
.menu-toggle.is-open .bar:nth-child(1) {
  transform: rotate(45deg);
}
.menu-toggle.is-open .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open .bar:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex: 1 1 auto;
  margin-left: 8px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link,
.nav-link--btn {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(12px, 1.1vw, 16px);
  line-height: 1;
  padding: 10px 0;
  background: none;
  border: none;
  cursor: pointer;
}

/* Pill for current */
.nav-link.is-current {
  background: #007d5c;
  color: #000000;
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(181, 244, 51, 0.22);
}

/* Mega dropdown (click) */
.has-mega {
  position: relative;
}

.has-mega .nav-link--btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.has-mega .caret {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  vertical-align: middle;
  transition: transform 0.2s ease;
  margin-left: 4px;
  margin-bottom: 4px;
}

.has-mega .mega {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  display: none;
  z-index: 1202;
}

.has-mega .mega-panel {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  min-width: 420px;
}

.has-mega .mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 8px 22px;
  list-style: none;
  margin: 0;
  padding: 2px;
}

.has-mega .dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #000000;
  padding: 6px 4px;
  border-radius: 10px;
}

.has-mega .dd-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1.5px solid #d9d9d9;
  display: grid;
  place-items: center;
  background: #ffffff;
  transition: background-color 0.12s ease, border-color 0.12s ease;
  will-change: background-color, border-color; /* prevents flicker */
}

.has-mega .dd-icon img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: none;
  transition: filter 0.12s ease;
  will-change: filter; /* prevents flicker */
}

.has-mega .dd-label {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: #000000;
}

/* Hover invert (no splash) */
.has-mega .dd-item:hover .dd-icon,
.has-mega .dd-item:focus-visible .dd-icon {
  background: #000000;
  border-color: #000000;
}

.has-mega .dd-item:hover .dd-icon img,
.has-mega .dd-item:focus-visible .dd-icon img {
  filter: invert(1) brightness(2);
}

/* FAQ tile: keep white icon (only this one) */
.has-mega .dd-item--faq .dd-icon {
  background: #000000;
  border-color: #000000;
}

.has-mega .dd-item--faq .dd-icon img {
  filter: invert(1) brightness(2);
}

/* Only one active tile (set by JS) */
.has-mega .dd-item.is-active .dd-icon {
  background: #000000;
  border-color: #000000;
}

.has-mega .dd-item.is-active .dd-icon img {
  filter: invert(1) brightness(2);
}

.has-mega.open .mega {
  display: block;
}

.has-mega.open .caret {
  transform: rotate(225deg);
  margin-bottom: -5px;
}

/* CTAs */
.cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cta-group .login-btn {
  width: 132;
  height: 44;
  gap: 10px;
  opacity: 1;
  border-width: 1px;
  border-radius: 15px;
  padding-top: 8px;
  padding-right: 24px;
  padding-bottom: 8px;
  padding-left: 24px;
}
.cta-group .create-account-btn {
  width: 157;
  height: 44;
  gap: 10px;
  opacity: 1;
  border-radius: 15px;
  padding-top: 8px;
  padding-right: 24px;
  padding-bottom: 8px;
  padding-left: 24px;
  border-left-width: 2px;
}

.btn-outline,
.btn-fill {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  transition: all 0.2s ease;
}

.btn-outline {
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.55);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(0, 0, 0, 0.06);
}

.btn-fill {
  color: white;
  background: #003c64;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.btn-fill:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 1092px) {
  .menu-toggle {
    display: inline-flex;
  }
  .site-header.is-top .btn-outline {
    color: black;
    border-color: rgba(0, 0, 0, 0.7);
  }
  .nav-wrap {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(92vw, 380px);
    height: 100dvh;
    background: #ffffff;
    border-left: 1px solid #efefef;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 18px;
    overflow-y: auto;
    z-index: 1201;
  }
  .nav-wrap.is-open {
    transform: translateX(0);
  }
  /* ensure contrast in drawer whatever header state */
  .nav-wrap .nav-link,
  .nav-wrap .nav-link--btn {
    color: #000000 !important;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .nav-list .nav-link,
  .nav-list .nav-link--btn {
    padding: 12px 10px;
    width: 100%;
    text-align: left;
  }
  .has-mega .mega {
    position: static;
    display: none;
    margin-top: 6px;
  }
  .has-mega .mega-panel {
    min-width: auto;
  }
  .has-mega .mega-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .has-mega.open .mega {
    display: block;
  }
}
/* Overlay under header */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.28s ease;
  z-index: 1100; /* header=1200, nav=1201 */
  pointer-events: none;
}
.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.ai-hero {
  background: #ffffff;
  color: var(--ai-ink);
  padding: clamp(40px, 6vw, 80px) 0;
  isolation: isolate;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* Layout */
.ai-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(260px, 1fr);
  gap: clamp(20px, 3.5vw, 36px);
  align-items: center;
}

/* Left */
.ai-left {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
}

.ai-title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(32px, 5.6vw, 60px);
  line-height: clamp(42px, 7vw, 90px);
  text-transform: capitalize;
  color: var(--ai-ink);
}

.ai-highlight {
  color: var(--ai-accent);
}

/* Paragraphs */
.ai-paras {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 70ch;
}

.ai-paras p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--ai-ink);
}

/* Actions */
.ai-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  border-radius: 15px;
  text-decoration: none;
  background: var(--ai-btn);
  color: var(--ai-white);
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.ai-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* arrow square (CSS drawn) */
.ai-arrow {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: #ffffff;
  position: relative;
  display: inline-block;
}

.ai-arrow::before {
  /* horizontal line */
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  border-top: 0.75px solid #000;
  transform: translateY(-50%);
}

.ai-arrow::after {
  /* arrow head */
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 0.75px solid #000;
  border-top: 0.75px solid #000;
  transform: translateY(-50%) rotate(45deg);
}

/* Media */
.ai-media {
  position: relative;
  margin: 0;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ai-img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Tags on image bottom */
.ai-tags {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  width: 100%;
  flex-direction: row;
  padding-right: 10px;
}

.ai-tag {
  margin: 0px -2px;
  width: 25%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--ai-pill);
  color: #ffffff;
  border: 0.66px solid #d8d8d8;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  text-transform: capitalize;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

/* Responsive */
@media (max-width: 992px) {
  .ai-grid {
    grid-template-columns: 1fr;
  }
  .ai-media {
    order: -1;
  }
}
/* AI – Smarter Projects, Faster Execution */
.ai-exec {
  background: #007d5c;
  color: #ffffff;
  border-radius: 30px;
  padding: 80px 40px;
  margin: 0 auto;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* Wrapper */
.aiex-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Heading */
.aiex-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aiex-title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: clamp(40px, 5.2vw, 69px);
  text-transform: capitalize;
}

.aiex-leads {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aiex-leads p {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-transform: capitalize;
}

/* Cards row */
.aiex-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: clamp(16px, 2.2vw, 22px);
}

.aiex-card {
  background: #ffffff;
  color: #1c1c1c;
  border: 1.06px solid #b4b4b4;
  border-radius: 20px;
  box-shadow: 3px 3px 18px rgba(0, 0, 0, 0.1);
  padding: clamp(20px, 2.2vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.aiex-iconbox {
  width: 63px;
  height: 63px;
  border-radius: 8px;
  background: #003c64;
  display: grid;
  place-items: center;
}

.aiex-iconbox img {
  width: 46px;
  height: 46px;
  -o-object-fit: contain;
     object-fit: contain;
}

.aiex-card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border-bottom: 0.8px solid #003c64;
  padding-bottom: 10px;
}

.aiex-card-text {
  margin: 0;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #1c1c1c;
}

/* Pipeline */
.aiex-pipeline {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto auto; /* step,arrow,step,... */
  align-items: center;
  justify-content: center;
  gap: clamp(1px, 3.6vw, 2px);
  color: #ffffff;
}

.pipe-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  min-width: 183px;
}

.pipe-icon {
  width: 65px;
  height: 65px;
  background: #ffffff;
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.pipe-icon img {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}

.pipe-label {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
}

.pipe-arrow {
  font-size: clamp(16px, 2.6vw, 24px);
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1100px) {
  .aiex-cards {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}
@media (max-width: 868px) {
  .ai-exec {
    padding: 56px 24px;
    border-radius: 20px;
  }
  .aiex-cards {
    grid-template-columns: 1fr;
  }
  .aiex-pipeline {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }
  .pipe-arrow {
    display: none;
  }
  .pipe-step {
    min-width: 0;
  }
}
/* AI – Energy Pulse */
.ai-pulse {
  background: #f8f8f8;
  color: #000;
  padding: 80px 0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* Top two‑column grid */
.pulse-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(260px, 1fr);
  gap: clamp(20px, 3.2vw, 35px);
  align-items: flex-start;
  margin-bottom: clamp(28px, 5vw, 50px);
}

.pulse-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pulse-title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: clamp(40px, 5.2vw, 69px);
  text-transform: capitalize;
}

.pulse-title .accent {
  color: #007d5c;
}

.pulse-lead {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
}

/* Diagram */
.pulse-figure {
  position: relative;
  overflow: hidden;
}

.pulse-legend {
  position: absolute;
  right: 12px;
  top: 10px;
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  color: #007d5c;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  padding: 2px 8px;
  border-radius: 6px;
}

.pulse-img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Features */
.pulse-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: clamp(16px, 2.4vw, 30px);
}

.pf-card {
  background: #ffffff;
  border: 1px solid #003c64;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.pf-icon {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  background: #003c64;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.pf-icon img {
  width: 52px;
  height: 52px;
  -o-object-fit: contain;
     object-fit: contain;
}

.pf-text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #353535;
}

/* Responsive */
@media (max-width: 992px) {
  .pulse-grid {
    grid-template-columns: 1fr;
  }
  .pulse-features {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .ai-pulse {
    padding: 56px 0;
  }
  .pulse-features {
    grid-template-columns: 1fr;
  }
}
/* AI – Portfolio Dashboard */
.ai-portfolio {
  background: #ffffff;
  color: #000000;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Head */
.ap-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ap-title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: clamp(40px, 5.2vw, 69px);
  text-transform: capitalize;
}

.ap-title .accent {
  color: #0a9c80;
}

.ap-sub {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
}

/* Chips */
.ap-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 18px;
}

.ap-chip {
  background: #ffffff;
  border: 1px solid #003c64;
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
}

/* Dashboard grid */
.ap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Cards */
.ap-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.65);
  border-radius: 20px;
  padding: clamp(16px, 2vw, 22px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ap-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 10px 28px;
  border-radius: 10px;
  font-weight: 700;
  color: #ffffff;
  background: #007d5c;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 24px;
  margin-bottom: 12px;
}

/* Left card graph */
.ap-graph {
  position: relative;
  overflow: hidden;
  flex: 1 1 auto;
}

.ap-graph img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.ap-roi-pop {
  font-weight: 600;
  font-size: 40px;
  text-align: center;
  margin: 0px auto;
  padding: 6px 10px;
}

/* Right card */
.ap-roi-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ap-roi-value {
  font-weight: 700;
  font-size: clamp(40px, 7vw, 100px);
  line-height: 1;
  color: #000;
}

.ap-alert-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 6px 24px;
  border-radius: 10px;
  background: #003c64;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.ap-alert-icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Alerts list */
.ap-alerts {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ap-alerts-title {
  margin: 0;
  font-family: Inter, Poppins, sans-serif;
  font-weight: 600;
  font-size: 33px;
  line-height: 40px;
  color: #000;
}

.ap-alert-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 28px;
  padding-top: 10px;
}

.ap-alert-text {
  font-family: Inter, Poppins, sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 34px;
  color: #000;
}

.ap-arrow {
  font-size: 34px;
  color: #000;
}

/* Responsive */
@media (max-width: 1100px) {
  .ap-chips {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
  .ap-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .ai-portfolio {
    padding: 48px 0;
    gap: 40px;
  }
  .ap-chips {
    grid-template-columns: 1fr;
  }
  .ap-alert-text {
    font-size: 20px;
  }
  .ap-roi-value {
    font-size: 64px;
  }
}
/* Make the chart fill the graph area responsively */
.ap-graph {
  min-height: 300px;
}

#apPerformanceChart {
  width: 100% !important;
  height: 300px !important; /* visually matches the design */
  display: block;
}

/* AI – Protection and Predictive Analytics */
.ai-protect {
  background: #f8f8f8;
  color: #1c1c1c;
  padding: 80px 0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* Grid */
.aip-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(260px, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

/* Left */
.aip-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.aip-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aip-title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: clamp(40px, 5.2vw, 69px);
  text-transform: capitalize;
}

.aip-title .accent {
  color: #0a9c80;
}

.aip-lead {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
}

/* Features list (stack on small) */
.aip-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 21px;
  max-width: 500px;
}

.aip-feature {
  background: #ffffff;
  border: 1.06px solid #b4b4b4;
  border-radius: 20px;
  box-shadow: 3px 3px 18px rgba(0, 0, 0, 0.1);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.aip-iconbox {
  width: 63px;
  height: 63px;
  background: #003c64;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.aip-iconbox img {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}

.aip-ftext {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #1c1c1c;
}

/* Right: vertical flow card */
.aip-right {
  display: flex;
  justify-content: center;
}

.aip-flow {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: clamp(18px, 2vw, 24px);
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.flow-icon {
  width: 70px;
  height: 70px;
  background: #003c64;
  border-radius: 9px;
  display: grid;
  place-items: center;
}

.flow-icon img {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
}

.flow-label {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #1c1c1c;
}

.flow-arrow {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.75;
}

/* Responsive */
@media (max-width: 992px) {
  .aip-grid {
    grid-template-columns: 1fr;
  }
  .aip-features {
    max-width: 100%;
  }
}
/* AI – From Intelligence to Autonomy */
.ai-autonomy {
  background: #ffffff;
  color: #1c1c1c;
  padding: 40px 0 60px;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* Head */
.aa-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.aa-title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: clamp(40px, 5.2vw, 69px);
  text-transform: capitalize;
}

.aa-title .accent {
  color: #0a9c80;
}

.aa-lead {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
}

.aa-sub {
  margin: 12px 0 18px 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #000;
}

/* Cards grid */
.aa-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 20px;
}

/* Card */
.aa-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 16px;
}

/* Card head with curved right notch */
.aa-card-head {
  position: relative;
  height: 100px;
  background: #003c64;
}

.aa-card-head::after {
  /* creates the white curved notch on the right */
  content: "";
  position: absolute;
  right: -46px;
  top: -40px;
  width: 140px;
  height: 140px;
  background: #ffffff;
  border-top-left-radius: 95px;
}

.aa-head-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  height: 100%;
}

.aa-loc {
  width: 30px;
  height: 30px;
  background: #ffffff;
  border-radius: 6px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.aa-loc img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: hue-rotate(85deg) saturate(120%);
}

.aa-card-title {
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  color: #ffffff;
}

.aa-year {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 68px;
  padding: 0 12px;
  border-radius: 50px;
  background: #268226;
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
}

/* Status + progress */
.aa-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}

.aa-status,
.aa-pct {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #111111;
}

.aa-progress {
  margin: 0 18px;
  height: 15px;
  border-radius: 36px;
  background: rgba(38, 130, 38, 0.15);
  overflow: hidden;
}

.aa-progress > span {
  display: block;
  height: 100%;
  background: #268226;
  border-radius: 36px;
}

/* Responsive */
@media (max-width: 1100px) {
  .aa-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .aa-cards {
    grid-template-columns: 1fr;
  }
  .ai-autonomy {
    padding: 32px 0 48px;
  }
}
/* AI – AI‑Driven Project Intelligence */
.ai-intel {
  background: #ffffff;
  color: var(--ai-ink);
  padding: 60px 0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.aii-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(240px, 1fr);
  gap: clamp(24px, 5vw, 66px);
  align-items: center;
  isolation: isolate; /* matches your Figma note */
}

.aii-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 746px;
}

.aii-title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: clamp(40px, 5.2vw, 69px);
  text-transform: capitalize;
  color: #000;
}

.aii-title .accent {
  color: var(--ai-accent);
}

.aii-lead {
  display: flex;
  flex-direction: column;
  gap: 13px;
  max-width: 670px;
}

.aii-lead p {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #000;
}

.aii-sub {
  margin: 6px 0 0 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: #000;
}

.aii-list {
  margin: 8px 0 0 0;
  padding-left: 1.1rem;
  list-style: disc;
  display: grid;
  gap: 13px; /* matches your Figma spacing */
  max-width: 746px;
}

.aii-list li {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #000;
}

.aii-figure {
  margin: 0;
  max-width: 472px; /* from Figma image width */
  justify-self: end;
}

.aii-img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Responsive */
@media (max-width: 992px) {
  .aii-grid {
    grid-template-columns: 1fr;
  }
  .aii-figure {
    justify-self: start;
    max-width: 520px; /* give a bit more room on tablet */
  }
}
@media (max-width: 576px) {
  .ai-intel {
    padding: 48px 0;
  }
  .aii-title {
    line-height: 1.25;
  }
  .aii-figure {
    max-width: 100%;
  }
}
/* AI – Regional Energy Price Comparison */
.ai-compare {
  background: #f8f8f8;
  color: #1c1c1c;
  padding: clamp(56px, 6vw, 80px) 0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.aic-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 40px);
}

.aic-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 826px;
}

.aic-title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: clamp(40px, 5.2vw, 69px);
  text-transform: capitalize;
  color: #1c1c1c;
}

.aic-title .accent {
  color: var(--ai-accent);
}

.aic-lead {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #000;
}

/* Top cards */
.aic-region-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 39px;
}

.aic-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aic-card-title {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #000;
}

.aic-card-text {
  margin: 0;
  max-width: 340px;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #000;
}

/* Graph cards */
.aic-graph-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 39px;
}

.aic-graph-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 320px; /* keeps proportions similar to Figma */
}

.aic-graph-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 6px 6px 0;
}

.aic-graph-title {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #000;
}

.aic-graph-meta {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #3f3f3f;
}

.aic-figure {
  margin: 0;
  padding: 6px;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
}

.aic-img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 350px; /* mirrors Figma’s inner graph width */
}

/* Responsive */
@media (max-width: 1100px) {
  .aic-region-cards,
  .aic-graph-cards {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}
@media (max-width: 596px) {
  .aic-region-cards,
  .aic-graph-cards {
    grid-template-columns: 1fr;
  }
  .aic-img {
    max-width: 100%;
  }
}
/* Comparison charts fixed height to match card visuals */
.aic-canvas {
  width: 100% !important;
  height: 260px !important; /* visually close to your design mock */
  display: block;
}

/* Frequently Asked Questions (simple) */
.ai-faq-simple {
  background: #f8f8f8;
  padding: clamp(48px, 6vw, 80px) 0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: #000;
}

.afs-inner {
  max-width: 1280px;
}

.afs-title {
  margin: 0 0 18px 0;
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: clamp(38px, 5.2vw, 69px);
  color: #1c1c1c;
}

.afs-title .accent {
  color: var(--ai-accent, #0a9c80);
}

.afs-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Item container */
.afs-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 18px;
  overflow: hidden;
}

/* Header */
.afs-header {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 22px 24px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}

.afs-index {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--ai-accent, #0a9c80);
}

.afs-question {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: var(--ai-accent, #0a9c80);
}

/* Toggle: circle with plus/minus drawn in CSS */
.afs-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.35);
  position: relative;
  flex-shrink: 0;
}

.afs-toggle::before,
.afs-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(0, 0, 0, 0.7);
  transform: translate(-50%, -50%);
  border-radius: 1px;
}

.afs-toggle::before {
  /* horizontal bar (minus) */
  width: 12px;
  height: 2px;
}

.afs-toggle::after {
  /* vertical bar (for plus) */
  width: 2px;
  height: 12px;
}

/* Panel */
.afs-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.afs-panel-inner {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 12px;
  padding-bottom: 16px;
}

.afs-answer {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 27px;
  color: #3f3f3f;
}

/* Open state */
.afs-item.is-open .afs-panel {
  max-height: 300px; /* enough for a single-line answer */
  padding: 0 24px 12px;
}

.afs-item.is-open .afs-toggle::after {
  /* hide vertical bar => minus */
  opacity: 0;
}

/* Focus visible for accessibility */
.afs-header:focus-visible {
  outline: 3px solid var(--ai-accent, #0a9c80);
  outline-offset: 2px;
  border-radius: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .afs-panel {
    transition: none;
  }
}
.site-footer {
  background: #003c64;
  color: #ffffff;
  padding: 56px 28px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: "Poppins", sans-serif;
}
.site-footer .arrow-right-footer {
  font-size: 8px;
  filter: invert(1);
}
.site-footer .highlight {
  color: #007d5c;
}
.site-footer .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.site-footer .footer-brand .footer-logo-mark {
  width: 88px;
  height: auto;
}
.site-footer .footer-brand .footer-logo-title {
  width: 106px;
  height: auto;
}
.site-footer .footer-brand .footer-tagline {
  margin: 8px 0 2px;
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
  color: #ffffff;
  max-width: 320px;
}
.site-footer .footer-brand .btn-started {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #007d5c;
  color: white;
  font-weight: 500;
  font-size: 14px;
  border-radius: 15px;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  transition: transform 0.2s ease;
  margin-bottom: 12px;
}
.site-footer .footer-brand .btn-started:hover {
  transform: translateY(-2px);
}
.site-footer .footer-brand .btn-started .arrow {
  font-size: 18px;
  line-height: 1;
}
.site-footer .footer-brand .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.site-footer .footer-brand .footer-social .social-btn {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: white;
  background: #007d5c;
  transition: background 0.2s ease, transform 0.2s ease;
}
.site-footer .footer-brand .footer-social .social-btn img {
  filter: invert(1);
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-footer .footer-brand .footer-social .social-btn:hover {
  background: #007d5c;
  transform: translateY(-2px);
}
.site-footer .footer-heading {
  margin: 2px 0 12px;
  color: #007d5c;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.site-footer .footer-links {
  display: grid;
  gap: 8px;
}
.site-footer .footer-links .footer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.site-footer .footer-links .footer-link .link-arrow {
  color: #007d5c;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.site-footer .footer-links .footer-link:hover {
  color: #ffffff;
}
.site-footer .footer-links .footer-link:hover .link-arrow {
  transform: translateX(3px);
}
.site-footer .footer-sep {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 28px 0 18px;
}
.site-footer .footer-copy {
  border-top: 1px solid rgba(128, 128, 128, 0.3803921569);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  padding-top: 48px;
}
.site-footer .footer-copy .brand-accent {
  color: #007d5c;
  font-weight: 400;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .site-footer .footer-brand .footer-tagline {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .site-footer {
    padding: 48px 0 28px;
  }
  .site-footer .footer-brand {
    align-items: flex-start;
  }
  .site-footer .footer-brand .footer-logo-title {
    width: 150px;
  }
}
/* D3 charts sizing (match previous canvas visuals) */
.d3-chart {
  width: 100%;
  height: 300px; /* Portfolio card height */
  display: block;
}

.aic-canvas {
  height: 260px; /* Comparison cards height */
}

/* Axis + grid visuals (match your Chart.js look) */
.d3-axis path.domain {
  stroke: #2e2e2e;
  stroke-width: 3px;
}

.d3-axis .tick text {
  fill: #3f3f3f;
  font-size: 12px;
}

.d3-grid line {
  stroke: rgba(0, 60, 100, 0.15);
  stroke-width: 1;
}

.d3-grid .domain {
  display: none;
}/*# sourceMappingURL=ai.css.map */