/* ============================================================
   ScribeGulf — Global Stylesheet
   Forest & Parchment Edition · v1.2
   Colors: Forest #1C3D2E · Sage #4A7C59 · Walnut #6B4423
           Parchment #F5F0E8 · Cream #E8E0D0 · White #FFFFFF
============================================================ */

/* --- Custom Properties ----------------------------------- */
:root {
  --forest:    #1C3D2E;
  --sage:      #4A7C59;
  --walnut:    #6B4423;
  --parchment: #F5F0E8;
  --cream:     #E8E0D0;
  --white:     #FFFFFF;
  --ink:       #0D1A14;
  --gold:      #C9A84C;

  --text-dark:  #1A1A1A;
  --text-mid:   #555555;
  --text-light: #888888;

  --max-width:   1140px;
  --radius:      4px;
  --radius-lg:   14px;
  --transition:  0.24s ease;
  --shadow:      0 2px 16px rgba(28,61,46,0.09);
  --shadow-hover:0 8px 36px rgba(28,61,46,0.18);
}

/* --- Reset ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--parchment);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography ------------------------------------------ */
h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.22;
  letter-spacing: -0.01em;
}
h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  color: var(--walnut);
  line-height: 1.3;
}
h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}
p { margin-bottom: 1.1em; max-width: 66ch; }
p:last-child { margin-bottom: 0; }

/* --- Layout --------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: 88px 28px; }
.section--parchment { background: var(--parchment); }
.section--white     { background: var(--white); }
.section--cream     { background: var(--cream); }
.section--forest    { background: var(--forest); }

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.section-header { max-width: var(--max-width); margin: 0 auto; }
.section-intro {
  color: var(--text-mid);
  font-size: 17px;
  margin-top: 14px;
  max-width: 600px;
}

/* --- Buttons -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: var(--forest);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--walnut);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28,61,46,0.28);
}
.btn--outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
  padding: 12px 26px;
}
.btn--outline:hover {
  background: var(--forest);
  color: var(--white);
}
.btn--sage {
  background: var(--sage);
  color: var(--white);
}
.btn--sage:hover {
  background: var(--forest);
  transform: translateY(-2px);
}
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover {
  background: #1DAB54;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.btn--white {
  background: var(--white);
  color: var(--forest);
}
.btn--white:hover {
  background: var(--parchment);
  transform: translateY(-2px);
}
.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 32px;
}

/* --- Navigation ----------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--forest);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-icon {
  width: 78px;
  height: 78px;
  flex-shrink: 0;
  object-fit: contain;
  transform: translateY(4px);
}
.nav__logo-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}
.nav__logo-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav__logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav__link:hover,
.nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav__cta {
  margin-left: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--forest);
  background: var(--parchment);
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.nav__cta:hover { background: var(--white); transform: translateY(-1px); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none;
  background: #162e22;
  padding: 8px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav__mobile.open { display: block; }
.nav__mobile .nav__link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}
.nav__mobile .nav__cta { display: inline-block; margin-top: 16px; }

/* --- Page Hero (inner pages) ---------------------------- */
.page-hero {
  background: var(--forest);
  padding: 72px 28px 80px;
}
.page-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-hero__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.page-hero h1 {
  color: var(--white);
  max-width: 760px;
}
.page-hero p {
  color: rgba(255,255,255,0.68);
  font-size: 18px;
  max-width: 580px;
  margin-top: 18px;
  max-width: none;
}

/* --- Services page (services.html) ---------------------- */
.svc-section {
  padding: clamp(48px, 7vw, 88px) clamp(20px, 4vw, 28px);
}
.svc-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
}
.svc-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.svc-copy .section-label { display: block; }
.svc-intro {
  color: var(--text-mid);
  margin-top: 14px;
  max-width: 65ch;
}
.svc-includes-wrap { margin-top: 28px; }
.svc-includes-title {
  color: var(--forest);
  margin-bottom: 12px;
}
.svc-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px solid var(--cream);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.45;
}
.svc-check-list li:last-child { border-bottom: none; }
.svc-check-list svg {
  width: 16px;
  height: 16px;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 3px;
}
.svc-pricing {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--cream);
}
.section--white .svc-pricing--muted {
  background: var(--parchment);
}
.svc-rate-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.svc-rate-amount {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.svc-rate-note {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.svc-urgent-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 6px;
}
.svc-urgent-amount {
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 700;
  color: var(--walnut);
  margin-bottom: 28px;
}
.svc-pricing .btn--primary {
  width: 100%;
  justify-content: center;
}
.svc-pricing-foot {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .svc-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .svc-row--mobile-description-first .svc-copy { order: -1; }
}

/* --- Contact page (contact.html) ------------------------ */
.contact-top {
  padding: clamp(40px, 6vw, 56px) clamp(20px, 4vw, 28px) 0;
}
.contact-form-block {
  padding: clamp(48px, 6vw, 64px) clamp(20px, 4vw, 28px) clamp(64px, 8vw, 88px);
}
.contact-faq {
  padding: clamp(64px, 8vw, 88px) clamp(20px, 4vw, 28px);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 24px);
}
@media (max-width: 768px) {
  .contact-cards { grid-template-columns: 1fr; }
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--cream);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.contact-card--wa::before { background: #25D366; }
.contact-card--email::before { background: var(--sage); }
.contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.contact-card__icon--wa {
  background: #25D366;
}
.contact-card__icon--wa svg {
  width: 26px;
  height: 26px;
}
.contact-card__icon--email {
  background: var(--parchment);
  color: var(--sage);
}
.contact-card__icon--email svg {
  width: 24px;
  height: 24px;
}
.contact-card h2 {
  font-size: clamp(18px, 3vw, 22px);
  margin-bottom: 12px;
  color: var(--forest);
}
.contact-card__body {
  color: var(--text-mid);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.65;
}
.contact-card__wa-num {
  font-size: 15px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 16px;
  line-height: 1.4;
}
.contact-card__wa-num a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-card__foot {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 16px;
  margin-bottom: 0;
}
.contact-card .btn {
  width: 100%;
  justify-content: center;
}
@media (min-width: 480px) {
  .contact-card .btn { width: auto; }
}
.contact-hours {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 28px) clamp(20px, 4vw, 36px);
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px 20px;
}
.contact-hours svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-hours__title {
  font-weight: 700;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 4px;
}
.contact-hours__text {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
  max-width: 72ch;
}
#brief-form {
  --form-pad: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--form-pad);
  border: 1px solid var(--cream);
}
@media (max-width: 640px) {
  #brief-form { --form-pad: 22px; }
}
#brief-form .brief-form__header {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;
  margin: calc(-1 * var(--form-pad)) calc(-1 * var(--form-pad)) clamp(20px, 4vw, 32px);
  padding: clamp(20px, 4vw, 28px) var(--form-pad);
  background: var(--forest);
}
#brief-form .brief-form__header h3 {
  color: var(--white);
  font-size: clamp(17px, 3vw, 18px);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  margin: 0;
}
#brief-form .brief-form__header p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin: 6px 0 0;
  max-width: none;
}
#brief-form .brief-form__header strong {
  color: rgba(255,255,255,0.95);
  font-weight: 700;
}

/* --- Hero (home) ---------------------------------------- */
.hero {
  background: var(--parchment);
  padding: 88px 28px 104px;
  position: relative;
  overflow: hidden;
}
.hero__blob1 {
  position: absolute; top: -80px; right: -60px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,89,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero__blob2 {
  position: absolute; bottom: -60px; left: 5%;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,68,35,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 22px;
}
.hero__eyebrow::before {
  content: ''; display: block;
  width: 26px; height: 2px;
  background: var(--sage);
}
.hero h1 { margin-bottom: 18px; }
.hero__sub {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px;
  color: var(--walnut);
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.5;
}
.hero__body { color: var(--text-mid); max-width: 540px; margin-bottom: 0; }
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__card {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 36px;
  box-shadow: 0 24px 72px rgba(28,61,46,0.13), 0 4px 16px rgba(28,61,46,0.06);
  text-align: center;
  width: 100%;
  max-width: 360px;
  position: relative;
}
.hero__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest) 0%, var(--sage) 50%, var(--walnut) 100%);
  border-radius: 24px 24px 0 0;
}
.hero__logo-large {
  width: auto; max-width: 200px; height: auto;
  margin: 0 auto 24px;
}
.hero__card-title {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}
.hero__card-sub {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.5;
}
.hero__card-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--parchment);
  border-radius: 8px;
  text-align: left;
}
.hero__badge-item svg { width: 18px; height: 18px; color: var(--sage); flex-shrink: 0; }
.hero__badge-item span { font-size: 13px; font-weight: 600; color: var(--forest); }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid var(--cream);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.stat { text-align: center; }
.stat__number {
  display: block;
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.stat__label { font-size: 13px; color: var(--text-mid); margin-top: 6px; }

/* --- Trust bar ------------------------------------------ */
.trust-bar {
  background: var(--forest);
  padding: 18px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.trust-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* --- Pillars -------------------------------------------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.pillar {
  padding: 38px 30px;
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pillar:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.pillar__icon {
  width: 48px; height: 48px;
  color: var(--sage);
  margin-bottom: 20px;
}
.pillar h3 { margin-bottom: 12px; }
.pillar p { color: var(--text-mid); font-size: 15px; }

/* --- Services grid -------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 60px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
  border-color: var(--sage);
}
.service-card__num {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.service-card__icon {
  width: 42px; height: 42px;
  color: var(--sage);
  margin-bottom: 14px;
}
.service-card h3 { font-size: 17px; margin-bottom: 10px; }
.service-card > p { color: var(--text-mid); font-size: 14px; line-height: 1.6; }
.service-card__meta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--cream);
}
.service-card__includes {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.service-card__list li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.service-card__list li::before {
  content: '';
  display: block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--sage);
  margin-top: 8px; flex-shrink: 0;
}
.service-card__rate {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 13px;
  background: var(--parchment);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--forest);
}

/* --- Process steps -------------------------------------- */
.process-section { padding: 88px 28px; }
.steps-wrap {
  max-width: var(--max-width);
  margin: 60px auto 0;
  position: relative;
}
.steps-track {
  position: absolute;
  top: 36px; left: 7%;  right: 7%;
  height: 2px;
  background: var(--cream);
  z-index: 0;
}
.steps-track::after {
  content: '';
  position: absolute; top: 0; left: 0;
  height: 100%; width: 0;
  background: var(--sage);
  transition: width 1.2s ease;
}
.steps-track.animated::after { width: 100%; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.step { text-align: center; padding: 0 8px; }
.step__num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--cream);
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition), box-shadow var(--transition);
}
.step:hover .step__num {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(28,61,46,0.2);
}
.step__label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}
.step h3 { font-size: 14px; color: var(--forest); margin-bottom: 8px; }
.step p { font-size: 12px; color: var(--text-mid); max-width: 140px; margin: 0 auto; }

/* --- Pricing table -------------------------------------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 44px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pricing-table thead th {
  background: var(--forest);
  color: rgba(255,255,255,0.9);
  padding: 18px 22px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-table tbody tr {
  border-bottom: 1px solid var(--cream);
  transition: background var(--transition);
}
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--parchment); }
.pricing-table td {
  padding: 18px 22px;
  font-size: 15px;
  vertical-align: top;
  line-height: 1.5;
}
.td--tier { font-weight: 700; color: var(--forest); white-space: nowrap; }
.td--std  { font-weight: 700; color: var(--sage);   white-space: nowrap; }
.td--urg  { font-size: 13px;  color: var(--text-mid);white-space: nowrap; }
.td--inc  { font-size: 13px;  color: var(--text-mid);}
.pricing-cards { display: none; flex-direction: column; gap: 16px; margin-top: 40px; }
.pricing-card {
  background: var(--white);
  border: 1px solid var(--cream);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius-lg);
  padding: 22px 22px 22px 20px;
}
.pc__tier  { font-weight: 700; color: var(--forest); font-size: 16px; margin-bottom: 4px; }
.pc__std   { font-family: Georgia, serif; font-size: 22px; font-weight: 700; color: var(--sage); margin-bottom: 2px; }
.pc__urg   { font-size: 12px; color: var(--text-mid); margin-bottom: 10px; }
.pc__inc   { font-size: 13px; color: var(--text-mid); }
.pricing-notes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.pnote {
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: var(--radius-lg);
  text-align: center;
}
.pnote svg { width: 34px; height: 34px; color: var(--sage); margin: 0 auto 12px; }
.pnote h3  { font-size: 14px; color: var(--forest); margin-bottom: 6px; }
.pnote p   { font-size: 13px; color: var(--text-mid); max-width: none; margin: 0; }

/* --- FAQ ------------------------------------------------ */
.faq-wrap {
  max-width: 820px;
  margin-top: 52px;
}
.faq-item { border-bottom: 1px solid var(--cream); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--forest);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--sage); }
.faq-q svg { width: 20px; height: 20px; color: var(--sage); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s ease, padding 0.24s ease;
}
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 22px; }
.faq-a p { color: var(--text-mid); font-size: 15px; max-width: 700px; }

/* --- Testimonials --------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 60px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.tcard {
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.tcard:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.tcard::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 0.6;
  color: var(--cream);
  position: absolute;
  top: 22px; left: 22px;
  pointer-events: none;
}
.tcard__stars { display: flex; gap: 3px; margin-bottom: 16px; }
.tcard__stars svg { width: 15px; height: 15px; color: var(--gold); }
.tcard__text {
  font-size: 15px;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.tcard__author { display: flex; align-items: center; gap: 12px; }
.tcard__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
}
.tcard__name { font-weight: 700; font-size: 14px; color: var(--forest); }
.tcard__uni  { font-size: 12px; color: var(--text-light); }

/* --- Quality / Scope ------------------------------------ */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 40px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.qitem {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: var(--radius-lg);
}
.qitem__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--parchment);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage); flex-shrink: 0;
}
.qitem__icon svg { width: 20px; height: 20px; }
.qitem h3 { font-size: 15px; margin-bottom: 6px; }
.qitem p  { font-size: 13px; color: var(--text-mid); margin: 0; }
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.scope-col {
  padding: 32px;
  border-radius: var(--radius-lg);
}
.scope-col--yes {
  background: rgba(74,124,89,0.07);
  border: 1px solid rgba(74,124,89,0.2);
}
.scope-col--no {
  background: rgba(107,68,35,0.05);
  border: 1px solid rgba(107,68,35,0.15);
}
.scope-col h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; margin-bottom: 16px;
}
.scope-col h3 svg { width: 20px; height: 20px; }
.scope-col--yes h3 { color: var(--sage); }
.scope-col--no  h3 { color: var(--walnut); }
.scope-list li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 14px;
  color: var(--text-mid);
  display: flex; align-items: flex-start; gap: 9px;
}
.scope-list li:last-child { border-bottom: none; }
.scope-list li::before {
  content: ''; display: block;
  width: 6px; height: 6px; border-radius: 50%;
  margin-top: 7px; flex-shrink: 0;
}
.scope-col--yes .scope-list li::before { background: var(--sage); }
.scope-col--no  .scope-list li::before { background: var(--walnut); }

/* --- Contact -------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  max-width: var(--max-width);
  margin: 60px auto 0;
}
.cinfo__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--cream);
}
.cinfo__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--parchment);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage); flex-shrink: 0;
}
.cinfo__icon svg { width: 20px; height: 20px; }
.cinfo__lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-bottom: 4px; }
.cinfo__val { font-size: 16px; font-weight: 600; color: var(--forest); margin-bottom: 3px; }
.cinfo__note { font-size: 13px; color: var(--text-light); }

/* --- Form ----------------------------------------------- */
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { margin-bottom: 18px; }
.form__label {
  display: block;
  font-size: 13px; font-weight: 700;
  color: var(--forest);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
}
.form__input, .form__select, .form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--cream);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  line-height: 1.4;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74,124,89,0.14);
}
.form__textarea { resize: vertical; min-height: 130px; }
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234A7C59'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
}
.form__submit { width: 100%; justify-content: center; margin-top: 8px; }
.form__note { font-size: 12px; color: var(--text-light); margin-top: 10px; text-align: center; }

/* --- Section CTA ---------------------------------------- */
.cta-section {
  background: var(--forest);
  padding: 88px 28px;
  text-align: center;
}
.cta-section h2 {
  color: var(--white);
  font-family: Georgia, serif;
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,0.68);
  max-width: 500px;
  margin: 0 auto 32px;
}

/* --- Footer --------------------------------------------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 68px 28px 32px;
}
.footer__top {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  margin-top: 16px;
  line-height: 1.65;
}
.footer__logo-wrap {
  display: flex; align-items: center; gap: 11px;
}
.footer__logo-icon { width: 38px; height: 38px; object-fit: contain; }
.footer__logo-name {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.footer__logo-sub {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
}
.footer__col-title {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
}
.footer__links li { margin-bottom: 11px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__links a:hover { color: rgba(255,255,255,0.9); }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 14px; color: rgba(255,255,255,0.5);
  margin-bottom: 12px; line-height: 1.5;
}
.footer__contact-icon { width: 15px; height: 15px; color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy    { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer__tagline { font-size: 13px; font-style: italic; color: rgba(255,255,255,0.4); font-family: Georgia, serif; }

/* --- WhatsApp float ------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wa-pulse 3.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-float svg { width: 28px; height: 28px; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.09); }
}

/* --- Scroll reveal -------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }
.reveal.d6 { transition-delay: 0.48s; }

/* --- Responsive ----------------------------------------- */
@media (max-width: 960px) {
  .hero__inner        { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual       { display: none; }
  .hero__stats        { grid-template-columns: repeat(3, 1fr); }
  .pillars-grid       { grid-template-columns: 1fr 1fr; }
  .services-grid      { grid-template-columns: 1fr 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr 1fr; }
  .steps-grid         { grid-template-columns: repeat(3, 1fr); }
  .steps-track        { display: none; }
  .contact-grid       { grid-template-columns: 1fr; gap: 44px; }
  .quality-grid       { grid-template-columns: 1fr; }
  .scope-grid         { grid-template-columns: 1fr; }
  .pricing-notes-grid { grid-template-columns: 1fr 1fr; }
  .footer__top        { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pricing-table      { display: none; }
  .pricing-cards      { display: flex; }
}
@media (max-width: 640px) {
  .nav__inner          { height: 84px; padding: 0 20px; }
  .nav__logo           { gap: 10px; }
  .nav__logo-icon      { width: 66px; height: 66px; transform: translateY(5px); }
  .nav__logo-name      { font-size: 18px; }
  .nav__logo-sub       { font-size: 8px; letter-spacing: 0.12em; }
  .page-hero          { padding: 52px 20px 60px; }
  .page-hero p        { font-size: 16px; margin-top: 14px; }
  .cta-section        { padding: 64px 20px; }
  section             { padding: 64px 20px; }
  .hero               { padding: 64px 20px 80px; }
  h1                  { font-size: clamp(28px, 8vw, 38px); }
  .pillars-grid       { grid-template-columns: 1fr; }
  .services-grid      { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .steps-grid         { grid-template-columns: 1fr 1fr; }
  .hero__stats        { grid-template-columns: 1fr 1fr; }
  .pricing-notes-grid { grid-template-columns: 1fr 1fr; }
  .footer__top        { grid-template-columns: 1fr; }
  .footer__bottom     { flex-direction: column; text-align: center; }
  .trust-bar__inner   { gap: 20px; }
  .form__row          { grid-template-columns: 1fr; }
  .btn-group          { flex-direction: column; align-items: stretch; }
  .btn-group .btn     { justify-content: center; }
  .nav__menu          { display: none; }
  .nav__cta           { display: none; }
  .nav__hamburger     { display: flex; }
}
