.acg-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--acg-navy);
  color: var(--acg-white);
  border-bottom: 3px solid var(--acg-gold);
}
.acg-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.acg-header__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.05rem;
}
.acg-header__brand svg { flex-shrink: 0; }
.acg-header__phone {
  font-size: 0.95rem;
  color: var(--acg-gold-light);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.acg-hero-wrap {
  position: relative;
}

.acg-hero {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(160deg, rgba(15,15,28,0.90) 0%, rgba(26,26,46,0.84) 55%, rgba(15,15,28,0.92) 100%),
    url('/img/hero-bg.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  color: var(--acg-white);
  padding: 5rem 1.5rem 6.5rem;
}
.acg-hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.acg-hero__inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.acg-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 1.5rem;
}
.acg-hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.1rem);
  line-height: 1.12;
  margin: 0 0 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.acg-hero h1 em {
  font-style: normal;
  color: var(--acg-gold-light);
}
.acg-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin: 0 auto 2.25rem;
  max-width: 560px;
}
.acg-hero__actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}
.acg-hero__status {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}
.acg-hero__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acg-muted);
}
.acg-hero__status-dot.is-open { background: var(--acg-success); }
.acg-hero__status-dot.is-closed { background: var(--acg-danger); }

.acg-hero__floating-card {
  position: absolute;
  right: clamp(1rem, 4vw, 3.5rem);
  bottom: -34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--acg-white);
  color: var(--acg-ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  padding: 1rem 1.35rem;
}
.acg-hero__floating-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--acg-amber-bg);
  color: var(--acg-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.acg-hero__floating-card strong {
  display: block;
  font-size: 1rem;
  color: var(--acg-navy);
}
.acg-hero__floating-card span {
  display: block;
  font-size: 0.95rem;
  color: var(--acg-muted);
}
@media (max-width: 700px) {
  .acg-hero__floating-card { display: none; }
}

.acg-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.acg-section__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.75rem;
}
.acg-section__head .acg-eyebrow-pill {
  margin-bottom: 1.1rem;
}
.acg-section__head h2 {
  font-size: 1.8rem;
  margin: 0 0 0.75rem;
  color: var(--acg-navy);
}
.acg-section__head p {
  color: var(--acg-muted);
  margin: 0;
}

.acg-pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
@media (max-width: 860px) {
  .acg-pathway-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .acg-pathway-grid { grid-template-columns: 1fr; }
}

.acg-pathway-card {
  position: relative;
  background: var(--acg-white);
  border: 1px solid var(--acg-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: left;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.acg-pathway-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--acg-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.acg-pathway-card:hover {
  border-color: var(--acg-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevated);
}
.acg-pathway-card:hover::before {
  transform: scaleX(1);
}
.acg-pathway-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--acg-amber-bg);
  color: var(--acg-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.acg-pathway-card h3 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--acg-navy);
}
.acg-pathway-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--acg-muted);
}

.acg-about {
  position: relative;
  background: var(--acg-white);
  border-top: 1px solid var(--acg-border);
  border-bottom: 1px solid var(--acg-border);
  clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%);
}
.acg-about__dots {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 90px;
  height: 90px;
  z-index: 0;
}
.acg-about .acg-section { position: relative; z-index: 1; }
.acg-about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 760px) {
  .acg-about__grid { grid-template-columns: repeat(2, 1fr); }
}
.acg-about__item h4 {
  margin: 0 0 0.35rem;
  color: var(--acg-navy);
  font-size: 1rem;
}
.acg-about__item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--acg-muted);
}

.acg-positioning {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--acg-border);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.5rem;
}
@media (max-width: 760px) {
  .acg-positioning { grid-template-columns: 1fr; }
}
.acg-positioning__who,
.acg-positioning__not {
  background: var(--acg-paper);
  border: 1px solid var(--acg-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
}
.acg-positioning h3 {
  font-size: 0.95rem;
  color: var(--acg-navy);
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.acg-positioning__who ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.acg-positioning__who li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--acg-navy);
  padding: 0.5rem 0.85rem;
  background: var(--acg-white);
  border: 1px solid var(--acg-gold);
  border-radius: 999px;
}
.acg-positioning__who p {
  margin: 1.1rem 0 0;
}
.acg-positioning__who p,
.acg-positioning__not p {
  font-size: 0.95rem;
  color: var(--acg-muted);
  line-height: 1.6;
  margin: 0 0 0.6rem;
}
.acg-positioning__not p:last-child {
  margin-bottom: 0;
}
.acg-positioning__not strong {
  color: var(--acg-navy);
}

.acg-trust__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 860px) {
  .acg-trust__grid { grid-template-columns: 1fr; }
}
.acg-trust__media {
  position: relative;
}
.acg-trust__media::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -18px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--acg-gold) 1.6px, transparent 1.6px);
  background-size: 14px 14px;
  opacity: 0.5;
  z-index: 0;
}
.acg-trust__media__frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  line-height: 0;
}
.acg-trust__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.acg-trust__copy {
  position: relative;
}
.acg-trust__copy h2 {
  position: relative;
  z-index: 1;
  font-size: 1.9rem;
  color: var(--acg-navy);
  margin: 0 0 1rem;
}
.acg-trust__copy p {
  position: relative;
  z-index: 1;
  color: var(--acg-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 1.4rem;
}
.acg-trust__list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.acg-trust__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--acg-ink);
}
.acg-trust__list li::before {
  content: '\2713';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--acg-amber-bg);
  color: var(--acg-navy);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acg-footer {
  background: var(--acg-navy);
  color: rgba(255,255,255,0.75);
  padding: 2.5rem 1.5rem 2rem;
}
.acg-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.95rem;
}
.acg-footer__links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.acg-footer__links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}
.acg-footer__links a:hover { color: var(--acg-gold-light); }
.acg-footer__disclaimer {
  max-width: 1120px;
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
}

/* ---- Plain fallback contact form (GHL chat widget is the primary entry point) ---- */

.acg-contact-section {
  position: relative;
  background: var(--acg-navy);
  overflow: hidden;
}

.acg-contact-section__dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 260px;
  opacity: 0.5;
}

.acg-contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .acg-contact-grid { grid-template-columns: 1fr; }
}

.acg-contact-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  line-height: 0;
  min-height: 320px;
}
.acg-contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 45%;
  display: block;
  position: absolute;
  inset: 0;
}
.acg-contact-media__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(26,26,46,0) 40%, rgba(15,15,28,0.75) 100%);
}
.acg-contact-media__caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  right: 1.5rem;
  color: var(--acg-white);
}
.acg-contact-media__caption strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.4;
}
.acg-contact-media__caption span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.75);
  margin-top: 0.3rem;
}

.acg-contact-copy .acg-section__head {
  text-align: left;
  margin: 0 0 2rem;
  max-width: none;
}
.acg-contact-copy .acg-section__head h2 {
  color: var(--acg-white);
}
.acg-contact-copy .acg-section__head p {
  color: rgba(255,255,255,0.7);
}

.acg-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.acg-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 560px) {
  .acg-field-grid { grid-template-columns: 1fr; }
}

.acg-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.acg-field label {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
}
.acg-field input,
.acg-field select,
.acg-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  border-radius: 0;
  padding: 0.5rem 0.1rem;
  font-size: 0.98rem;
  font-family: inherit;
  color: var(--acg-white);
  transition: border-color 0.15s ease;
}
.acg-field select option {
  color: var(--acg-ink);
}
.acg-field input::placeholder,
.acg-field textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.acg-field input:focus,
.acg-field select:focus,
.acg-field textarea:focus {
  outline: none;
  border-bottom-color: var(--acg-gold);
}
.acg-field textarea {
  resize: vertical;
  min-height: 3rem;
}
.acg-field-row {
  display: flex;
  gap: 0.6rem;
}
.acg-field-row .acg-btn { flex: 1; }

.acg-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}
.acg-consent-row input { margin-top: 0.2rem; accent-color: var(--acg-gold); }

.acg-error-text {
  color: #ff8f87;
  font-size: 0.95rem;
}
.acg-contact-form #submit-success {
  color: var(--acg-gold-light) !important;
}

.acg-after-hours-banner {
  background: var(--acg-amber-bg);
  border: 1px solid var(--acg-gold);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  color: var(--acg-navy);
}
