:root {
  --chartreuse: #c0ff00;
  --forest: #0f432d;
  --forest-soft: #1f5f43;
  --ink: #0f1720;
  --muted: #5d6872;
  --line: #e8edf0;
  --white: #ffffff;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  font-family: "Poiret One", sans-serif;
  font-size: 3rem;
  font-weight: 800;
}

.brand-lime {
  color: var(--chartreuse);
}

.brand-stack {
  color: var(--forest-soft);
}


.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  color: #1b252e;
  font-size: 1.05rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--forest);
}

.caret {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.82rem 1.35rem;
  font-size: 1.02rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--chartreuse);
  color: var(--forest);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 67, 45, 0.18);
}

.btn-outline {
  border-color: var(--forest);
  color: var(--forest);
}

.dropdown,
.mega-panel {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s ease;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(15, 23, 32, 0.08);
}

.has-dropdown,
.has-mega {
  position: relative;
}

/* Nav item row: link + sub-toggle button side by side */
.nav-item-row {
  display: inline-flex;
  align-items: center;
}

.sub-toggle {
  display: none; /* hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.5rem;
  color: var(--forest-soft);
  line-height: 1;
  transition: transform 0.2s;
}
.sub-toggle svg { display: block; }
.sub-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel,
.has-dropdown.open .dropdown,
.has-mega.open .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  padding: 0.7rem;
}

.dropdown a {
  display: block;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  color: #29343e;
  font-size: 0.92rem;
}

.dropdown a:hover {
  background: #f6f9f7;
  color: var(--forest);
}

.mega-panel {
  top: calc(100% + 12px);
  left: 50%;
  transform: translate(-50%, 6px);
  width: min(1000px, 95vw);
  padding: 1.3rem;
}

.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel,
.has-mega.open .mega-panel {
  transform: translate(-50%, 0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mega-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem;
}

.mega-card h4 {
  margin: 0 0 0.6rem;
  color: var(--forest);
  font-size: 0.95rem;
}

.mega-card a {
  display: block;
  font-size: 0.88rem;
  color: #2b3640;
  padding: 0.25rem 0;
}

.hero {
  padding: 7.2rem 0 6rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

h1,
h2,
h3,
h4 {
  font-family: "Poiret One", sans-serif;
  margin: 0 0 1rem;
  color: var(--forest);
  font-weight: 700;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(3rem, 4.8vw, 4.4rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.95rem);
}

p {
  margin: 0 0 1rem;
  color: #2d3748;
  font-size: 1.08rem;
  line-height: 1.65;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  color: var(--forest-soft);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.6;
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
}

.section {
  padding: 3.5rem 0;
}

.section-head {
  margin-bottom: 2rem;
  text-align: left;
}

.section-head.text-center {
  text-align: left;
}

.section-head p {
  max-width: 680px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
}

.hero-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.hero-visual img,
.banner-image,
.image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual img {
  min-height: 420px;
}

.svg-anim {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 130px;
  height: 130px;
  opacity: 0.88;
  animation: floatCard 4.8s ease-in-out infinite;
}

.line-anim {
  stroke-dasharray: 12;
  animation: dashFlow 2.2s linear infinite;
}

.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.banner-image {
  min-height: 360px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.doodle-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.doodle-img {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbf7;
  padding: 1rem;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doodle-img img {
  max-height: 95px;
  width: auto;
}

.image-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.image-card img {
  height: 200px;
}

.image-card .content {
  padding: 1rem;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -24;
  }
}

.icon-line {
  width: 40px;
  height: 2px;
  background: var(--chartreuse);
  margin-bottom: 0.8rem;
}

.service-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.pill-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.85rem;
  color: #28434b;
}

.pill-link:hover {
  border-color: #c9dfd4;
  color: var(--forest);
}

.process-strip {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.step-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem;
}

.step-no {
  color: var(--forest-soft);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.kpi-chip {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem;
}

.kpi-chip strong {
  display: block;
  color: var(--forest);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.list-clean {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.list-clean li {
  margin-bottom: 0.2rem;
}

.card-highlight {
  border-color: #c8dfd1;
  background: linear-gradient(180deg, rgba(192, 255, 0, 0.09), rgba(192, 255, 0, 0));
}

.package-price {
  font-size: 1.55rem;
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.tiny-note {
  font-size: 0.82rem;
  color: #74818c;
  margin-top: 0.8rem;
}

.article-meta {
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #6f7c87;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  font-size: 0.83rem;
  color: #4c5963;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.94rem;
  color: #1f2a33;
  background: #fff;
}

.field textarea {
  resize: vertical;
}

.field-full {
  grid-column: 1 / -1;
}

.kpi {
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
}

.page-hero {
  padding: 5rem 0 3.4rem;
  border-bottom: 1px solid var(--line);
}

.cta-band {
  background: var(--forest);
  color: #d4f2e4;
}

.cta-band p,
.cta-band h2 {
  color: inherit;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.2rem 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #6a7680;
  font-size: 0.9rem;
}

/* ─── Notification Bar ──────────────────────────────────────────── */
.notif-bar {
  background: var(--chartreuse);
  color: var(--forest);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.6rem 1rem;
  letter-spacing: 0.04em;
}
.notif-bar a { color: var(--forest); text-decoration: underline; }

/* ─── Scroll Reveal ─────────────────────────────────────────────── */
.reveal,
.reveal.visible,
.reveal-left,
.reveal-left.visible,
.reveal-right,
.reveal-right.visible {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ─── Stats Strip ───────────────────────────────────────────────── */
.stats-strip {
  background: var(--forest);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.stat-item {
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  transition: background 0.2s ease;
}
.stat-item:hover {
  background: rgba(255, 255, 255, 0.03);
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.stat-item::before {
  display: none;
}
.stat-item strong {
  display: block;
  font-size: clamp(2.8rem, 4.5vw, 3.8rem);
  font-family: "Poiret One", sans-serif;
  color: var(--chartreuse);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.stat-item span {
  display: block;
  font-size: 0.88rem;
  color: rgba(212, 242, 228, 0.65);
  font-weight: 500;
  line-height: 1.55;
  max-width: 160px;
  margin-inline: auto;
}

/* ─── Trust Logo Row ────────────────────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.2rem 0;
  background: #f9fdfb;
}
.trust-label {
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #8c9ba5;
  font-weight: 700;
  margin-bottom: 1.3rem;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-logo {
  font-family: "Poiret One", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #b0bec7;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.trust-logo:hover { color: var(--forest-soft); }

/* ─── Feature Check List ────────────────────────────────────────── */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.5rem 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  border-bottom: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--chartreuse);
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 900;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.12rem;
}

/* ─── Testimonials ──────────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  background: #fff;
  position: relative;
}
.testimonial-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  color: #2b3640;
  line-height: 1.65;
  font-style: italic;
}
.testimonial-card blockquote::before {
  content: "\201C";
  font-size: 2.5rem;
  color: var(--chartreuse);
  font-family: "Poiret One", sans-serif;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.2rem;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--chartreuse);
  font-family: "Poiret One", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--forest);
  font-weight: 700;
}
.testimonial-info span {
  font-size: 0.8rem;
  color: #7a8893;
}
.stars {
  color: #f5b70a;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  display: block;
}

/* ─── FAQ Accordion ─────────────────────────────────────────────── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 0.65rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 1.3rem;
  font-family: "Poiret One", sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  transition: background 0.15s;
}
.faq-q:hover { background: #f5faf7; }
.faq-q[aria-expanded="true"] { background: #f0faea; }
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--forest-soft);
  transition: transform 0.25s;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 1.3rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}
.faq-a p {
  padding-bottom: 1rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── Comparison Table ──────────────────────────────────────────── */
.compare-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.compare-table th {
  background: var(--forest);
  color: var(--chartreuse);
  padding: 1rem 1.1rem;
  text-align: left;
  font-family: "Poiret One", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.compare-table th:first-child { color: #a5d4bc; }
.compare-table td {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--line);
  color: #2b3640;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: #f8fbf8; }
.compare-table td.check { color: var(--forest); font-weight: 700; font-size: 1.1rem; }
.compare-table td.dash { color: #c5cfd7; }
.col-highlight { background: rgba(192, 255, 0, 0.07) !important; }

/* ─── Alert / Callout Box ───────────────────────────────────────── */
.callout {
  border-left: 4px solid var(--chartreuse);
  background: rgba(192, 255, 0, 0.07);
  border-radius: 0 12px 12px 0;
  padding: 1.1rem 1.3rem;
  margin: 1.2rem 0;
}
.callout p { margin: 0; color: var(--forest); font-size: 1rem; font-weight: 500; }

/* ─── Badge / Tag ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-green { background: rgba(192, 255, 0, 0.18); color: var(--forest); }
.badge-forest { background: var(--forest); color: var(--chartreuse); }
.badge-outline { border: 1.5px solid var(--line); color: var(--muted); }

/* ─── Industry Cards (large) ────────────────────────────────────── */
.industry-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.industry-card:hover {
  border-color: #a8c5b5;
  transform: translateY(-3px);
}
.industry-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.industry-card-body {
  padding: 1.2rem;
}
.industry-card-body h3 { margin-bottom: 0.4rem; }
.industry-card-body p { margin: 0 0 0.8rem; font-size: 0.95rem; }

/* ─── Timeline ──────────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 2.2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.timeline-item {
  position: relative;
  margin-bottom: 2.4rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.75rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--chartreuse);
  border: 2px solid var(--forest);
}
.timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-soft);
  margin-bottom: 0.25rem;
}
.timeline-item h3 { margin-bottom: 0.3rem; font-size: 1.25rem; }
.timeline-item p { margin: 0; font-size: 0.95rem; }

/* ─── Team Cards ────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.2s;
}
.team-card:hover { border-color: #a8c5b5; }
.team-card-img {
  height: 160px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.team-card-body { padding: 1rem; }
.team-card-body h4 { margin: 0 0 0.25rem; font-size: 1rem; }
.team-card-body span { font-size: 0.85rem; color: var(--muted); }

/* ─── Blog Article Cards ────────────────────────────────────────── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.article-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  border-color: #a8c5b5;
  transform: translateY(-3px);
}
.article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.article-card-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.article-card-body p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
  flex: 1;
}
.read-more {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.read-more::after { content: "→"; }

/* ─── Article Featured Big ──────────────────────────────────────── */
.article-featured {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.article-featured img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.article-featured-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.article-featured-body h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 0.6rem; }

/* ─── Category Filter Pills ─────────────────────────────────────── */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.filter-btn {
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.87rem;
  font-weight: 700;
  color: #4a5562;
  cursor: pointer;
  background: #fff;
  transition: 0.15s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--forest);
  color: var(--chartreuse);
  border-color: var(--forest);
}

/* ─── Newsletter Box ────────────────────────────────────────────── */
.newsletter-box {
  background: linear-gradient(135deg, var(--forest), var(--forest-soft));
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  color: #d4f2e4;
}
.newsletter-box h2, .newsletter-box h3 { color: var(--chartreuse); }
.newsletter-box p { color: #a5d4bc; }
.newsletter-form {
  display: flex;
  gap: 0.6rem;
  max-width: 480px;
  margin: 1.2rem auto 0;
}
.newsletter-form input {
  flex: 1;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.96rem;
}
.newsletter-form input:focus { outline: 2px solid var(--chartreuse); }

/* ─── Icon Box Cards ────────────────────────────────────────────── */
.icon-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.3rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.icon-box:hover {
  box-shadow: 0 8px 22px rgba(15, 67, 45, 0.09);
  transform: translateY(-2px);
}
.icon-box-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(192, 255, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}
.icon-box-body h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.icon-box-body p { font-size: 0.9rem; margin: 0; }

/* ─── Split Banner (image + text) enhanced ──────────────────────── */
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

/* ─── Process Steps (numbered) ─────────────────────────────────── */
.numbered-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.n-step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem 1.2rem 1.2rem;
  counter-increment: step;
}
.n-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: "Poiret One", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--chartreuse);
  line-height: 1;
  margin-bottom: 0.7rem;
  -webkit-text-stroke: 1px var(--forest);
}
/* SVG numbered badge variant — hides CSS counter */
.numbered-steps-svg .n-step::before {
  display: none;
}
.step-badge {
  display: block;
  margin-bottom: 0.8rem;
  flex-shrink: 0;
}
.n-step h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.n-step p { font-size: 0.9rem; margin: 0; }

/* ─── Metrics / Result Cards ────────────────────────────────────── */
.metric-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(192, 255, 0, 0.06), transparent);
}
.metric-card strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Poiret One", sans-serif;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.metric-card span { font-size: 0.9rem; color: var(--muted); }

/* ─── CTA Inline Box ────────────────────────────────────────────── */
.cta-inline {
  background: linear-gradient(135deg, rgba(192, 255, 0, 0.12), rgba(192, 255, 0, 0.04));
  border: 1px solid rgba(192, 255, 0, 0.35);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-inline h3 { margin: 0 0 0.3rem; font-size: 1.3rem; }
.cta-inline p { margin: 0; font-size: 0.96rem; }

/* ─── Value Proposition Row ─────────────────────────────────────── */
.value-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding: 2.5rem 0;
}
.value-item {
  text-align: center;
  padding: 1rem;
}
.value-number {
  font-family: "Poiret One", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}
.value-number sup { font-size: 1.4rem; vertical-align: super; }

/* ─── Hero Enhanced ─────────────────────────────────────────────── */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.hero-tag {
  border: 1.5px solid rgba(192, 255, 0, 0.5);
  color: var(--forest-soft);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ─── Page Hero Enhanced ────────────────────────────────────────── */
.page-hero-lg {
  padding: 6rem 0 4rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.page-hero-lg .hero-grid {
  align-items: center;
}

/* ─── Service Detail Card ───────────────────────────────────────── */
.service-detail {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.service-detail-header {
  background: var(--forest);
  color: var(--chartreuse);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.service-detail-header h3 { color: var(--chartreuse); margin: 0; font-size: 1.25rem; }
.service-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(192, 255, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.service-detail-body { padding: 1.4rem 1.5rem; }
.service-detail-body p { font-size: 0.97rem; }

/* ─── Anchor Jump Bar ───────────────────────────────────────────── */
.anchor-bar {
  background: #f5faf7;
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
  position: sticky;
  top: 78px;
  z-index: 20;
}
.anchor-bar .container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.anchor-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: #4a5a64;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  transition: 0.15s;
}
.anchor-link:hover { background: var(--chartreuse); color: var(--forest); }

/* ─── Related Links Block ───────────────────────────────────────── */
.related-block {
  background: #f5faf7;
  border-radius: 14px;
  padding: 1.4rem;
  margin-top: 1rem;
}
.related-block h4 { color: var(--forest); margin-bottom: 0.7rem; font-size: 1rem; }
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid #c5dfd1;
  border-radius: 8px;
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
  color: var(--forest-soft);
  transition: 0.15s;
}
.related-link:hover { background: var(--forest); color: var(--chartreuse); border-color: var(--forest); }

/* ─── Case Study Card (large) ───────────────────────────────────── */
.case-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.case-card.reverse { direction: rtl; }
.case-card.reverse > * { direction: ltr; }
.case-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.case-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-card-body h3 { font-size: 1.45rem; margin-bottom: 0.5rem; }
.result-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}
.result-pill {
  background: rgba(192, 255, 0, 0.15);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest);
}

/* ─── Pricing Card Enhanced ─────────────────────────────────────── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: start;
}
.pricing-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.8rem 1.4rem;
  background: #fff;
  transition: box-shadow 0.25s;
}
.pricing-card:hover { border-color: #a8c5b5; }
.pricing-card.featured {
  border-color: var(--chartreuse);
  background: linear-gradient(180deg, rgba(192, 255, 0, 0.06), #fff);
  box-shadow: 0 8px 28px rgba(192, 255, 0, 0.18);
}
.pricing-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--forest-soft);
  margin-bottom: 0.5rem;
}
.pricing-name {
  font-family: "Poiret One", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.3rem;
}
.pricing-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  min-height: 3em;
}
.pricing-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 1rem 0;
}
.pricing-cta { width: 100%; text-align: center; margin-top: 1.2rem; }

/* ─── Contact Section Layout ────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 3rem;
  align-items: start;
}

/* ─── Contact Form Card ─────────────────────────────────────────── */
.contact-form-wrap {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(15, 67, 45, 0.06);
}
.contact-form-header {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-soft) 100%);
  padding: 2rem 2.2rem;
  color: #d4f2e4;
}
.contact-form-header .eyebrow {
  color: var(--chartreuse);
  margin-bottom: 0.4rem;
}
.contact-form-header h2 {
  color: #fff;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: 0 0 0.4rem;
}
.contact-form-header p {
  color: #a5d4bc;
  margin: 0;
  font-size: 0.95rem;
}
.contact-form-body {
  padding: 2rem 2.2rem;
  background: #fff;
}
.contact-form-footer {
  padding: 1.5rem 2.2rem 2rem;
  background: #fbfdfb;
  border-top: 1px solid var(--line);
}
.contact-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
  border-radius: 12px;
}
.contact-privacy {
  margin: 0.8rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

/* ─── Improved Field Styles ─────────────────────────────────────── */
.field label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #3a4a54;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.field-req {
  color: var(--forest-soft);
}
.field input,
.field select,
.field textarea {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.72rem 0.9rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #1f2a33;
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest-soft);
  box-shadow: 0 0 0 3px rgba(31, 95, 67, 0.1);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #b2bec8;
}

/* ─── Contact Sidebar ───────────────────────────────────────────── */
.contact-sidebar-inner {
  position: sticky;
  top: 100px;
}
.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  text-decoration: none;
}
.contact-detail-item:hover {
  border-color: var(--forest-soft);
  background: #f5fbf7;
  box-shadow: 0 4px 16px rgba(15, 67, 45, 0.07);
}
.contact-detail-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(15, 67, 45, 0.08);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-detail-item strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--forest);
  display: block;
}
.contact-detail-item span {
  font-size: 0.82rem;
  color: var(--muted);
  display: block;
}

/* ─── Response Times Box ────────────────────────────────────────── */
.contact-response-box {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.3rem 1.4rem;
  background: #f8fbf8;
  margin-bottom: 1.2rem;
}
.contact-response-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.contact-response-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.crb-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--chartreuse);
  border: 1.5px solid var(--forest);
}
.contact-response-list li > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex: 1;
  gap: 0.5rem;
}
.contact-response-list li strong {
  font-size: 0.85rem;
  color: var(--forest);
  font-weight: 600;
}
.contact-response-list li span {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: right;
}

/* ─── Contact CTA Note ──────────────────────────────────────────── */
.contact-cta-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(192, 255, 0, 0.1);
  border: 1px solid rgba(192, 255, 0, 0.3);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ─── Contact Form States ───────────────────────────────────────── */
.contact-success {
  border: 1px solid rgba(192, 255, 0, 0.4);
  background: rgba(192, 255, 0, 0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
}
.contact-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--chartreuse);
  color: var(--forest);
  font-size: 1.4rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.contact-success h3 { color: var(--forest); margin-bottom: 0.5rem; }
.contact-success p  { margin: 0; font-size: 1rem; }
.contact-error {
  background: #fff4f4;
  border: 1px solid #f5c0c0;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: #b22222;
  font-size: 0.92rem;
  margin-top: 0.9rem;
}
.contact-error a { color: #b22222; text-decoration: underline; }

/* ─── Work Page Header ─────────────────────────────────────────── */
.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.work-header .filter-row {
  margin: 0;
}

/* ─── Portfolio Grid ────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.portfolio-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

/* ─── Portfolio Card ────────────────────────────────────────────── */
.portfolio-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.portfolio-card:hover {
  border-color: #a8c5b5;
  transform: translateY(-3px);
}
.portfolio-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.portfolio-img img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.portfolio-card-featured .portfolio-img img {
  height: 100%;
  min-height: 380px;
}
.portfolio-card:hover .portfolio-img img {
  transform: scale(1.04);
}
.portfolio-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.portfolio-badge.badge-green {
  background: rgba(192, 255, 0, 0.9);
  color: var(--forest);
}
.portfolio-badge.badge-outline {
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid var(--line);
  color: var(--forest);
}
.portfolio-badge.badge-forest {
  background: rgba(15, 67, 45, 0.88);
  color: var(--chartreuse);
}
.portfolio-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 1.2rem;
}
.portfolio-card-featured .portfolio-body {
  padding: 2rem 2.2rem;
  justify-content: center;
  gap: 1.6rem;
}
.portfolio-body-main h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  margin: 0 0 0.5rem;
  color: var(--forest);
  line-height: 1.3;
}
.portfolio-card-featured .portfolio-body-main h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}
.portfolio-body-main p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.portfolio-card-featured .portfolio-body-main p {
  font-size: 1rem;
}
.portfolio-metrics {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.portfolio-metric {
  flex: 1;
  min-width: 80px;
  background: #f5fbf7;
  border: 1px solid #daeee3;
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  text-align: center;
}
.portfolio-metric strong {
  display: block;
  font-size: 1.15rem;
  font-family: "Poiret One", sans-serif;
  color: var(--forest);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.portfolio-metric span {
  font-size: 0.73rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.portfolio-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--forest-soft);
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  margin-top: auto;
  transition: color 0.15s, gap 0.15s;
}
.portfolio-card:hover .portfolio-cta {
  color: var(--forest);
  gap: 0.6rem;
}

/* ─── Back to Top ───────────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  background: var(--forest);
  color: var(--chartreuse);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(15, 67, 45, 0.25);
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 50;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--forest-soft); }

/* ─── Enhanced Footer ───────────────────────────────────────────── */
.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 3rem;
  padding: 3.5rem 0 2rem;
}
.footer-brand .brand { display: block; margin-bottom: 0.8rem; font-size: 1.6rem; letter-spacing: 0.09em; }
.footer-brand p { font-size: 0.9rem; max-width: 300px; line-height: 1.6; }
.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  transition: 0.15s;
}
.social-btn:hover { background: var(--forest); color: var(--chartreuse); border-color: var(--forest); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.footer-col h5 {
  font-family: "Poiret One", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--forest);
  margin: 0 0 0.8rem;
}
.footer-col a {
  display: block;
  font-size: 0.87rem;
  color: var(--muted);
  padding: 0.2rem 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--forest); }
.footer-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0.5rem 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.2rem 0;
  color: #8a9aa6;
  font-size: 0.85rem;
}
.footer-bottom a { color: #8a9aa6; }
.footer-bottom a:hover { color: var(--forest); }

/* ─── Scrolled Header Shadow ────────────────────────────────────── */
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(15, 23, 32, 0.08);
}

/* ─── Card Hover Effect ─────────────────────────────────────────── */
.card {
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover {
  border-color: #a8c5b5;
  transform: translateY(-2px);
}

/* ─── Section Background Variants ───────────────────────────────── */
.section-alt {
  background: #f7fbf8;
}
.section-dark {
  background: var(--ink);
  color: #c8d8e2;
}
.section-dark h2, .section-dark h3 { color: #e8f5ee; }
.section-dark p { color: #8fa9b8; }

/* ─── Hamburger Icon ────────────────────────────────────────────── */
.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--forest);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}
.menu-toggle { gap: 4px; flex-direction: column; }

/* Animated X state */
.menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
  width: 0;
}
.menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ─── Skip Nav ──────────────────────────────────────────────────── */
.skip-nav {
  position: absolute;
  top: -50px;
  left: 1rem;
  background: var(--chartreuse);
  color: var(--forest);
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 100;
  transition: top 0.2s;
}
.skip-nav:focus { top: 0; }

/* ─── Breadcrumb ────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: var(--forest-soft); }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb span { color: #adb8c2; }

/* ─── Cards 2,5,6 column helpers ───────────────────────────────── */
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.cards-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.cards-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.75rem; }

/* ─── Pulse Animation ───────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192, 255, 0, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(192, 255, 0, 0); }
}
.pulse { animation: pulse 2.5s ease infinite; }

/* ─── Spin + Orbit animations ───────────────────────────────────── */
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes scaleIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.scale-in { animation: scaleIn 0.5s ease forwards; }

/* ─── Cards gap variant ─────────────────────────────────────────── */
.cards-gap-lg { gap: 1.5rem; }

/* ─── Text utilities ────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-forest { color: var(--forest); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-sm { margin-top: 0.5rem; }
.mb-sm { margin-bottom: 0.5rem; }
.mt-md { margin-top: 1.5rem; }
.mb-md { margin-bottom: 1.5rem; }

/* ─── Responsive ────────────────────────────────────────────────── */

/* ── Tablet (≤ 980px) ── */
@media (max-width: 980px) {
  /* Mobile nav */
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1.5rem 1.2rem;
    max-height: calc(100dvh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.show {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
  }

  .nav-link {
    padding: 0.55rem 0;
    font-size: 1rem;
  }

  .dropdown,
  .mega-panel {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    width: 100%;
    display: none;
    margin-top: 0.3rem;
    border-radius: 10px;
  }

  .has-dropdown.open .dropdown,
  .has-mega.open .mega-panel {
    display: block;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }

  /* Show sub-toggle chevron buttons on mobile */
  .sub-toggle { display: inline-flex; align-items: center; }

  /* Nav item row takes full width */
  .nav-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid var(--line);
    padding: 0.1rem 0;
  }

  /* Make nav links fill row */
  .nav-item-row .nav-link {
    flex: 1;
    padding: 0.55rem 0;
  }

  /* Regular nav items (no sub-menu) also get a separator */
  .nav-list > li > .nav-link:not(.btn),
  .nav-list > li > a.nav-link:not(.btn) {
    display: block;
    border-bottom: 1px solid var(--line);
    padding: 0.65rem 0;
  }
  /* But items that have nav-item-row already have the border on the row */
  .nav-list > li:has(.nav-item-row) > .nav-link { border-bottom: none; }

  /* Indent sub-menu items */
  .dropdown a, .mega-card a {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
  .mega-card {
    border: none;
    border-radius: 0;
    padding: 0.4rem 0.75rem;
    background: #f7fbf8;
    border-radius: 8px;
    margin-bottom: 0.3rem;
  }
  .mega-card h4 {
    font-size: 0.8rem;
    padding: 0.4rem 0 0.2rem;
    margin: 0;
  }

  /* Fully single-column on tablet */
  .hero-grid,
  .section-split,
  .article-featured,
  .case-card,
  .footer-main,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  /* Two-column on tablet */
  .cards,
  .cards-4,
  .cards-5,
  .cards-6,
  .process-row,
  .kpi-grid,
  .doodle-row,
  .stats-grid,
  .testimonial-grid,
  .team-grid,
  .article-grid,
  .pricing-cards,
  .numbered-steps,
  .footer-links,
  .value-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-card-featured {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .portfolio-card-featured .portfolio-img img {
    min-height: 260px;
    height: 260px;
  }

  .work-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-card.reverse { direction: ltr; }
  .split-reverse { direction: ltr; }
  .footer-main { gap: 2rem; }
  .article-featured img { min-height: 220px; }
  .case-card img { min-height: 220px; }

  .anchor-bar { display: none; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-radius: 12px; }
  .contact-sidebar-inner { position: static; }

  /* Tighten hero on tablet */
  .hero { padding: 4.5rem 0 3.5rem; }
  .hero-visual img { min-height: 320px; }
  .page-hero-lg { padding: 4rem 0 3rem; }

  .stat-item:not(:last-child)::after {
    right: 0;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
  }
  .stat-item { padding: 2.5rem 1.5rem; }
}

/* ── Mobile (≤ 640px) ── */
@media (max-width: 640px) {
  .container {
    width: calc(100% - 2rem);
  }

  /* Scale down headings further for small screens */
  h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  h2 { font-size: clamp(1.55rem, 7vw, 2rem); }
  h3 { font-size: clamp(1.1rem, 5vw, 1.4rem); }

  /* Hero */
  .hero { padding: 2.8rem 0 2.2rem; }
  .hero-visual img { min-height: 220px; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.97rem;
  }

  /* Sections */
  .section { padding: 2.2rem 0; }
  .page-hero { padding: 2.5rem 0 1.8rem; }
  .page-hero-lg { padding: 2.8rem 0 2rem; }
  .section-head { margin-bottom: 1.4rem; }

  /* Collapse all grids to 1 column on phone */
  .cards,
  .cards-2,
  .cards-4,
  .cards-5,
  .cards-6,
  .process-row,
  .kpi-grid,
  .form-grid,
  .doodle-row,
  .stats-grid,
  .testimonial-grid,
  .team-grid,
  .article-grid,
  .pricing-cards,
  .numbered-steps,
  .footer-links,
  .value-row,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  /* Stats strip */
  .stat-item { padding: 2rem 1.2rem; }
  .stat-item:not(:last-child)::after { display: none; }

  /* Footer bottom */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
  }
  .footer-bottom span:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    line-height: 1.8;
  }

  /* CTA inline block */
  .cta-inline {
    flex-direction: column;
    text-align: center;
  }
  .cta-inline .btn { width: 100%; justify-content: center; }

  /* Pricing gap */
  .pricing-cards { gap: 0.85rem; }

  /* Back to top — keep away from browser chrome */
  .back-top { bottom: 1.2rem; right: 1rem; width: 42px; height: 42px; }

  /* Header height tightened */
  .header-row { min-height: 62px; }
  .brand { font-size: 1.6rem; }

  /* Form full-width on phone */
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: 1; }

  /* Contact */
  .contact-layout { gap: 1.5rem; }
  .contact-form-body, .contact-form-header { padding-left: 1.4rem; padding-right: 1.4rem; }
  .contact-form-footer { padding-left: 1.4rem; padding-right: 1.4rem; }

  /* Misc sizing */
  .btn { padding: 0.78rem 1.1rem; font-size: 0.96rem; }
  .page-hero .breadcrumb { font-size: 0.78rem; }
  .faq-q { font-size: 0.96rem; padding: 0.9rem 1rem; }

  /* Newsletter */
  .newsletter-box { padding: 2rem 1.2rem; }
  .newsletter-form input { font-size: 0.9rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   Guest Posting Marketplace — service-guest-posting.html
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Toolbar ─────────────────────────────────────────────────── */
.gp-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.4rem;
  padding: 1.1rem 1.4rem;
  background: #f8fbf8;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.gp-search-wrap {
  position: relative;
  flex: 1 1 240px;
}
.gp-search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
.gp-search {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1rem 0.6rem 2.4rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.gp-search:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(15, 67, 45, 0.1);
}
.gp-selects {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.gp-select {
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235d6872' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 2.2rem;
}
.gp-select:focus {
  outline: none;
  border-color: var(--forest);
}

/* ─── Niche / Link-type filter rows ─────────────────────────────── */
.gp-niche-row,
.gp-link-row {
  margin-bottom: 1rem;
}

/* ─── Results meta ───────────────────────────────────────────────── */
.gp-results-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

/* ─── Publisher table enhancements ──────────────────────────────── */
.gp-table th { white-space: nowrap; }
.gp-domain-name {
  font-weight: 600;
  color: var(--forest);
  font-size: 0.92rem;
  word-break: break-all;
}

/* Score dots (AS / DA / DR) */
.gp-score-wrap {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}
.gp-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #dde3e8;
  flex-shrink: 0;
}
.gp-dot-on {
  /* color injected via inline style */
}
.gp-score-num {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  margin-left: 5px;
}

/* Wide-screen table: full width, no horizontal scroll */
.gp-table-wrap {
  overflow-x: visible;
  width: 100%;
}
.gp-table.compare-table {
  table-layout: auto;
  width: 100%;
}
.gp-table.compare-table th,
.gp-table.compare-table td {
  padding: 0.7rem 0.65rem;
  font-size: 0.875rem;
  text-align: center;
}
.gp-table.compare-table th {
  font-size: 0.82rem;
}
/* Keep domain column left-aligned */
.gp-table.compare-table th.gp-col-domain,
.gp-table.compare-table td:first-child {
  text-align: left;
}
@media (max-width: 1024px) {
  .gp-table-wrap { overflow-x: auto; }
}

/* Niche tag */
.gp-niche-tag {
  display: inline-block;
  background: rgba(15, 67, 45, 0.07);
  color: var(--forest);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Link type badge */
.gp-link-badge {
  display: inline-block;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.gp-lt-do {
  background: rgba(192, 255, 0, 0.2);
  color: var(--forest);
}
.gp-lt-no {
  background: rgba(93, 104, 114, 0.1);
  color: #4a5562;
}

/* Price column */
.gp-price-col {
  font-weight: 700;
  color: var(--forest);
  white-space: nowrap;
}

/* Order button in table */
.gp-publish-btn {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

/* Empty state */
td.gp-empty, .gp-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Disclaimer */
.gp-disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.8rem;
  line-height: 1.6;
}

/* CTA note below table */
.gp-cta-note {
  margin-top: 1.2rem;
  padding: 1rem 1.4rem;
  background: rgba(192, 255, 0, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(192, 255, 0, 0.3);
  text-align: center;
}
.gp-cta-note p { font-size: 0.95rem; font-weight: 500; color: var(--forest); margin: 0; }
.gp-cta-link { color: var(--forest); font-weight: 700; text-decoration: underline; }
.gp-cta-link:hover { opacity: 0.75; }

/* ─── How-It-Works numbered steps ────────────────────────────── */
.gp-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}
.gp-steps::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: var(--line);
  border-radius: 2px;
}
.gp-step {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  padding: 1.5rem 0;
}
.gp-step-num {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--chartreuse);
  font-family: "Poiret One", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.gp-step-body h3 { margin-bottom: 0.35rem; font-size: 1.15rem; }
.gp-step-body p  { color: var(--muted); font-size: 0.95rem; margin: 0; line-height: 1.65; }

/* ─── Pricing tier price display ─────────────────────────────── */
.gp-price {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.gp-price strong {
  font-size: 2rem;
  color: var(--forest);
  font-family: "Poiret One", sans-serif;
  margin-right: 0.1rem;
}
.gp-price span { font-size: 0.85rem; }

/* ─── Responsive tweaks ──────────────────────────────────────── */
@media (max-width: 768px) {
  .gp-toolbar { flex-direction: column; align-items: stretch; }
  .gp-selects { flex-wrap: wrap; }
  .gp-table th:nth-child(5),
  .gp-table td:nth-child(5) { display: none; } /* hide niche */
  .gp-table th:nth-child(8),
  .gp-table td:nth-child(8) { display: none; } /* hide keywords */
  .gp-table th:nth-child(9),
  .gp-table td:nth-child(9) { display: none; } /* hide sem countries */
  .gp-steps::before { display: none; }
  .gp-step { gap: 1rem; }
  .gp-step-num { width: 44px; height: 44px; font-size: 1rem; }
}
@media (max-width: 480px) {
  .gp-table th:nth-child(6),
  .gp-table td:nth-child(6) { display: none; } /* hide language */
  .gp-table th:nth-child(10),
  .gp-table td:nth-child(10) { display: none; } /* hide sem traffic */
}

/* ─── Sortable column headers ─────────────────────────────────── */
.gp-table thead th[data-sort] {
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.gp-table thead th[data-sort]:hover {
  background: #1a5c3a;
}
.gp-table thead th.gp-th-active {
  background: #1a5c3a;
  color: var(--chartreuse);
}
.gp-sort-arrow {
  display: inline-block;
  font-size: 0.8rem;
  margin-left: 0.2rem;
  opacity: 0.7;
}

/* ─── Tool brand labels in column headers ─────────────────────── */
.gp-th-tool {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 4px;
  padding: 1px 4px;
  margin-right: 3px;
  text-transform: lowercase;
  letter-spacing: 0.01em;
  vertical-align: middle;
}
.gp-th-ahrefs {
  background: #ff7043;
  color: #fff;
}
.gp-th-moz {
  background: #00a4e0;
  color: #fff;
}
.gp-th-semrush {
  background: #ff6600;
  color: #fff;
}

/* ─── Numeric cells ───────────────────────────────────────────── */
.gp-num {
  font-variant-numeric: tabular-nums;
  text-align: right;
  font-size: 0.88rem;
  color: var(--ink);
  white-space: nowrap;
}
.gp-lang {
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
}
.gp-col-domain { min-width: 160px; }

/* ─── Home: Process section (dark forest) ────────────────────── */
.section-process {
  background: var(--forest);
  padding: 5rem 0 4rem;
}
.process-intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.process-step {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.13) !important;
}
.process-step h3 { color: #fff !important; }
.process-step p  { color: rgba(255,255,255,0.7) !important; }
@media (max-width: 860px) {
  .process-intro-split { grid-template-columns: 1fr; }
  .process-intro-split .reveal-right img { height: 220px !important; }
}

/* ─── Home: Testimonials image-header + card pull ────────────── */
.section-testimonials-wrap { padding: 0; overflow: visible; }
.testimonials-bg-header {
  background: var(--forest) url('/assets/img/unsplash/photo-1517248135467-4c7edcad34c4.jpg') center/cover no-repeat;
  position: relative;
  padding: 5rem 0 6.5rem;
}
.testimonials-bg-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,36,22,0.80);
}
.testimonials-bg-header .container { position: relative; z-index: 1; }
.testimonials-cards-pull {
  position: relative;
  z-index: 2;
  margin-top: -3.5rem;
  padding-bottom: 4rem;
}
.testimonials-cards-pull .testimonial-card {
  background: #fff;
  box-shadow: 0 8px 32px rgba(15,23,32,0.10);
}

/* ─── Pagination ──────────────────────────────────────────────── */
.gp-pagination {
  margin-top: 1.5rem;
}
.gp-pag-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}
.gp-pag-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 0.6rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.gp-pag-btn:hover:not(:disabled) {
  background: var(--forest);
  color: var(--chartreuse);
  border-color: var(--forest);
}
.gp-pag-btn.active {
  background: var(--forest);
  color: var(--chartreuse);
  border-color: var(--forest);
}
.gp-pag-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.gp-pag-ellipsis {
  padding: 0 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 36px;
}
.gp-pag-info {
  margin-left: 0.6rem;
  font-size: 0.82rem;
  color: var(--muted);
  white-space: nowrap;
}