/* ============================================================
   GLOBAL — shared tokens/utilities for the hand-built Elementor
   sections below. Deliberately reuses the theme's own CSS custom
   properties (--wp--preset--color--*, --wp--preset--font-family--*)
   rather than redeclaring colors/fonts here -- those are already
   output globally by the block theme's theme.json on every page,
   Elementor included, so this stays in sync automatically if the
   brand palette or fonts ever change.
   ============================================================ */

:root {
  --acs-radius: 10px;
  --acs-radius-lg: 18px;
  --acs-shadow-sm: 0 1px 3px rgba(20,33,61,.08), 0 1px 2px rgba(20,33,61,.05);
  --acs-shadow-md: 0 8px 24px rgba(20,33,61,.10), 0 2px 8px rgba(20,33,61,.06);
  --acs-transition: 0.25s ease;
  --acs-section-pad: 96px;
  --acs-container-max: 1180px;
}

.acs-section * { box-sizing: border-box; }

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

.acs-section {
  padding: var(--acs-section-pad) 0;
}

.acs-label {
  display: block;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wp--preset--color--signal-gold);
  margin: 0 0 14px;
}

.acs-heading {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 600;
  color: var(--wp--preset--color--ink);
  line-height: 1.15;
  margin: 0;
}

.acs-body {
  font-family: var(--wp--preset--font-family--body);
  color: var(--wp--preset--color--slate);
  line-height: 1.7;
}

.acs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--acs-transition);
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
}
.acs-btn-primary {
  background: var(--wp--preset--color--signal-gold);
  color: var(--wp--preset--color--ink);
  border-color: var(--wp--preset--color--signal-gold);
}
.acs-btn-primary:hover {
  background: var(--wp--preset--color--ink);
  border-color: var(--wp--preset--color--ink);
  color: var(--wp--preset--color--white);
}
.acs-btn-outline-light {
  background: transparent;
  color: var(--wp--preset--color--white);
  border-color: rgba(255,255,255,0.4);
}
.acs-btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--wp--preset--color--white);
}

@media (max-width: 900px) {
  :root { --acs-section-pad: 64px; }
}
/* ============================================================
   HOMEPAGE SECTIONS — styles for section-*.html
   Load after global.css. Uses the theme's own --wp--preset--* CSS
   vars for color/font (see global.css header comment).
   ============================================================ */

/* Shared toggle/accordion primitive (used by checklist + FAQ) */
.acs-toggle-item {
  border: 1px solid var(--wp--preset--color--divider);
  border-radius: var(--acs-radius);
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--wp--preset--color--white);
  transition: border-color var(--acs-transition), box-shadow var(--acs-transition);
}
.acs-toggle-item.is-open { border-color: var(--wp--preset--color--ink); box-shadow: var(--acs-shadow-sm); }
.acs-toggle-trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; cursor: pointer; user-select: none;
}
.acs-toggle-title {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 600; font-size: 16px; color: var(--wp--preset--color--ink);
}
.acs-toggle-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--wp--preset--color--paper); border: 1px solid var(--wp--preset--color--divider);
  transition: all var(--acs-transition);
}
.acs-toggle-icon svg { width: 14px; height: 14px; color: var(--wp--preset--color--slate); transition: transform var(--acs-transition); }
.acs-toggle-item.is-open .acs-toggle-icon { background: var(--wp--preset--color--ink); border-color: var(--wp--preset--color--ink); }
.acs-toggle-item.is-open .acs-toggle-icon svg { color: var(--wp--preset--color--white); transform: rotate(45deg); }
.acs-toggle-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.acs-toggle-item.is-open .acs-toggle-panel { max-height: 300px; }
.acs-toggle-panel p { margin: 0 22px 20px; font-family: var(--wp--preset--font-family--body); font-size: 15px; line-height: 1.7; color: var(--wp--preset--color--slate); }

/* 1. HERO */
.acs-hero { background: var(--wp--preset--color--ink); }
.acs-hero__grid { display: flex; flex-wrap: wrap; gap: 56px; align-items: center; }
.acs-hero__copy { flex: 1 1 460px; }
.acs-hero__title {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 600; font-size: clamp(34px, 4.5vw, 52px); line-height: 1.12;
  color: var(--wp--preset--color--white); margin: 0 0 20px;
}
.acs-hero__title-accent {
  display: block; color: var(--wp--preset--color--signal-gold); font-style: italic;
}
.acs-hero__lede { font-family: var(--wp--preset--font-family--body); font-size: 17px; line-height: 1.7; color: #C7CDD9; max-width: 46ch; margin: 0 0 32px; }
.acs-hero__visual { flex: 1 1 380px; min-height: 340px; border-radius: var(--acs-radius-lg); background: linear-gradient(135deg, #C7CDD9, #EEF0F4); }

/* 2. VALUE CHECKLIST */
.acs-checklist { background: var(--wp--preset--color--white); }
.acs-checklist__header { text-align: center; margin-bottom: 44px; }
.acs-checklist__title { font-size: clamp(26px, 3.4vw, 36px); }
.acs-checklist__grid { display: flex; flex-wrap: wrap; gap: 56px; align-items: flex-start; }
.acs-checklist__copy { flex: 1 1 480px; }
.acs-checklist__copy > p { margin-bottom: 24px; }
.acs-checklist__side { flex: 1 1 380px; text-align: center; }
.acs-checklist__photo { min-height: 320px; border-radius: var(--acs-radius-lg); background: linear-gradient(135deg, #DBE1EA, #F5F6F8); margin-bottom: 24px; }

/* 3. PROCESS TIMELINE */
.acs-process { background: var(--wp--preset--color--paper); }
.acs-process__container { max-width: 800px; }
.acs-process__header { text-align: center; margin-bottom: 56px; }
.acs-process__title { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 14px; }
.acs-process__intro { max-width: 56ch; margin: 0 auto; }
.acs-timeline { position: relative; }
.acs-timeline::before { content: ''; position: absolute; left: 27px; top: 28px; bottom: 28px; width: 2px; background: var(--wp--preset--color--divider); z-index: 0; }
.acs-step { display: grid; grid-template-columns: 56px 1fr; gap: 24px; margin-bottom: 16px; position: relative; }
.acs-step__dot {
  width: 56px; height: 56px; border-radius: 50%; background: var(--wp--preset--color--white);
  border: 2px solid var(--wp--preset--color--divider); display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; transition: all var(--acs-transition);
}
.acs-step__dot-num { font-family: var(--wp--preset--font-family--mono); font-weight: 700; font-size: 14px; color: var(--wp--preset--color--slate); }
.acs-step.is-open .acs-step__dot { background: var(--wp--preset--color--ink); border-color: var(--wp--preset--color--ink); }
.acs-step.is-open .acs-step__dot-num { color: var(--wp--preset--color--white); }
.acs-step__card { background: var(--wp--preset--color--white); border: 1px solid var(--wp--preset--color--divider); border-radius: var(--acs-radius); overflow: hidden; transition: all var(--acs-transition); }
.acs-step.is-open .acs-step__card { border-color: var(--wp--preset--color--ink); box-shadow: var(--acs-shadow-md); }
.acs-step__header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; }
.acs-step__phase { display: block; font-family: var(--wp--preset--font-family--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--wp--preset--color--slate); margin-bottom: 4px; }
.acs-step__name { font-family: var(--wp--preset--font-family--display); font-weight: 600; font-size: clamp(17px, 2.2vw, 21px); color: var(--wp--preset--color--ink); margin: 0; }
.acs-step__chevron { width: 32px; height: 32px; border-radius: 50%; background: var(--wp--preset--color--paper); border: 1px solid var(--wp--preset--color--divider); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--acs-transition); }
.acs-step__chevron svg { width: 13px; height: 13px; color: var(--wp--preset--color--slate); transition: transform var(--acs-transition); }
.acs-step.is-open .acs-step__chevron { background: var(--wp--preset--color--ink); border-color: var(--wp--preset--color--ink); }
.acs-step.is-open .acs-step__chevron svg { color: var(--wp--preset--color--white); transform: rotate(180deg); }
.acs-step__panel { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.acs-step.is-open .acs-step__panel { max-height: 400px; }
.acs-step__body { padding: 0 24px 24px; border-top: 1px solid var(--wp--preset--color--divider); }
.acs-step__body p { margin: 18px 0 0; font-family: var(--wp--preset--font-family--body); font-size: 15px; line-height: 1.7; color: var(--wp--preset--color--slate); }

/* 4. PROOF STRIP */
.acs-proof { background: var(--wp--preset--color--paper); }
.acs-proof__inner { text-align: center; }
.acs-proof__value { display: block; font-family: var(--wp--preset--font-family--display); font-weight: 600; font-size: clamp(34px, 4.5vw, 46px); color: var(--wp--preset--color--ink); }
.acs-proof__caption { display: block; font-family: var(--wp--preset--font-family--body); color: var(--wp--preset--color--slate); margin-top: 8px; }

/* 5. SERVICE DETAIL GRID */
.acs-services { background: var(--wp--preset--color--white); }
.acs-services__header { text-align: center; margin-bottom: 48px; }
.acs-services__title { font-size: clamp(26px, 3.4vw, 36px); }
.acs-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.acs-service-card { text-align: center; padding: 8px; }
.acs-service-card__icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 22px;
  background: var(--wp--preset--color--paper); display: flex; align-items: center; justify-content: center;
}
.acs-service-card__icon svg { width: 28px; height: 28px; color: var(--wp--preset--color--signal-gold); }
.acs-service-card__title { font-family: var(--wp--preset--font-family--display); font-weight: 600; font-size: 20px; color: var(--wp--preset--color--ink); margin: 0 0 10px; }
@media (max-width: 900px) { .acs-services__grid { grid-template-columns: 1fr; gap: 40px; } }

/* 6. PRICING */
.acs-pricing { background: var(--wp--preset--color--white); }
.acs-pricing__header { text-align: center; margin-bottom: 48px; }
.acs-pricing__title { font-size: clamp(26px, 3.4vw, 36px); }
.acs-pricing__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 780px; margin: 0 auto; }
.acs-price-card { text-align: center; padding: 40px 32px; border-radius: var(--acs-radius-lg); background: var(--wp--preset--color--paper); border: 1px solid var(--wp--preset--color--divider); }
.acs-price-card--featured { background: var(--wp--preset--color--ink); border-color: var(--wp--preset--color--ink); }
.acs-price-card--featured .acs-price-card__name,
.acs-price-card--featured .acs-body { color: var(--wp--preset--color--white); opacity: .92; }
.acs-price-card__name { font-family: var(--wp--preset--font-family--display); font-weight: 600; font-size: 22px; color: var(--wp--preset--color--ink); margin: 0 0 12px; }
.acs-price-card__price { display: block; font-family: var(--wp--preset--font-family--display); font-weight: 600; font-size: 34px; color: var(--wp--preset--color--signal-gold); margin-bottom: 14px; }
.acs-price-card__price span { font-size: 15px; font-weight: 400; color: inherit; opacity: .7; }
.acs-price-card .acs-body { margin-bottom: 24px; }
@media (max-width: 700px) { .acs-pricing__grid { grid-template-columns: 1fr; } }

/* 7. FAQ */
.acs-faq { background: var(--wp--preset--color--white); }
.acs-faq__grid { display: flex; flex-wrap: wrap; gap: 56px; }
.acs-faq__list { flex: 1 1 480px; }
.acs-faq__title { font-size: clamp(26px, 3.4vw, 34px); margin: 4px 0 28px; }
.acs-faq__side { flex: 1 1 340px; text-align: center; }
.acs-faq__photo { min-height: 280px; border-radius: var(--acs-radius-lg); background: linear-gradient(135deg, #DBE1EA, #F5F6F8); margin-bottom: 22px; }

/* 8. CONTACT / CONSULTATION */
.acs-contact { background: var(--wp--preset--color--paper); }
.acs-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.acs-contact__title { font-size: 28px; margin-bottom: 20px; }
.acs-contact__form-slot {
  border: 1px dashed var(--wp--preset--color--slate); border-radius: var(--acs-radius);
  padding: 32px 24px; color: var(--wp--preset--color--slate); font-family: var(--wp--preset--font-family--body);
  font-size: 14px; line-height: 1.6;
}
.acs-icon-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.acs-icon-list li { display: flex; align-items: center; gap: 12px; font-family: var(--wp--preset--font-family--body); color: var(--wp--preset--color--ink); font-size: 15px; }
.acs-icon-list svg { width: 20px; height: 20px; color: var(--wp--preset--color--signal-gold); flex-shrink: 0; }
@media (max-width: 800px) { .acs-contact__grid { grid-template-columns: 1fr; } }

/* 9. CTA BAND */
.acs-cta-band { background: var(--wp--preset--color--ink); }
.acs-cta-band__inner { text-align: center; }
.acs-cta-band__title { color: var(--wp--preset--color--white); font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 28px; }
