@charset "UTF-8";

/* ===== HERO OVERRIDE ===== */
.page-hero-inner {
  text-align: center;
}

.page-hero-desc {
  margin: 24px auto 0;
}

/* ===== MAIN CTA ===== */
.main-cta {
  text-align: center;
  padding: 80px 40px 100px;
  position: relative;
  z-index: 2;
}

.main-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 24px 64px;
  background: var(--accent);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .08em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.main-cta-btn:hover {
  background: #4d8a28;
}

.main-cta-btn::after {
  content: '\2192';
  font-family: var(--font-display);
  font-size: 20px;
}

.main-cta-sub {
  font-size: 12px;
  color: var(--ink-light);
  margin-top: 16px;
  letter-spacing: .04em;
}

/* ===== SERVICE CARDS ===== */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin-bottom: 80px;
}

.service-card {
  background: var(--white);
  padding: 48px 40px;
}

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 16px;
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.2;
  color: var(--ink-mid);
}

.service-desc strong {
  font-weight: 500;
  color: var(--ink);
}

.service-free {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--accent);
  padding: 4px 12px;
  background: var(--accent-pale);
  margin-top: 16px;
}

/* ===== FLOW STEPS ===== */
.contact-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.cf-step {
  text-align: center;
}

.cf-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 12px;
}

.cf-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.cf-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-mid);
}

.cf-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink-faint);
  padding-top: 20px;
}

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-q {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 28px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: color .3s;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-q::before {
  content: 'Q';
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  min-width: 24px;
}

.faq-q::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink-light);
  margin-left: auto;
  transition: transform .3s;
}

.faq-item.is-open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.2;
  color: var(--ink-mid);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height .4s var(--ease),
    padding .4s;
  padding: 0 0 0 40px;
}

.faq-item.is-open .faq-a {
  max-height: 300px;
  padding: 0 0 28px 40px;
}

/* ===== TESTIMONIAL ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.testimonial {
  background: var(--white);
  padding: 36px 32px;
  border: 1px solid var(--border-light);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--border-light);
  line-height: 1;
  pointer-events: none;
}

.testimonial-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--ink-mid);
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--ink-light);
  position: relative;
  z-index: 1;
}

/* ===== CTA OVERRIDES ===== */
.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-label {
  color: rgba(255, 255, 255, .5);
}

.cta-desc {
  color: rgba(255, 255, 255, .65);
}

.cta-btn {
  background: var(--accent);
  color: var(--white);
  padding: 20px 56px;
  font-size: 15px;
}

.cta-btn:hover {
  background: #4d8a28;
}

.cta-note {
  color: rgba(255, 255, 255, .4);
  margin-top: 20px;
}

.cta-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}

.cta-badge {
  font-size: 11px;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .service-grid { grid-template-columns: 1fr; }
  .contact-flow { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cf-arrow { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .main-cta { padding: 48px 24px 64px; }
  .main-cta-btn { padding: 20px 40px; font-size: 14px; }
}
