/* =========================================================
   AuthorityMart Media — Global Stylesheet
   Primary: White  |  Secondary: Green
   ========================================================= */

:root {
  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f6faf7;
  --bg-mute: #eef5f0;
  --ink: #0c1a14;
  --ink-soft: #2b3a32;
  --ink-mute: #5a6b62;
  --line: #e3ece6;
  --line-strong: #cdddd3;

  --green: #16a34a;
  --green-deep: #0f7a37;
  --green-dark: #0a5226;
  --green-soft: #dcf5e5;
  --green-mute: #ecfaf0;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(15, 122, 55, 0.04), 0 1px 3px rgba(15, 122, 55, 0.06);
  --shadow: 0 6px 24px -8px rgba(15, 122, 55, 0.18), 0 2px 6px rgba(15, 122, 55, 0.06);
  --shadow-lg: 0 24px 60px -20px rgba(15, 122, 55, 0.28), 0 8px 18px rgba(15, 122, 55, 0.08);

  --container: 1200px;

  --font-display: "Fraunces", "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green-dark); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 600; }

h1 em, h2 em { font-style: italic; color: var(--green-deep); }

p { color: var(--ink-soft); }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.brand img { height: 38px; width: auto; }

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 12px rgba(15, 122, 55, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: all .2s ease;
}
.nav-links a:hover { color: var(--green-deep); background: var(--green-mute); }
.nav-links a.active { color: var(--green-deep); background: var(--green-mute); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all .2s ease;
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: var(--ink);
}
.menu-toggle svg { width: 24px; height: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: var(--green-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-accent {
  background: var(--green-deep);
  color: #fff;
}
.btn-accent:hover { background: var(--green-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-outline:hover { border-color: var(--green-deep); color: var(--green-deep); background: var(--green-mute); }

.btn-arrow::after {
  content: "→";
  font-family: inherit;
  transition: transform .2s ease;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(22, 163, 74, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(22, 163, 74, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--green-mute);
  border: 1px solid var(--green-soft);
  color: var(--green-dark);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18);
}

.hero h1 {
  margin-bottom: 22px;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-mute);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-meta-item .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hero-meta-item .lab {
  font-size: 0.82rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background: var(--green-mute);
  border: 1px solid var(--green-soft);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ---------- Sections ---------- */
section { padding: 90px 0; }
section.tight { padding: 64px 0; }

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow { margin-left: auto; margin-right: auto; }
.section-head p { font-size: 1.08rem; color: var(--ink-mute); margin-top: 18px; }

.section-head.left { text-align: left; margin-left: 0; }

/* ---------- Trust strip ---------- */
.trust {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.trust-label {
  text-align: center;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  margin-bottom: 20px;
  font-weight: 600;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px;
  opacity: 0.85;
}
.trust-row span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink-mute);
  letter-spacing: -0.01em;
}

/* ---------- Service cards (homepage) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  position: relative;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.svc-card:hover {
  border-color: var(--green-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-mute);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.svc-icon svg { width: 24px; height: 24px; }

.svc-card h3 { margin-bottom: 10px; }
.svc-card p { font-size: 0.96rem; color: var(--ink-mute); flex: 1; }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-deep);
}
.svc-link::after { content: "→"; transition: transform .2s ease; }
.svc-card:hover .svc-link::after { transform: translateX(4px); }

/* ---------- Platform / Product grid (Rankability-style) ---------- */
.platform-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.platform-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.platform-card:hover {
  border-color: var(--green);
  background: linear-gradient(180deg, var(--white), var(--green-mute));
  transform: translateY(-2px);
  color: inherit;
}

.platform-card .tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-deep);
  font-weight: 700;
  margin-bottom: 14px;
}

.platform-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.platform-card p {
  font-size: 0.94rem;
  color: var(--ink-mute);
  margin-bottom: 16px;
  flex: 1;
}

.platform-card .platform-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.platform-card .platform-link::after { content: "→"; transition: transform .2s ease; }
.platform-card:hover .platform-link::after { transform: translateX(4px); }

/* ---------- Process / Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.step .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 400;
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: 0.94rem; color: var(--ink-mute); }

/* ---------- Stats ---------- */
.stats-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 100%);
  color: #fff;
  padding: 70px 0;
  border-radius: var(--radius-xl);
}
.stats-band h2 { color: #fff; }
.stats-band p { color: rgba(255,255,255,0.82); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.stat .lab {
  font-size: 0.9rem;
  opacity: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Feature splits (alternating) ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 40px 0;
}
.feature-split.reverse > .feature-visual { order: -1; }

.feature-visual {
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-mute);
  border: 1px solid var(--green-soft);
  box-shadow: var(--shadow);
}
.feature-visual img { width: 100%; height: 100%; object-fit: cover; }

.feature-text .eyebrow { margin-bottom: 18px; }
.feature-text h2 { margin-bottom: 18px; }
.feature-text > p { font-size: 1.04rem; margin-bottom: 22px; }

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-deep);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tmt {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.tmt .stars { color: var(--green); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.tmt blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.45;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 22px;
  flex: 1;
}
.tmt .who { display: flex; align-items: center; gap: 12px; }
.tmt .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-mute);
  border: 1px solid var(--green-soft);
  overflow: hidden;
}
.tmt .who strong { font-size: 0.94rem; display: block; color: var(--ink); }
.tmt .who span { font-size: 0.82rem; color: var(--ink-mute); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--green-deep);
  font-weight: 300;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
  padding: 0 0 22px 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 20% 30%, rgba(22, 163, 74, 0.4), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(22, 163, 74, 0.3), transparent 50%);
  z-index: 0;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 580px; margin: 0 auto 30px; font-size: 1.05rem; }
.cta-band .btn-primary { background: var(--green); }
.cta-band .btn-primary:hover { background: var(--white); color: var(--ink); }
.cta-band .btn-outline { color: #fff; border-color: rgba(255,255,255,0.25); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.5); }

.cta-actions { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0a1310;
  color: rgba(255,255,255,0.78);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .brand { color: #fff; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.96rem; max-width: 360px; }
.footer-col h5 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.94rem;
  transition: color .2s ease;
}
.footer-col ul a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--green); }

/* ---------- Service detail page ---------- */
.svc-hero {
  padding: 80px 0 60px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.svc-hero h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); margin-bottom: 20px; }
.svc-hero p { font-size: 1.1rem; color: var(--ink-mute); margin-bottom: 28px; max-width: 540px; }

.svc-feature-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.svc-feature .ico {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--green-mute);
  color: var(--green-deep);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.svc-feature .ico svg { width: 22px; height: 22px; }
.svc-feature h4 { margin-bottom: 8px; }
.svc-feature p { font-size: 0.94rem; color: var(--ink-mute); }

/* breadcrumb */
.breadcrumb {
  font-size: 0.86rem;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--green-deep); }

/* ---------- Page header (utility for inner pages) ---------- */
.page-header {
  padding: 70px 0 40px;
  text-align: center;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.page-header h1 { margin-bottom: 14px; }
.page-header p { font-size: 1.1rem; color: var(--ink-mute); max-width: 640px; margin: 0 auto; }

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  background: var(--green-mute);
  border: 1px solid var(--green-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info h3 { margin-bottom: 16px; }
.contact-info ul { list-style: none; display: grid; gap: 18px; margin-top: 24px; }
.contact-info li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info li svg { width: 22px; height: 22px; color: var(--green-deep); flex-shrink: 0; margin-top: 3px; }

form.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-deep);
  box-shadow: 0 0 0 3px var(--green-mute);
}
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- About page bits ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.value-card .ico {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--green-mute);
  color: var(--green-deep);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.value-card .ico svg { width: 22px; height: 22px; }
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: 0.94rem; color: var(--ink-mute); }

/* ---------- Industries ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all .2s ease;
}
.industry:hover { border-color: var(--green); background: var(--green-mute); transform: translateY(-2px); }
.industry .ico {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--green-mute);
  color: var(--green-deep);
  display: grid; place-items: center;
}
.industry .ico svg { width: 22px; height: 22px; }
.industry h4 { font-size: 1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  section { padding: 70px 0; }
  .hero { padding: 60px 0 80px; }
  .hero-grid,
  .svc-hero-grid,
  .feature-split,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-split.reverse > .feature-visual { order: 0; }
  .services-grid,
  .platform-grid,
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid,
  .steps,
  .svc-feature-block,
  .industries-grid,
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open a { display: block; padding: 12px 14px; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .services-grid,
  .platform-grid,
  .testimonials-grid,
  .stats-grid,
  .steps,
  .svc-feature-block,
  .industries-grid,
  .values-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 50px 24px; }
  .stats-band { padding: 50px 24px; border-radius: var(--radius-lg); }
  h1 { font-size: 2.2rem; }
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeUp .6s ease both; }
.reveal-1 { animation-delay: .05s; }
.reveal-2 { animation-delay: .15s; }
.reveal-3 { animation-delay: .25s; }
.reveal-4 { animation-delay: .35s; }
