:root {
  --green: #063f35;
  --green-dark: #022c27;
  --green-light: #0b6857;

  --gold: #c8942f;
  --gold-light: #e3b557;

  --orange: #ff671d;

  --cream: #faf7f0;
  --cream-dark: #f2ecdf;

  --ink: #171310;
  --muted: #68635c;

  --white: #ffffff;

  --border: rgba(23, 19, 16, 0.10);

  --shadow: 0 24px 70px rgba(29, 22, 12, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}

.section {
  padding: 110px 0;
}


/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.logo img {
  width: 172px;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--orange);
}

.nav-cta {
  background: var(--green);
  color: white;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
}

.mobile-menu {
  display: none;
}


/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 120px;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  right: -250px;
  top: -200px;
  background:
    radial-gradient(
      circle,
      rgba(225, 179, 82, .22),
      transparent 68%
    );
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}

.eyebrow,
.section-label {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 2.5px;
  font-weight: 800;
}

.hero h1 {
  margin: 18px 0 24px;
  max-width: 700px;
  font-family: Georgia, serif;
  font-size: clamp(55px, 6.3vw, 88px);
  line-height: .98;
  letter-spacing: -4px;
  font-weight: 500;
}

.hero h1 span {
  display: block;
  color: var(--green);
}

.hero-intro {
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 50px;
  font-weight: 750;
  transition: .25s ease;
}

.btn-primary {
  background: var(--green);
  color: white;
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(6, 63, 53, .25);
}

.btn-secondary:hover {
  background: white;
}

.btn-gold {
  background: var(--gold-light);
  color: #1b160e;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 32px;
  color: #5d574f;
  font-size: 13px;
}


/* PHONE */

.hero-visual {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone {
  width: 350px;
  border: 9px solid #151515;
  border-radius: 43px;
  background: #ece9e3;
  overflow: hidden;
  box-shadow: 0 45px 100px rgba(0,0,0,.18);
  transform: rotate(2deg);
}

.phone-top {
  background: var(--green);
  color: white;
  padding: 21px 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), #ffad17);
  font-weight: 900;
}

.phone-top strong,
.phone-top small {
  display: block;
}

.phone-top small {
  opacity: .7;
  font-size: 11px;
}

.chat {
  padding: 22px 15px 26px;
  min-height: 430px;
}

.message {
  max-width: 83%;
  padding: 11px 13px;
  margin-bottom: 14px;
  border-radius: 13px;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.customer {
  background: #d8f8ce;
  margin-left: auto;
}

.ai {
  background: white;
}

.appointment {
  background: #fff8df;
  border: 1px solid #ead08c;
  border-radius: 12px;
  padding: 13px;
  font-size: 12px;
  font-weight: 700;
}

.appointment span {
  color: var(--green);
  margin-right: 5px;
}

.floating-card {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 15px;
  padding: 15px 18px;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  color: var(--green);
  font-size: 18px;
}

.floating-card span {
  color: var(--muted);
  font-size: 11px;
}

.card-one {
  top: 60px;
  right: -5px;
}

.card-two {
  left: -10px;
  bottom: 70px;
}


/* HEADINGS */

.section-heading {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.law-content h2,
.cta-box h2 {
  margin: 12px 0 18px;
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: clamp(42px, 5vw, 67px);
  line-height: 1.02;
  letter-spacing: -2.5px;
}

.section-heading em {
  color: var(--green);
  font-weight: 500;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}


/* SERVICES */

.services {
  background: white;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 25px;
  padding: 42px;
  overflow: hidden;
}

.service-card.featured {
  background: var(--green);
  color: white;
}

.service-number {
  position: absolute;
  right: 30px;
  top: 23px;
  font-family: Georgia, serif;
  font-size: 55px;
  opacity: .08;
}

.service-icon {
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--cream-dark);
  color: var(--green);
  font-size: 23px;
}

.featured .service-icon {
  background: rgba(255,255,255,.1);
  color: var(--gold-light);
}

.service-card h3 {
  font-family: Georgia, serif;
  font-size: 30px;
  margin: 25px 0 12px;
}

.service-card p {
  color: var(--muted);
}

.featured p {
  color: rgba(255,255,255,.72);
}

.service-card ul {
  padding: 0;
  margin: 25px 0;
  list-style: none;
}

.service-card li {
  margin: 10px 0;
}

.service-card li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 9px;
  font-weight: 900;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
  color: var(--orange);
}

.featured .text-link {
  color: var(--gold-light);
}


/* INDUSTRIES */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  min-height: 340px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255,255,255,.45);
  transition: .25s ease;
}

.industry-card:hover {
  background: white;
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.industry-icon {
  display: block;
  color: var(--gold);
  font-size: 35px;
  margin-bottom: 40px;
}

.industry-type {
  color: var(--orange);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 900;
}

.industry-card h3 {
  margin: 7px 0 12px;
  font-family: Georgia, serif;
  font-size: 28px;
}

.industry-card p {
  color: var(--muted);
  font-size: 14px;
}

.industry-link {
  display: block;
  margin-top: 27px;
  font-weight: 800;
  font-size: 13px;
}


/* LAW */

.law-section {
  background: var(--green-dark);
  color: white;
}

.law-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 80px;
  align-items: center;
}

.section-label.light {
  color: var(--gold-light);
}

.law-content h2 span,
.cta-box h2 span {
  display: block;
  color: var(--gold-light);
}

.law-content p {
  color: rgba(255,255,255,.7);
  font-size: 17px;
}

.law-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.law-features span {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 8px 13px;
  font-size: 12px;
}

.search-window {
  background: #f7f4ed;
  color: var(--ink);
  padding: 23px;
  border-radius: 22px;
  transform: rotate(2deg);
  box-shadow: 0 40px 80px rgba(0,0,0,.25);
}

.search-bar {
  background: white;
  border: 1px solid #ddd8ce;
  padding: 13px 18px;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.search-result {
  background: white;
  padding: 20px;
  margin-top: 15px;
  border-radius: 15px;
}

.result-label {
  color: var(--green);
  font-size: 9px;
  letter-spacing: 1.6px;
  font-weight: 900;
}

.result-lines {
  margin-top: 14px;
}

.result-lines span {
  height: 7px;
  border-radius: 20px;
  background: #e9e5dc;
  display: block;
  margin-top: 8px;
}

.result-lines span:nth-child(1) {
  width: 72%;
}

.result-lines span:nth-child(2) {
  width: 94%;
}

.result-lines span:nth-child(3) {
  width: 61%;
}

.ai-result {
  background: #fff7d8;
}

.ai-result strong {
  display: block;
  margin-top: 10px;
  font-family: Georgia, serif;
  font-size: 20px;
}


/* FLOW */

.growth {
  background: white;
}

.growth-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}

.flow-item {
  text-align: center;
}

.flow-item > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
}

.flow-item strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 20px;
  margin-top: 8px;
}

.flow-item p {
  color: var(--muted);
  font-size: 12px;
}

.flow-arrow {
  color: var(--gold);
  font-size: 25px;
}


/* CTA */

.cta-section {
  background: white;
  padding: 0 0 100px;
}

.cta-box {
  text-align: center;
  color: white;
  background: var(--green);
  border-radius: 32px;
  padding: 80px 30px;
}

.cta-box h2 {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.72);
}


/* FOOTER */

.footer {
  background: #111b18;
  color: white;
  padding: 75px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand img {
  width: 200px;
}

.footer-brand p {
  color: rgba(255,255,255,.55);
  max-width: 360px;
  font-size: 13px;
}

.footer h4 {
  font-size: 13px;
  color: var(--gold-light);
}

.footer a {
  display: block;
  margin: 10px 0;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 55px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.4);
  font-size: 11px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
    background: none;
    border: 0;
    font-size: 24px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-grid,
  .law-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    letter-spacing: -2.5px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .service-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .growth-flow {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .flow-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

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

}


@media (max-width: 600px) {

  .container {
    width: min(100% - 30px, 1180px);
  }

  .section {
    padding: 75px 0;
  }

  .nav-wrap {
    height: 74px;
  }

  .logo img {
    width: 145px;
  }

  .hero {
    padding: 55px 0 75px;
  }

  .hero h1 {
    font-size: 51px;
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-points {
    display: grid;
  }

  .hero-visual {
    min-height: 470px;
  }

  .phone {
    width: min(320px, 92%);
  }

  .floating-card {
    display: none;
  }

  .service-card,
  .industry-card {
    padding: 28px;
  }

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

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

}


/* =========================================================
   NETYATI HOMEPAGE — EXPANDED SECTIONS
   ========================================================= */


/* ---------- INTRO / GROWTH SHOULD CONNECT ---------- */

.intro-section {
  position: relative;
  background: var(--cream);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.intro-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -250px;
  bottom: -280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 148, 47, .10),
    transparent 68%
  );
  pointer-events: none;
}

.intro-section .container {
  position: relative;
  z-index: 1;
}

.intro-copy {
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 50px;
}

.intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.intro-copy p:first-child {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.7;
}

.intro-copy p:last-child {
  grid-column: 1 / -1;
  padding-top: 25px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.55;
}


/* ---------- GENERAL NEW SECTION ACTION ---------- */

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}


/* ---------- WHATSAPP DEEP SECTION ---------- */

.whatsapp-depth {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

.whatsapp-depth::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  left: -260px;
  top: 80px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(6, 63, 53, .08),
    transparent 70%
  );
}

.depth-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.depth-card {
  position: relative;
  min-height: 270px;
  padding: 32px;
  background: rgba(255,255,255,.58);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform .25s ease,
    background .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.depth-card:hover {
  transform: translateY(-6px);
  background: white;
  border-color: rgba(6, 63, 53, .16);
  box-shadow: var(--shadow);
}

.depth-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: rgba(6, 63, 53, .08);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.depth-card h3 {
  margin: 28px 0 12px;
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 500;
}

.depth-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.depth-card::after {
  content: "";
  position: absolute;
  width: 75px;
  height: 3px;
  left: 32px;
  bottom: 0;
  background: linear-gradient(
    90deg,
    var(--orange),
    var(--gold)
  );
  opacity: 0;
  transition: opacity .25s ease;
}

.depth-card:hover::after {
  opacity: 1;
}


/* ---------- AUTOMATION PROCESS ---------- */

.automation-flow {
  position: relative;
  background: var(--green-dark);
  color: white;
  overflow: hidden;
}

.automation-flow::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -330px;
  top: -250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(227, 181, 87, .12),
    transparent 68%
  );
}

.automation-flow .section-label {
  color: var(--gold-light);
}

.automation-flow .section-heading h2 {
  color: white;
}

.automation-flow .section-heading em {
  color: var(--gold-light);
}

.automation-flow .section-heading p {
  color: rgba(255,255,255,.65);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  overflow: hidden;
}

.process-step {
  position: relative;
  min-height: 260px;
  padding: 31px 25px;
  background: var(--green-dark);
}

.process-step span {
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 900;
}

.process-step h3 {
  margin: 55px 0 12px;
  font-family: Georgia, serif;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 500;
}

.process-step p {
  margin: 0;
  color: rgba(255,255,255,.57);
  font-size: 13px;
  line-height: 1.65;
}

.process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  right: -13px;
  top: 48px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}


/* ---------- INDUSTRY EXTENSION ---------- */

.future-industries {
  margin-top: 28px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.38);
}

.future-industries > span {
  margin-right: 10px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 800;
}

.future-industries strong {
  padding: 8px 13px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--green);
  font-size: 12px;
}


/* ---------- CONVERSATION DEMO ---------- */

.conversation-section {
  position: relative;
  background: white;
  overflow: hidden;
}

.conversation-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.conversation-copy h2,
.ai-search-grid h2,
.local-copy h2 {
  margin: 13px 0 22px;
  font-family: Georgia, serif;
  font-size: clamp(42px, 5vw, 65px);
  line-height: 1.02;
  letter-spacing: -2.5px;
  font-weight: 500;
}

.conversation-copy h2 em,
.ai-search-grid h2 em,
.local-copy h2 em {
  display: block;
  color: var(--green);
  font-weight: 500;
}

.conversation-copy p,
.ai-search-grid > div:first-child > p,
.local-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.conversation-demo {
  position: relative;
  max-width: 570px;
  padding: 45px 35px;
  margin-left: auto;
  background:
    linear-gradient(
      145deg,
      #f4f0e8,
      #ece8df
    );
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.conversation-demo::before {
  content: "WHATSAPP AI";
  display: block;
  margin-bottom: 30px;
  color: var(--green);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 900;
}

.demo-message {
  width: fit-content;
  max-width: 82%;
  margin-bottom: 14px;
  padding: 13px 16px;
  border-radius: 15px;
  font-size: 13px;
  line-height: 1.55;
  box-shadow: 0 3px 10px rgba(0,0,0,.04);
}

.demo-customer {
  margin-left: auto;
  background: #d9f8cf;
  border-bottom-right-radius: 5px;
}

.demo-ai {
  background: white;
  border-bottom-left-radius: 5px;
}

.demo-result {
  margin-top: 25px;
  padding: 16px 18px;
  border: 1px solid rgba(200,148,47,.32);
  border-radius: 13px;
  background: #fff8df;
  color: #473814;
  font-size: 12px;
  font-weight: 800;
}

.demo-result span {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
  color: white;
}


/* ---------- SEO DEEP SECTION ---------- */

.seo-depth {
  position: relative;
  background: var(--cream);
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.seo-card {
  position: relative;
  padding: 32px;
  min-height: 230px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,.48);
  transition:
    transform .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.seo-card:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: var(--shadow);
}

.seo-card::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 25px;
  background: linear-gradient(
    90deg,
    var(--orange),
    var(--gold)
  );
  border-radius: 20px;
}

.seo-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}

.seo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}


/* ---------- LAW SECTION EXTRA PARAGRAPH ---------- */

.law-content p + p {
  margin-top: 13px;
}


/* ---------- LEGAL DETAIL ---------- */

.legal-detail {
  position: relative;
  background: white;
}

.legal-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.legal-pillars article {
  position: relative;
  padding: 30px;
  min-height: 255px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--cream);
}

.legal-pillars article > span {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 1.4px;
  font-weight: 900;
}

.legal-pillars h3 {
  margin: 45px 0 12px;
  font-family: Georgia, serif;
  color: var(--green);
  font-size: 24px;
  font-weight: 500;
}

.legal-pillars p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}


/* ---------- AI SEARCH ---------- */

.ai-search-section {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.ai-search-section::after {
  content: "AI";
  position: absolute;
  right: -35px;
  bottom: -135px;
  color: rgba(6,63,53,.035);
  font-family: Georgia, serif;
  font-size: 430px;
  line-height: 1;
  pointer-events: none;
}

.ai-search-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.ai-search-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ai-search-points > div {
  min-height: 210px;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.62);
}

.ai-search-points span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
}

.ai-search-points strong {
  display: block;
  margin-top: 32px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.ai-search-points p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}


/* ---------- LOCAL SEO ---------- */

.local-section {
  background: white;
}

.local-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.local-visual {
  position: relative;
  min-height: 440px;
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      var(--green),
      var(--green-dark)
    );
  overflow: hidden;
}

.local-visual::before,
.local-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.local-visual::before {
  width: 350px;
  height: 350px;
  left: -180px;
  top: -110px;
}

.local-visual::after {
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: -100px;
}

.map-card {
  position: relative;
  z-index: 2;
  padding: 22px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: rgba(255,255,255,.09);
  color: white;
  backdrop-filter: blur(8px);
}

.map-pin {
  display: inline-block;
  margin-right: 8px;
  color: var(--gold-light);
}

.map-card strong {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.map-card small {
  display: block;
  margin: 7px 0 0 23px;
  color: rgba(255,255,255,.55);
}

.local-signal {
  position: relative;
  z-index: 2;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.76);
  font-size: 12px;
}


/* ---------- WHY NETYATI ---------- */

.why-section {
  position: relative;
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid article {
  min-height: 275px;
  padding: 35px 28px;
}

.why-grid article:not(:last-child) {
  border-right: 1px solid var(--border);
}

.why-grid article > span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
}

.why-grid h3 {
  margin: 48px 0 12px;
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}


/* ---------- FAQ ---------- */

.faq-section {
  background: white;
}

.faq-section .section-heading {
  margin-bottom: 55px;
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 25px 55px 25px 0;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.35;
  transition: color .2s ease;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  top: 19px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--green);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease;
}

.faq-list details[open] summary {
  color: var(--green);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
  background: var(--green);
  color: white;
}

.faq-answer {
  max-width: 790px;
  padding: 0 0 27px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}


/* ---------- CTA SECONDARY LINK ---------- */

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.cta-actions .btn {
  width: auto;
}

.cta-secondary {
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 750;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 3px;
}

.cta-secondary:hover {
  color: white;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .depth-grid,
  .seo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    background: transparent;
    border: 0;
    gap: 14px;
    overflow: visible;
  }

  .process-step {
    min-height: 220px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-step:last-child {
    grid-column: 1 / -1;
  }

  .conversation-grid,
  .ai-search-grid,
  .local-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .conversation-demo {
    width: 100%;
    max-width: 650px;
    margin: 0;
  }

  .legal-pillars,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid article:nth-child(2) {
    border-right: 0;
  }

  .why-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

  .intro-copy,
  .depth-grid,
  .seo-grid,
  .legal-pillars,
  .ai-search-points,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    gap: 20px;
  }

  .intro-copy p:first-child {
    font-size: 18px;
  }

  .intro-copy p:last-child {
    grid-column: auto;
    font-size: 20px;
  }

  .depth-card,
  .seo-card {
    min-height: auto;
  }

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

  .process-step,
  .process-step:last-child {
    grid-column: auto;
    min-height: auto;
  }

  .process-step h3 {
    margin-top: 30px;
  }

  .future-industries {
    justify-content: flex-start;
  }

  .future-industries > span {
    width: 100%;
    margin-bottom: 4px;
  }

  .conversation-grid,
  .ai-search-grid,
  .local-grid {
    gap: 40px;
  }

  .conversation-copy h2,
  .ai-search-grid h2,
  .local-copy h2 {
    font-size: 42px;
    letter-spacing: -1.8px;
  }

  .conversation-demo {
    padding: 30px 18px;
    border-radius: 21px;
  }

  .demo-message {
    max-width: 90%;
  }

  .legal-pillars article {
    min-height: auto;
  }

  .legal-pillars h3 {
    margin-top: 28px;
  }

  .local-visual {
    min-height: 390px;
    padding: 30px 20px;
  }

  .why-grid {
    border: 0;
    gap: 12px;
  }

  .why-grid article {
    min-height: auto;
    padding: 27px;
    border: 1px solid var(--border) !important;
    border-radius: 17px;
    background: rgba(255,255,255,.45);
  }

  .why-grid h3 {
    margin-top: 27px;
  }

  .faq-list summary {
    padding: 22px 48px 22px 0;
    font-size: 18px;
  }

  .faq-list summary::after {
    right: 0;
  }

  .cta-actions {
    flex-direction: column;
    gap: 20px;
  }

  .cta-actions .btn {
    width: 100%;
  }

}


/* ==========================================================
   NETYATI INNER SERVICE PAGES
   Reusable framework for WhatsApp + SEO service pages
========================================================== */


/* ---------- Inner Hero ---------- */

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 90px;
  background:
    radial-gradient(circle at 85% 20%, rgba(200,148,47,.18), transparent 28%),
    linear-gradient(135deg, #faf7f0 0%, #f5efe3 100%);
}

.inner-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(6,63,53,.08);
  border-radius: 50%;
  right: -150px;
  bottom: -220px;
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 55px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--green);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs span:last-child {
  color: var(--muted);
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: 80px;
  align-items: center;
}

.inner-hero-content h1 {
  max-width: 760px;
  margin: 16px 0 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.3vw, 76px);
  line-height: .99;
  letter-spacing: -.045em;
  color: var(--green-dark);
}

.inner-hero-content h1 em,
.content-intro h2 em,
.section-heading h2 em,
.split-copy h2 em,
.wa-demo-copy h2 em,
.large-use-case h2 em,
.handoff-copy h2 em,
.privacy-section h2 em {
  font-weight: 400;
  color: var(--gold);
}

.inner-hero-lead {
  max-width: 690px;
  margin: 0;
  font-size: 19px;
  line-height: 1.75;
  color: #575149;
}

.inner-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.inner-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.inner-trust-row span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.inner-trust-row span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(6,63,53,.09);
  color: var(--green);
  font-size: 11px;
}


/* ---------- AI Employee Hero Card ---------- */

.inner-hero-demo {
  position: relative;
}

.inner-hero-demo::before {
  content: "";
  position: absolute;
  inset: -25px;
  border-radius: 40px;
  background: rgba(200,148,47,.08);
  transform: rotate(4deg);
}

.ai-employee-card {
  position: relative;
  z-index: 2;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  background: var(--green-dark);
  box-shadow: 0 30px 80px rgba(2,44,39,.18);
}

.ai-employee-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.ai-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: white;
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 700;
}

.ai-employee-top div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ai-employee-top span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.ai-employee-top strong {
  color: white;
  font-size: 16px;
}

.online-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #69d29c;
  box-shadow: 0 0 0 5px rgba(105,210,156,.1);
}

.ai-task {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.ai-task:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ai-task > span {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 14px;
}

.ai-task div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ai-task strong {
  color: white;
  font-size: 15px;
}

.ai-task small {
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

.ai-task b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(105,210,156,.12);
  color: #8ae4b5;
  font-size: 12px;
}


/* ---------- Generic Section Layout ---------- */

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.content-intro h2,
.split-copy h2,
.wa-demo-copy h2,
.large-use-case h2,
.handoff-copy h2,
.privacy-section h2,
.who-section h2 {
  margin: 12px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(37px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -.035em;
  color: var(--green-dark);
}

.section-heading p {
  max-width: 660px;
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}

.section-heading.centered p {
  margin-left: auto;
  margin-right: auto;
}

.section-label.light {
  color: var(--gold-light);
}


/* ---------- Intro ---------- */

.content-intro {
  background: white;
}

.content-intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.rich-copy {
  max-width: 720px;
}

.rich-copy p {
  margin: 0 0 20px;
  color: #5e5952;
  font-size: 16px;
  line-height: 1.85;
}

.rich-copy .lead-copy {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.55;
}


/* ---------- Problem Cards ---------- */

.problem-section {
  background: var(--cream);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(6,63,53,.11);
  border-radius: 24px;
  overflow: hidden;
  background: white;
  box-shadow: 0 18px 55px rgba(2,44,39,.05);
}

.problem-grid article {
  min-height: 270px;
  padding: 34px 28px;
  border-right: 1px solid rgba(6,63,53,.1);
}

.problem-grid article:last-child {
  border-right: 0;
}

.problem-grid article > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 14px;
}

.problem-grid h3 {
  margin: 55px 0 12px;
  color: var(--green-dark);
  font-family: Georgia, serif;
  font-size: 22px;
}

.problem-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}


/* ---------- AI Employee Section ---------- */

.ai-employee-section {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
}

.ai-employee-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(227,181,87,.13);
  border-radius: 50%;
  right: -230px;
  top: -210px;
}

.split-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 100px;
  align-items: center;
}

.split-copy h2,
.ai-employee-section .split-copy h2 {
  color: white;
}

.split-copy p {
  max-width: 650px;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.85;
}

.light-link {
  color: var(--gold-light) !important;
}

.role-stack {
  display: grid;
  gap: 14px;
}

.role-card {
  padding: 25px 28px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  transition: transform .25s ease, background .25s ease;
}

.role-card:hover {
  transform: translateX(-7px);
  background: rgba(255,255,255,.075);
}

.role-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.role-card strong {
  display: block;
  margin-bottom: 6px;
  color: white;
  font-family: Georgia, serif;
  font-size: 22px;
}

.role-card small {
  color: rgba(255,255,255,.55);
}


/* ---------- Capabilities ---------- */

.capabilities-section {
  background: white;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.capability-card {
  min-height: 255px;
  padding: 30px;
  border: 1px solid rgba(6,63,53,.1);
  border-radius: 20px;
  background: var(--cream);
  transition: transform .25s ease, box-shadow .25s ease;
}

.capability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(2,44,39,.08);
}

.cap-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  margin-bottom: 38px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold-light);
  font-family: Georgia, serif;
}

.capability-card h3 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-family: Georgia, serif;
  font-size: 20px;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}


/* ---------- Workflow ---------- */

.inner-workflow {
  background: var(--green);
}

.inner-workflow .section-heading h2 {
  color: white;
}

.inner-workflow .section-heading p {
  color: rgba(255,255,255,.65);
}

.workflow-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.workflow-line::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: rgba(227,181,87,.35);
}

.workflow-line article {
  position: relative;
  z-index: 2;
  padding: 0 18px;
  text-align: center;
}

.workflow-line article > span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 25px;
  border: 1px solid rgba(227,181,87,.45);
  border-radius: 50%;
  background: var(--green);
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 13px;
}

.workflow-line h3 {
  color: white;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.3;
}

.workflow-line p {
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.7;
}


/* ---------- Conversation Demo ---------- */

.wa-demo-section {
  background: var(--cream);
}

.wa-demo-grid {
  display: grid;
  grid-template-columns: .9fr .72fr;
  justify-content: space-between;
  gap: 100px;
  align-items: center;
}

.wa-demo-copy p {
  max-width: 600px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.demo-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.demo-benefits span {
  padding: 9px 13px;
  border: 1px solid rgba(6,63,53,.12);
  border-radius: 50px;
  background: white;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.wa-phone {
  max-width: 460px;
  margin-left: auto;
  overflow: hidden;
  border: 8px solid var(--green-dark);
  border-radius: 32px;
  background: #f3efe8;
  box-shadow: 0 35px 80px rgba(2,44,39,.16);
}

.wa-phone-header {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 17px 19px;
  background: var(--green-dark);
  color: white;
}

.wa-phone-header .ai-avatar {
  width: 38px;
  height: 38px;
  font-size: 17px;
}

.wa-phone-header div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.wa-phone-header strong {
  font-size: 14px;
}

.wa-phone-header small {
  color: rgba(255,255,255,.55);
  font-size: 10px;
}

.wa-chat {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-height: 430px;
  padding: 24px 18px;
}

.wa-msg {
  max-width: 83%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.55;
  box-shadow: 0 3px 10px rgba(0,0,0,.04);
}

.wa-msg.customer {
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  background: #d9f3df;
  color: #263a30;
}

.wa-msg.ai {
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  background: white;
  color: #4b4640;
}

.wa-outcome {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  background: #fff;
  border-top: 1px solid rgba(6,63,53,.08);
}

.wa-outcome > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(6,63,53,.1);
  color: var(--green);
}

.wa-outcome div {
  display: flex;
  flex-direction: column;
}

.wa-outcome strong {
  color: var(--green-dark);
  font-size: 12px;
}

.wa-outcome small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}


/* ---------- Industries ---------- */

.wa-industries {
  background: white;
}

.wa-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wa-industry-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 36px;
  border: 1px solid rgba(6,63,53,.1);
  border-radius: 22px;
  background: var(--cream);
  transition: transform .25s ease, box-shadow .25s ease;
}

.wa-industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(2,44,39,.08);
}

.industry-type {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.wa-industry-card h3 {
  margin: 22px 0 16px;
  color: var(--green-dark);
  font-family: Georgia, serif;
  font-size: 27px;
  line-height: 1.2;
}

.wa-industry-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.wa-industry-card ul {
  margin: 22px 0 30px;
  padding: 0;
  list-style: none;
}

.wa-industry-card li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(6,63,53,.08);
  color: #4e4943;
  font-size: 13px;
}

.wa-industry-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--gold);
  font-weight: 800;
}

.wa-industry-card .text-link {
  margin-top: auto;
}


/* ---------- Comparison ---------- */

.comparison-section {
  background: var(--cream);
}

.comparison-wrap {
  overflow: hidden;
  border: 1px solid rgba(6,63,53,.12);
  border-radius: 20px;
  background: white;
  box-shadow: 0 20px 50px rgba(2,44,39,.05);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: .75fr 1fr 1.15fr;
}

.comparison-head {
  background: var(--green-dark);
  color: white;
}

.comparison-head div {
  padding: 20px 25px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.comparison-row {
  border-bottom: 1px solid rgba(6,63,53,.08);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row div {
  padding: 22px 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.comparison-row div:first-child {
  color: var(--green-dark);
  font-weight: 700;
}

.comparison-row div:last-child {
  background: rgba(6,63,53,.035);
  color: var(--green);
  font-weight: 600;
}


/* ---------- Use Cases ---------- */

.use-case-section {
  background: white;
}

.use-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.large-use-case {
  padding: 55px;
  border-radius: 25px;
  background: var(--cream);
}

.large-use-case:nth-child(2) {
  background: #f2ecdf;
}

.large-use-case p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}


/* ---------- Human Handoff ---------- */

.handoff-section {
  background: #f7f2e8;
}

.handoff-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 90px;
  align-items: center;
}

.handoff-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.handoff-ai,
.handoff-human {
  min-height: 220px;
  padding: 25px;
  border-radius: 20px;
}

.handoff-ai {
  background: var(--green-dark);
}

.handoff-human {
  border: 1px solid rgba(6,63,53,.12);
  background: white;
}

.handoff-ai > span,
.handoff-human > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 55px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.handoff-ai > span {
  background: var(--gold);
  color: white;
}

.handoff-human > span {
  background: var(--green);
  color: white;
}

.handoff-ai strong,
.handoff-human strong {
  display: block;
  margin-bottom: 7px;
  font-family: Georgia, serif;
  font-size: 17px;
}

.handoff-ai strong {
  color: white;
}

.handoff-human strong {
  color: var(--green-dark);
}

.handoff-ai small {
  color: rgba(255,255,255,.55);
}

.handoff-human small {
  color: var(--muted);
}

.handoff-arrow {
  color: var(--gold);
  font-size: 26px;
}

.handoff-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}


/* ---------- Privacy ---------- */

.privacy-section {
  background: var(--green-dark);
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 100px;
  align-items: center;
}

.privacy-section h2 {
  color: white;
}

.privacy-section p {
  max-width: 650px;
  color: rgba(255,255,255,.64);
  font-size: 15px;
  line-height: 1.85;
}

.privacy-rules {
  display: grid;
  gap: 10px;
}

.privacy-rules div {
  display: flex;
  gap: 17px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 13px;
  background: rgba(255,255,255,.04);
}

.privacy-rules span {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 12px;
}

.privacy-rules strong {
  color: rgba(255,255,255,.87);
  font-size: 14px;
}


/* ---------- Implementation ---------- */

.implementation-section {
  background: var(--cream);
}

.implementation-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.implementation-grid article {
  min-height: 275px;
  padding: 28px;
  border: 1px solid rgba(6,63,53,.1);
  border-radius: 18px;
  background: white;
}

.implementation-grid article > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
}

.implementation-grid h3 {
  margin: 50px 0 12px;
  color: var(--green-dark);
  font-family: Georgia, serif;
  font-size: 21px;
}

.implementation-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}


/* ---------- Who It's For ---------- */

.who-section {
  background: white;
}

.who-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.who-list {
  display: grid;
  gap: 0;
}

.who-list div {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 12px;
  align-items: start;
  padding: 19px 0;
  border-bottom: 1px solid rgba(6,63,53,.1);
}

.who-list span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(6,63,53,.09);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.who-list p {
  margin: 1px 0 0;
  color: #4f4a44;
  font-size: 15px;
  line-height: 1.7;
}


/* ---------- FAQ Enhancements ---------- */

.faq-section {
  background: var(--cream);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  border-bottom: 1px solid rgba(6,63,53,.13);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  list-style: none;
  color: var(--green-dark);
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.4;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(6,63,53,.15);
  border-radius: 50%;
  color: var(--green);
  font-family: Arial, sans-serif;
  font-size: 17px;
}

.faq-list details[open] summary::after {
  content: "−";
  background: var(--green);
  color: white;
}

.faq-answer {
  max-width: 800px;
  padding: 0 50px 24px 0;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}


/* ---------- Related Services ---------- */

.related-section {
  background: white;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.related-card {
  display: block;
  min-height: 280px;
  padding: 32px;
  border: 1px solid rgba(6,63,53,.11);
  border-radius: 20px;
  background: var(--cream);
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease;
}

.related-card:hover {
  transform: translateY(-5px);
  background: white;
}

.related-card > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
}

.related-card h3 {
  margin: 50px 0 10px;
  color: var(--green-dark);
  font-family: Georgia, serif;
  font-size: 26px;
}

.related-card p {
  min-height: 65px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.related-card strong {
  color: var(--green);
  font-size: 13px;
}


/* ---------- Inner CTA ---------- */

.cta-section {
  padding: 40px 0 90px;
  background: white;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 70px;
  border-radius: 30px;
  background: var(--green-dark);
  text-align: center;
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(227,181,87,.14);
  border-radius: 50%;
  left: -220px;
  top: -230px;
}

.cta-box h2 {
  position: relative;
  max-width: 820px;
  margin: 15px auto 20px;
  color: white;
  font-family: Georgia, serif;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.cta-box h2 span {
  color: var(--gold-light);
  font-weight: 400;
}

.cta-box > p {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255,255,255,.65);
  font-size: 15px;
  line-height: 1.8;
}

.cta-box .cta-actions {
  position: relative;
  justify-content: center;
  margin-top: 30px;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1050px) {

  .inner-hero-grid,
  .content-intro-grid,
  .split-section,
  .wa-demo-grid,
  .handoff-grid,
  .privacy-grid,
  .who-grid {
    gap: 55px;
  }

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

  .problem-grid article:nth-child(2) {
    border-right: 0;
  }

  .problem-grid article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(6,63,53,.1);
  }

  .implementation-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .workflow-line {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 0;
  }

  .workflow-line::before {
    display: none;
  }

}


@media (max-width: 820px) {

  .section {
    padding: 75px 0;
  }

  .inner-hero {
    padding: 45px 0 70px;
  }

  .breadcrumbs {
    margin-bottom: 35px;
  }

  .inner-hero-grid,
  .content-intro-grid,
  .split-section,
  .wa-demo-grid,
  .handoff-grid,
  .privacy-grid,
  .who-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero-grid {
    gap: 55px;
  }

  .inner-hero-content h1 {
    font-size: clamp(43px, 10vw, 62px);
  }

  .inner-hero-demo {
    max-width: 600px;
  }

  .wa-phone {
    margin: 0;
  }

  .wa-industry-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .wa-industry-card {
    min-height: auto;
  }

  .workflow-line {
    grid-template-columns: 1fr 1fr;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
  }

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

  .comparison-wrap {
    overflow-x: auto;
  }

  .comparison-head,
  .comparison-row {
    min-width: 760px;
  }

}


@media (max-width: 560px) {

  .section {
    padding: 62px 0;
  }

  .inner-hero {
    padding-top: 30px;
  }

  .breadcrumbs {
    font-size: 11px;
  }

  .inner-hero-content h1 {
    font-size: 42px;
  }

  .inner-hero-lead {
    font-size: 16px;
  }

  .inner-hero .hero-actions {
    flex-direction: column;
  }

  .inner-hero .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .inner-trust-row {
    flex-direction: column;
    gap: 10px;
  }

  .ai-employee-card {
    padding: 20px;
    border-radius: 21px;
  }

  .content-intro-grid {
    gap: 25px;
  }

  .section-heading h2,
  .content-intro h2,
  .split-copy h2,
  .wa-demo-copy h2,
  .large-use-case h2,
  .handoff-copy h2,
  .privacy-section h2,
  .who-section h2 {
    font-size: 35px;
  }

  .problem-grid,
  .capability-grid,
  .workflow-line,
  .implementation-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(6,63,53,.1);
  }

  .problem-grid article:last-child {
    border-bottom: 0;
  }

  .problem-grid h3,
  .implementation-grid h3 {
    margin-top: 30px;
  }

  .capability-card {
    min-height: auto;
  }

  .cap-icon {
    margin-bottom: 25px;
  }

  .workflow-line article {
    padding: 0;
  }

  .handoff-visual {
    grid-template-columns: 1fr;
  }

  .handoff-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .large-use-case {
    padding: 35px 25px;
  }

  .privacy-rules div {
    align-items: flex-start;
  }

  .cta-section {
    padding: 20px 0 65px;
  }

  .cta-box {
    padding: 50px 22px;
    border-radius: 22px;
  }

  .cta-box h2 {
    font-size: 36px;
  }

  .related-card {
    min-height: auto;
  }

}



/* =========================================================
   LAW FIRM SEO — AZADIAN CASE STUDY
   ========================================================= */

.legal-case-study {
  background:
    radial-gradient(circle at 90% 10%, rgba(200,148,47,.10), transparent 30%),
    var(--cream);
}

.case-study-header {
  display: grid;
  grid-template-columns: 1.5fr .5fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}

.case-study-header h2 {
  margin: 12px 0 0;
  max-width: 780px;
}

.case-study-client {
  padding: 24px 26px;
  border: 1px solid rgba(6,63,53,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.62);
}

.case-study-client span,
.metric-label {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--gold);
}

.case-study-client strong {
  display: block;
  color: var(--green);
  font-size: 18px;
}

.case-study-client small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.case-study-intro {
  max-width: 900px;
  margin-bottom: 55px;
}

.case-study-intro p {
  line-height: 1.8;
}

.case-study-visibility {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  background: var(--green);
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 32px;
}

.visibility-main {
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.12);
}

.visibility-main strong {
  color: white;
  font-family: Georgia, serif;
  font-size: clamp(58px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -.05em;
}

.metric-growth {
  margin-top: 14px;
  color: var(--gold-light);
  font-size: 23px;
  font-weight: 800;
}

.visibility-main small {
  max-width: 280px;
  margin-top: 20px;
  color: rgba(255,255,255,.66);
  line-height: 1.5;
}

.visibility-copy {
  padding: 52px;
  color: white;
}

.visibility-copy h3 {
  margin: 10px 0 20px;
  color: white;
  font-family: Georgia, serif;
  font-size: clamp(30px, 4vw, 47px);
  line-height: 1.05;
}

.visibility-copy h3 em {
  color: var(--gold-light);
  font-weight: normal;
}

.visibility-copy p {
  color: rgba(255,255,255,.76);
  line-height: 1.75;
}

.ranking-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 30px 0;
}

.ranking-card {
  min-height: 190px;
  padding: 26px;
  background: white;
  border: 1px solid rgba(6,63,53,.11);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 30px rgba(0,0,0,.035);
}

.ranking-card.featured {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.rank-number {
  display: block;
  font-family: Georgia, serif;
  font-size: 46px;
  color: var(--gold);
  line-height: 1;
}

.ranking-card strong {
  display: block;
  color: var(--green-dark);
  line-height: 1.35;
}

.ranking-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.ranking-card.featured strong {
  color: white;
}

.ranking-card.featured small {
  color: rgba(255,255,255,.62);
}

.case-study-note {
  margin: 20px 0 70px;
  padding: 25px 30px;
  border-left: 4px solid var(--gold);
  background: rgba(255,255,255,.65);
}

.case-study-note strong {
  color: var(--green);
}

.case-study-note p {
  margin: 7px 0 0;
  line-height: 1.7;
  color: var(--muted);
}

.case-study-strategy {
  margin-top: 30px;
}

.strategy-intro {
  max-width: 780px;
  margin-bottom: 35px;
}

.strategy-intro h3 {
  margin: 10px 0 16px;
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  color: var(--green-dark);
}

.strategy-intro h3 em {
  color: var(--gold);
  font-weight: normal;
}

.strategy-intro p {
  color: var(--muted);
  line-height: 1.75;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.strategy-grid article {
  padding: 27px;
  background: white;
  border: 1px solid rgba(6,63,53,.1);
  border-radius: 20px;
}

.strategy-grid article > span {
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
}

.strategy-grid h4 {
  margin: 17px 0 10px;
  color: var(--green-dark);
  font-size: 18px;
}

.strategy-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.case-study-ai {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  margin-top: 70px;
  padding: 55px;
  border-radius: 28px;
  background: var(--green-dark);
  color: white;
}

.case-study-ai h3 {
  margin: 10px 0 20px;
  font-family: Georgia, serif;
  font-size: clamp(32px, 4vw, 49px);
  line-height: 1.05;
}

.case-study-ai h3 em {
  color: var(--gold-light);
  font-weight: normal;
}

.case-study-ai p {
  color: rgba(255,255,255,.74);
  line-height: 1.75;
}

.ai-principles {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ai-principles div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.ai-principles span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
}

.ai-principles strong {
  color: white;
  font-size: 15px;
}

.case-study-disclaimer {
  margin-top: 25px;
  padding: 0 8px;
}

.case-study-disclaimer p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 1050px) {
  .ranking-showcase,
  .strategy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .case-study-header,
  .case-study-visibility,
  .case-study-ai {
    grid-template-columns: 1fr;
  }

  .visibility-main {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .case-study-ai {
    gap: 30px;
  }
}

@media (max-width: 560px) {
  .ranking-showcase,
  .strategy-grid {
    grid-template-columns: 1fr;
  }

  .visibility-main,
  .visibility-copy,
  .case-study-ai {
    padding: 32px 24px;
  }

  .ranking-card {
    min-height: 155px;
  }
}


/* Active header and footer navigation */
.desktop-nav a {
  position: relative;
}

.desktop-nav a.active,
.desktop-nav a[aria-current="page"] {
  color: var(--green);
  font-weight: 700;
}

.desktop-nav a.active::after,
.desktop-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--gold);
  border-radius: 10px;
}

.footer a.active,
.footer a[aria-current="page"] {
  color: var(--gold-light);
  font-weight: 700;
}

.footer a.active::before,
.footer a[aria-current="page"]::before {
  content: "→";
  display: inline-block;
  margin-right: 7px;
}

/* About page — Who We Work With layout fix */

.who-section .who-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 70px;
  margin-top: 55px;
}

.who-section .who-list {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--border);
}

.who-section .who-list > span {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.who-section .who-list > div {
  min-width: 0;
}

.who-section .who-list h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.25;
  color: var(--ink);
}

.who-section .who-list p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}


/* Tablet */

@media (max-width: 900px) {

  .who-section .who-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

}


/* Mobile */

@media (max-width: 560px) {

  .who-section .who-grid {
    margin-top: 35px;
  }

  .who-section .who-list {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    padding: 23px 0;
  }

  .who-section .who-list > span {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .who-section .who-list h3 {
    font-size: 19px;
    margin-bottom: 7px;
  }

  .who-section .who-list p {
    font-size: 14px;
    line-height: 1.65;
  }

}

/* FINAL FIX — About / Who We Work With */

.who-section .who-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 70px !important;
  row-gap: 0 !important;
}

.who-section .who-list {
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr) !important;
  gap: 20px !important;
  align-items: start !important;
  padding: 30px 0 !important;
  margin: 0 !important;
}

/* Critical: reset old layout applied to content wrapper */
.who-section .who-list > div {
  display: block !important;
  grid-template-columns: none !important;
  flex: none !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.who-section .who-list h3 {
  display: block !important;
  width: 100% !important;
  margin: 0 0 9px 0 !important;
  padding: 0 !important;
  font-size: 21px !important;
  line-height: 1.3 !important;
}

.who-section .who-list p {
  display: block !important;
  width: 100% !important;
  max-width: 520px !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.who-section .who-list > span {
  flex: none !important;
  margin: 0 !important;
}

@media (max-width: 900px) {
  .who-section .who-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .who-section .who-list {
    grid-template-columns: 36px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 23px 0 !important;
  }

  .who-section .who-list h3 {
    font-size: 19px !important;
  }

  .who-section .who-list p {
    font-size: 14px !important;
  }
}

/* Contact page */

.contact-main {
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  gap: 80px;
  align-items: start;
}

.contact-copy {
  padding-top: 30px;
}

.contact-copy h2 {
  margin: 12px 0 24px;
  font-family: Georgia, serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.02;
  color: var(--green-dark);
}

.contact-copy h2 em {
  color: var(--gold);
  font-weight: 400;
}

.contact-copy > p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-expectations {
  margin-top: 38px;
}

.contact-expectations > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.contact-expectations > div > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.contact-expectations strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.contact-expectations p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-card {
  background: #fff;
  padding: 46px;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact-form-head {
  margin-bottom: 34px;
}

.contact-form-head > span {
  display: block;
  margin-bottom: 9px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.contact-form-head h2 {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1.15;
}

.contact-form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  margin-bottom: 21px;
}

.form-field label,
.service-choice legend {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: #fff;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 145px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,148,47,.12);
}

.service-choice {
  margin: 5px 0 23px;
  padding: 0;
  border: 0;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-options label {
  position: relative;
  cursor: pointer;
}

.service-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-options label > span {
  display: block;
  height: 100%;
  box-sizing: border-box;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all .2s ease;
}

.service-options label:hover > span {
  border-color: var(--gold);
}

.service-options input:checked + span {
  border-color: var(--green);
  background: rgba(6,63,53,.055);
  box-shadow: inset 0 0 0 1px var(--green);
}

.service-options strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 14px;
}

.service-options small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.form-submit {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
}

.form-submit p {
  max-width: 230px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.form-status {
  margin-top: 15px;
  font-size: 14px;
}

@media (max-width: 1000px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-copy {
    max-width: 720px;
  }
}

@media (max-width: 650px) {
  .contact-form-card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .form-row,
  .service-options {
    grid-template-columns: 1fr;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit .btn {
    width: 100%;
    text-align: center;
  }

  .form-submit p {
    max-width: none;
  }
}

/* Contact form status */

.form-status.success {
  padding: 13px 15px;
  border-radius: 9px;
  background: rgba(6,63,53,.08);
  color: var(--green);
  font-weight: 700;
}

.form-status.error {
  padding: 13px 15px;
  border-radius: 9px;
  background: rgba(180,40,40,.08);
  color: #9f2525;
  font-weight: 700;
}

#netyati-contact-form button:disabled {
  opacity: .65;
  cursor: wait;
}

/* Mobile navigation */

@media (max-width: 820px) {

  .site-header {
    position: relative;
    z-index: 1000;
  }

  .nav-wrap {
    position: relative;
  }

  .mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--green-dark);
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
  }

  .desktop-nav {
    display: none !important;
  }

  .desktop-nav.mobile-open {
    display: flex !important;
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    z-index: 1001;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .desktop-nav.mobile-open a {
    display: block;
    padding: 14px 13px;
    border-radius: 9px;
    font-size: 15px;
  }

  .desktop-nav.mobile-open a:hover,
  .desktop-nav.mobile-open a.active,
  .desktop-nav.mobile-open a[aria-current="page"] {
    background: var(--cream);
    color: var(--green);
  }

  .desktop-nav.mobile-open a::after {
    display: none !important;
  }

  body.menu-open {
    overflow: hidden;
  }

}

@media (min-width: 821px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==========================================================
   GLOBAL WHO / QUALIFICATION SECTION FIX
   ========================================================== */

.who-section .who-grid {
  display: grid !important;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr) !important;
  column-gap: 90px !important;
  row-gap: 0 !important;
  align-items: start !important;
}

.who-section .who-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  min-width: 0 !important;
}

.who-section .who-list > div {
  display: grid !important;
  grid-template-columns: 35px minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: start !important;
  width: 100% !important;
  min-width: 0 !important;
  padding: 19px 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(6,63,53,.1) !important;
}

.who-section .who-list > div > span {
  display: grid !important;
  place-items: center !important;
  width: 27px !important;
  height: 27px !important;
  border-radius: 50% !important;
  background: rgba(6,63,53,.09) !important;
  color: var(--green) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.who-section .who-list > div > p {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 1px 0 0 !important;
  padding: 0 !important;
  color: #4f4a44 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

@media (max-width: 900px) {
  .who-section .who-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

@media (max-width: 560px) {
  .who-section .who-grid {
    gap: 28px !important;
  }

  .who-section .who-list > div {
    grid-template-columns: 32px minmax(0, 1fr) !important;
    gap: 10px !important;
    padding: 17px 0 !important;
  }

  .who-section .who-list > div > p {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }
}
