/* EC ENTERPRISES — PHASE 1 BRAND SYSTEM */
:root {
  --green-950: #00281d;
  --green-900: #003f2d;
  --green-800: #07543e;
  --green-700: #12664b;
  --gold-500: #d2a514;
  --gold-400: #e8bc2c;
  --gold-300: #ffd96a;
  --gold-deep: #a87400;
  --white: #ffffff;
  --off-white: #f8f8f5;
  --gray-100: #eef1ef;
  --gray-300: #ccd3cf;
  --gray-600: #66736d;
  --ink: #14201b;
  --content-width: 1180px;
  --page-gutter: 24px;
  --section-space: 88px;
  --radius-sm: 4px;
  --shadow-sm: 0 8px 24px rgba(0, 40, 29, 0.08);
  --shadow-md: 0 20px 52px rgba(0, 40, 29, 0.14);
  --gold-gradient: linear-gradient(
    135deg,
    var(--gold-300) 0%,
    var(--gold-500) 48%,
    var(--gold-deep) 100%
  );
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.container {
  width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
}
.section {
  padding-block: var(--section-space);
}
.section--soft {
  background: var(--off-white);
}
.grid {
  display: grid;
  gap: 24px;
}
.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.eyebrow {
  margin-bottom: 14px;
  color: var(--gold-500);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.06;
  letter-spacing: -0.025em;
}
h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
}
h2 {
  margin-bottom: 20px;
  color: var(--green-900);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 900;
}
h3 {
  margin-bottom: 12px;
  color: var(--green-900);
  font-size: 1.38rem;
  font-weight: 850;
}
.lead {
  max-width: 720px;
  color: var(--gray-600);
  font-size: 1.15rem;
}
.utility-bar {
  color: var(--white);
  background: var(--green-950);
  font-size: 0.9rem;
}
.utility-bar__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 9px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--gray-100);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}
.site-nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand__logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
}
.brand__wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.36em;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.105em;
  line-height: 1;
  white-space: nowrap;
}
.brand__ec {
  color: var(--green-900);
}
.brand__enterprises {
  color: var(--gold-deep);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav-links a {
  position: relative;
  font-size: 0.93rem;
  font-weight: 800;
  text-decoration: none;
}
.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
  border: 0;
  color: var(--green-900);
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid var(--green-900);
  border-radius: var(--radius-sm);
  color: var(--green-900);
  background: transparent;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.button--primary {
  color: var(--white);
  background: var(--green-900);
}
.button--gold {
  border-color: var(--gold-500);
  color: var(--green-950);
  background: var(--gold-gradient);
}
.button--light {
  border-color: var(--white);
  color: var(--white);
}
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 110px 96px;
  color: var(--white);
  background: linear-gradient(
    112deg,
    rgba(0, 40, 29, 0.99) 0%,
    rgba(0, 63, 45, 0.96) 58%,
    rgba(18, 102, 75, 0.88) 100%
  );
}
.hero::after {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 2px solid rgba(212, 175, 55, 0.28);
  border-radius: 50%;
  content: "";
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 64px;
  align-items: center;
}
.hero__message {
  max-width: 830px;
}
.hero__message p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
}
.hero__tagline {
  display: grid;
  gap: 4px;
}
.hero__tagline span {
  display: block;
}
.hero__tagline span:nth-child(2) {
  color: var(--gold-300);
}
.hero-card {
  padding: 34px;
  border-top: 7px solid var(--gold-500);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.hero-card__logo {
  width: 132px;
  margin-bottom: 18px;
}
.hero-card ul {
  margin-bottom: 0;
  padding-left: 20px;
}
.brand-strip {
  padding-block: 18px;
  color: var(--green-950);
  background: var(--gold-gradient);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}
.card {
  height: 100%;
  padding: 30px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}
.card:hover {
  border-color: var(--gold-500);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.card__icon {
  margin-bottom: 18px;
  color: var(--gold-500);
  font-size: 2.1rem;
}
.card a {
  color: var(--green-900);
  font-weight: 850;
}
.info-panel {
  padding: 30px;
  border: 1px solid var(--gray-300);
  border-left: 6px solid var(--gold-500);
  background: var(--white);
}
.notice {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 5px solid var(--gold-500);
  background: #fff7d6;
}
.page-hero {
  padding-block: 76px;
  border-bottom: 1px solid var(--gray-300);
  background: var(--off-white);
}
.page-hero h1 {
  margin-bottom: 12px;
  color: var(--green-900);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.price-group {
  overflow: hidden;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
}
.price-group h3 {
  margin: 0;
  padding: 21px 24px;
  color: var(--white);
  background: var(--green-900);
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 15px 24px;
  border-top: 1px solid var(--gray-100);
}
.price-row span:last-child {
  color: var(--green-900);
  font-weight: 900;
  white-space: nowrap;
}
.site-footer {
  padding-block: 48px;
  color: #dde8e3;
  background: var(--green-950);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}
.site-footer .brand__ec {
  color: var(--white);
}
.site-footer .brand__enterprises {
  color: var(--gold-300);
}
.site-footer a {
  display: block;
  margin-block: 7px;
  color: #dde8e3;
  text-decoration: none;
}
@media (max-width: 900px) {
  :root {
    --section-space: 68px;
  }
  .grid--3,
  .grid--2,
  .hero__grid,
  .price-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px var(--page-gutter);
    border-bottom: 1px solid var(--gray-300);
    background: var(--white);
  }
  .nav-links.is-open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    padding-block: 78px;
  }
  .hero-card {
    display: none;
  }
  .utility-bar__inner {
    flex-direction: column;
    gap: 2px;
  }
}

@media (max-width: 520px) {
  .brand__wordmark {
    font-size: 0.84rem;
    letter-spacing: 0.075em;
  }
  .brand__logo {
    width: 50px;
    height: 50px;
  }
}

/* PHASE 2 — HOME PAGE */
.hero--phase-two {
  padding-block: 96px;
}

.hero__grid--phase-two {
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 72px;
}

.hero--phase-two h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3.7rem, 6.8vw, 6.7rem);
}

.hero__services {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.06rem, 1.8vw, 1.3rem);
  font-weight: 750;
  line-height: 1.75;
}

.hero__services span {
  margin-inline: 0.4em;
  color: var(--gold-300);
}

.hero-visual {
  position: relative;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border-top: 7px solid var(--gold-500);
  background: var(--green-950);
  box-shadow: var(--shadow-md);
}

.hero-visual__image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.hero-visual__overlay {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 112px;
  padding: 12px;
  background: rgba(0, 40, 29, 0.8);
  backdrop-filter: blur(8px);
}

.hero-visual__overlay img {
  width: 100%;
}

.hero-visual__note {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.principles-strip {
  padding-block: 17px 18px;
  color: var(--green-950);
  background: var(--gold-gradient);
  text-align: center;
}

.principles-strip__inner {
  display: grid;
  gap: 2px;
}

.principles-strip strong {
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.principles-strip span {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.section--capabilities {
  padding-top: 76px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 68px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading__copy .lead {
  margin-top: 0;
}

.audience-line {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--green-900);
  font-weight: 800;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-list {
  margin: 4px 0 26px;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding-block: 8px;
  border-bottom: 1px solid var(--gray-100);
}

.service-card .text-link {
  margin-top: auto;
}

.text-link {
  color: var(--green-900);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.customer-paths h2 {
  margin-bottom: 38px;
}

.path-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  border-top: 6px solid var(--gold-500);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.path-card::after {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(210, 165, 20, 0.28);
  border-radius: 50%;
  content: "";
}

.path-card__number {
  margin-bottom: 42px;
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.path-card p {
  margin-bottom: 28px;
}

.path-card .button {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: auto;
}

.expectations__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 80px;
  align-items: start;
}

.expectation-list {
  border-top: 1px solid var(--gray-300);
}

.expectation-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: center;
  padding-block: 22px;
  border-bottom: 1px solid var(--gray-300);
}

.expectation-item span {
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.expectation-item strong {
  color: var(--green-900);
  font-size: 1.08rem;
}

.ffl-callout {
  padding-block: 76px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(0, 40, 29, 0.98), rgba(0, 63, 45, 0.93)),
    radial-gradient(circle at 85% 15%, rgba(255, 217, 106, 0.2), transparent 38%);
}

.ffl-callout__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 70px;
  align-items: center;
}

.ffl-callout h2 {
  color: var(--white);
}

.ffl-callout p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.eyebrow--light {
  color: var(--gold-300);
}

.ffl-callout__action {
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.ffl-price {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
}

.ffl-price span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ffl-price strong {
  color: var(--gold-300);
  font-size: 3.4rem;
  line-height: 1;
}

.final-cta__inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: center;
}

.final-cta h2 {
  margin-bottom: 0;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.phone-link {
  color: var(--green-900);
  font-size: 1.2rem;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1050px) {
  .hero__grid--phase-two,
  .section-heading,
  .expectations__grid,
  .ffl-callout__grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 760px;
  }

  .section-heading {
    gap: 24px;
  }

  .ffl-callout__action {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .hero--phase-two {
    padding-block: 72px;
  }

  .hero__grid--phase-two {
    gap: 44px;
  }

  .hero-visual {
    display: block;
    min-height: 390px;
  }

  .hero-visual__image {
    min-height: 390px;
  }

  .final-cta__inner {
    display: grid;
  }
}

@media (max-width: 620px) {
  .hero--phase-two h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero__services span {
    margin-inline: 0.22em;
  }

  .hero-visual {
    min-height: 310px;
  }

  .hero-visual__image {
    min-height: 310px;
  }

  .principles-strip strong {
    font-size: 0.92rem;
  }

  .principles-strip span {
    font-size: 0.67rem;
    letter-spacing: 0.13em;
  }

  .path-card {
    min-height: 0;
  }
}
