/* ─── AI SEARCH PARTNERS — SHARED STYLESHEET ─── */

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

:root {
  --green: #2ec95c;
  --green-dark: #1aaa45;
  --green-light: #e8faf0;
  --green-mid: #b8f0cc;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-light: #6B7280;
  --bg-white: #ffffff;
  --bg-off: #f9fafb;
  --bg-gray: #f3f4f6;
  --border: #e5e7eb;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 90px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}
.logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.logo-img { height: 66px; width: auto; display: block; }
.logo-img-footer { height: 66px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; position: relative; }
.nav-links > li { position: relative; }
.nav-links a {
  text-decoration: none; color: var(--text-mid);
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  display: flex; align-items: center; gap: 5px;
}
.nav-links a:hover { background: var(--bg-gray); color: var(--text-dark); }
.nav-links a.active { color: var(--green-dark); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }
.dropdown-toggle svg { transition: transform 0.2s; }
.has-dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 260px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 8px; font-size: 14px;
  color: var(--text-mid); text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--green-light); color: var(--green-dark); }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--green); color: #fff; border: none;
  border-radius: 50px; padding: 10px 22px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 16px rgba(46,201,92,0.28);
}
.btn-primary:hover {
  background: var(--green-dark); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(46,201,92,0.35);
}
.btn-primary.lg { padding: 14px 30px; font-size: 16px; }
.btn-secondary {
  background: transparent; color: var(--text-dark);
  border: 1.5px solid var(--border); border-radius: 50px;
  padding: 10px 22px; font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-secondary:hover { border-color: var(--green); background: var(--green-light); }
.btn-secondary.lg { padding: 14px 28px; font-size: 15px; }

/* ─── SECTION LAYOUT ─── */
.section { padding: 96px 24px; }
.section-sm { padding: 64px 24px; }
.section-alt { background: var(--bg-off); }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: 12px;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--text-dark); margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--text-light);
  max-width: 520px; line-height: 1.65;
}
.centered { text-align: center; }
.centered .section-sub { margin: 0 auto; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(145deg, #f0fdf4 0%, #ffffff 55%, #f0fdf4 100%);
  padding: 120px 24px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,201,92,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1160px; margin: 0 auto; }
.page-hero-inner .breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-light); margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-dark); }
.breadcrumb span { color: var(--border); }
.breadcrumb span:last-child { color: var(--text-light); }
.page-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(34px, 5vw, 58px); font-weight: 800;
  line-height: 1.12; letter-spacing: -0.02em;
  color: var(--text-dark); max-width: 680px; margin-bottom: 18px;
}
.page-hero h1 em { font-style: normal; color: var(--green-dark); }
.page-hero p {
  font-size: 18px; color: var(--text-light);
  max-width: 540px; line-height: 1.65; margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── CHECKLIST ─── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text-mid); line-height: 1.5;
}
.check-list li .chk {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-light); border: 1.5px solid var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.check-list li .chk svg { width: 11px; height: 11px; }

/* ─── CONTENT WIDTH CONSTRAINT (service pages skip section-inner wrapper) ─── */
.section > .two-col,
.section > .feature-grid,
.section > .process-grid,
.section > .stats-bar,
.section > .testimonial-grid,
.section > .blog-grid,
.section > .section-header,
.section > .faq-list {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── SECTION HEADER (used by service pages above grids/steps) ─── */
.section-header {
  margin-bottom: 48px;
}
.section-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--text-dark); margin-bottom: 12px;
}
.section-header p {
  font-size: 17px; color: var(--text-light);
  max-width: 560px; line-height: 1.65;
}

/* General h2 styling inside sections — ensures consistent typography
   regardless of which wrapper class the agents used (intro-text, two-col-left, etc.) */
.section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text-dark);
  margin-bottom: 14px;
}
/* The section-header h2 is larger (full-width title) — override the general rule */
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

/* ─── PAGE HERO CONTENT ALIGNMENT ─── */
/* Constrain hero text to match the 1160px body content width.
   Targets both .hero-cta and .hero-ctas (class names vary by page). */
.page-hero > .breadcrumb,
.page-hero > h1,
.page-hero > p,
.page-hero > .hero-cta,
.page-hero > .hero-ctas {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

/* Button row: always flex, always left-aligned, never shrinks to center */
.page-hero > .hero-cta,
.page-hero > .hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

/* ─── TWO-COL ─── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.two-col.reverse .col-visual { order: -1; }

/* ─── VISUAL CARD STACK ─── */
.visual-stack {
  background: var(--bg-off); border-radius: 24px;
  padding: 32px; border: 1px solid var(--border); position: relative; overflow: hidden;
}
.visual-stack::after {
  content: ''; position: absolute; bottom: -50px; right: -50px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, var(--green-light) 0%, transparent 70%);
}
.mini-card {
  background: var(--bg-white); border-radius: var(--radius-sm);
  border: 1px solid var(--border); padding: 24px 20px;
  margin-bottom: 12px; display: flex; flex-direction: column;
  gap: 0; box-shadow: var(--shadow);
}
.mini-card:last-child { margin-bottom: 0; }
.mini-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; background: var(--green-light);
  margin-bottom: 16px;
}
.mini-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 15px;
  color: var(--text-dark); margin-bottom: 6px;
}
.mini-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin: 0; }
.mini-card-text .label { font-weight: 600; font-size: 13px; color: var(--text-dark); }
.mini-card-text .val { font-size: 12px; color: var(--text-light); }

/* ─── FEATURE GRID ─── */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px;
}
.feature-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--green-mid); }
.feature-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--green-light); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 20px;
}
.feature-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px;
}
.feature-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ─── PROCESS STEPS ─── */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 48px; position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 27px; left: 12%; right: 12%;
  height: 1px; background: var(--border); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--bg-white); border: 2px solid var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 800; color: var(--green-dark);
  margin: 0 auto 18px; position: relative; z-index: 1;
}
.process-step h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px;
}
.process-step p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ─── FAQ ─── */
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
}
.faq-q {
  padding: 20px 24px; font-size: 15px; font-weight: 600;
  color: var(--text-dark); cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
  user-select: none;
}
.faq-q svg { flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  padding: 0 24px; max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--text-light); line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ─── STATS BAR ─── */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-top: 48px;
}
.stat-cell {
  padding: 28px 24px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-cell:last-child { border-right: none; }
.stat-n {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px; font-weight: 800; color: var(--text-dark); line-height: 1;
}
.stat-n span { color: var(--green-dark); }
.stat-l { font-size: 13px; color: var(--text-light); margin-top: 5px; }

/* ─── TESTIMONIALS ─── */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.testimonial {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.t-stars { color: #f59e0b; font-size: 14px; margin-bottom: 14px; }
.t-quote { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-light); display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--green-dark);
}
.t-name { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.t-role { font-size: 12px; color: var(--text-light); }

/* ─── FORM ─── */
.form-section {
  background: linear-gradient(135deg, #1a7a3a 0%, #2ec95c 100%);
  padding: 80px 24px;
}
.form-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.form-text { color: #fff; }
.form-text .section-tag { color: rgba(255,255,255,0.75); }
.form-text .section-title { color: #fff; }
.form-text .section-sub { color: rgba(255,255,255,0.8); }
.form-text ul { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.form-text ul li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.9); }
.form-text ul li::before {
  content: '✓'; width: 22px; height: 22px;
  background: rgba(255,255,255,0.2); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.form-box {
  background: #fff; border-radius: 24px;
  padding: 40px; box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}
.form-box h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px;
}
.form-box p { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }
.form-group { margin-bottom: 14px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 14px; font-family: inherit; color: var(--text-dark);
  background: var(--bg-off); outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--green); background: #fff;
}
.form-group textarea { resize: none; height: 90px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #9ca3af; }
.form-submit {
  width: 100%; background: var(--green); color: #fff; border: none;
  border-radius: 10px; padding: 14px; font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: inherit;
  transition: background 0.2s, transform 0.15s; margin-top: 4px;
  box-shadow: 0 6px 20px rgba(46,201,92,0.3);
}
.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ─── CTA BANNER ─── */
.cta-banner { background: var(--text-dark); padding: 80px 24px; text-align: center; }
.cta-banner h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  color: #fff; margin-bottom: 16px;
}
.cta-banner h2 span { color: var(--green); }
.cta-banner p { font-size: 17px; color: #9ca3af; max-width: 460px; margin: 0 auto 36px; }

/* ─── BLOG (Technology News) ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.blog-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-thumb {
  height: 188px; display: flex; align-items: center;
  justify-content: center; font-size: 48px;
}
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.blog-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green-dark);
  background: var(--green-light); padding: 3px 10px; border-radius: 50px;
}
.blog-date { font-size: 12px; color: var(--text-light); }
.blog-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 700; color: var(--text-dark);
  line-height: 1.35; margin-bottom: 10px;
}
.blog-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.read-more { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: var(--green-dark); margin-top: 16px; text-decoration: none; }

/* ─── FOOTER ─── */
footer { background: var(--bg-off); border-top: 1px solid var(--border); padding: 60px 24px 32px; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 14px; color: var(--text-light); line-height: 1.7;
  margin-top: 14px; max-width: 260px;
}
.footer-col h4 {
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--text-dark); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px; color: var(--text-light);
  text-decoration: none; transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--green-dark); }
.footer-bottom {
  padding-top: 28px; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: var(--text-light); }
.footer-bottom a { color: var(--text-light); text-decoration: none; transition: color 0.15s; }
.footer-bottom a:hover { color: var(--green-dark); }
.footer-legal-links { display: flex; gap: 16px; }
.footer-legal-links a { font-size: 13px; color: var(--text-light); text-decoration: none; transition: color 0.15s; }
.footer-legal-links a:hover { color: var(--green-dark); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--bg-white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); text-decoration: none; font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--green); color: var(--green-dark); }

/* ─── CLASS NAME ALIASES ────────────────────────────────────────
   Some pages use different class names than the CSS conventions.
   These rules normalise all variations to the same visual output.
─────────────────────────────────────────────────────────────── */

/* h2 placed directly inside .section (no .section-header wrapper) */
.section > h2 {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--text-dark);
}

/* Stats bar used as a standalone block outside any .section */
body > .stats-bar {
  margin: 64px auto;
  width: calc(100% - 48px);
  max-width: 1160px;
}

/* Always constrain stats-bar width regardless of parent */
.stats-bar {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

/* .stat alias for .stat-cell */
.stats-bar .stat {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stats-bar .stat:last-child { border-right: none; }
.stats-bar .stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px; font-weight: 800;
  color: var(--text-dark); line-height: 1;
}
.stats-bar .stat-label { font-size: 13px; color: var(--text-light); margin-top: 5px; }

/* .testimonial-card alias for .testimonial */
.testimonial-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.testimonial-card .testimonial-stars { color: #f59e0b; font-size: 14px; margin-bottom: 14px; }
.testimonial-card > p {
  font-size: 14px; color: var(--text-mid); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-card .testimonial-author { display: flex; flex-direction: column; gap: 2px; }
.testimonial-card .testimonial-name { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.testimonial-card .testimonial-role { font-size: 12px; color: var(--text-light); }

/* .process-number alias for .step-num */
.process-step .process-number {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--bg-white); border: 2px solid var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 800; color: var(--green-dark);
  margin: 0 auto 18px; position: relative; z-index: 1;
}
/* h3 alias for h4 inside process steps */
.process-step h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px; text-align: center;
}
.process-step p { font-size: 13px; color: var(--text-light); line-height: 1.6; text-align: center; }

/* .checklist alias for .check-list (adds ✓ prefix, no extra markup needed) */
.checklist {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px; margin-top: 20px;
}
.checklist li {
  font-size: 15px; color: var(--text-mid);
  line-height: 1.5; padding-left: 26px; position: relative;
}
.checklist li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--green-dark); font-weight: 700; font-size: 14px; top: 1px;
}

/* ─── FOOTER LOGO ─── */
.footer-logo { margin-bottom: 0; }

/* ─── HAMBURGER BUTTON ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-right: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ─── RESPONSIVE ─── */

/* Tablet: 768px – 960px */
@media (max-width: 960px) {
  .two-col, .form-inner { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse .col-visual { order: 0; }
  .feature-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .stat-cell:nth-child(2),
  .stats-bar .stat:nth-child(2) { border-right: none; }
  .stats-bar .stat-cell:nth-child(3),
  .stats-bar .stat:nth-child(3) { border-top: 1px solid var(--border); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
}

/* Nav hamburger: ≤ 900px — collapse before links ever wrap */
@media (max-width: 900px) {
  nav .btn-primary { display: none; }
  .nav-inner { flex-wrap: wrap; height: 104px; }
  .logo-img { height: 84px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 104px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 8px 0 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 200;
  }
  .nav-links.open > li { padding: 0 24px; }
  .nav-links.open > li > a { display: block; padding: 9px 0; font-size: 15px; text-align: center; }
  .nav-links.open .dropdown-menu {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 2px 0 6px;
    margin-top: 0;
  }
  .nav-links.open .has-dropdown.dropdown-open .dropdown-menu { display: block; }
  .has-dropdown.dropdown-open .dropdown-toggle svg { transform: rotate(180deg); }
  .nav-links.open .dropdown-menu a { padding: 8px 10px; font-size: 14px; color: var(--text-mid); border-radius: 6px; text-align: center; }
  .hamburger { display: flex; }
}

/* Mobile: ≤ 640px */
@media (max-width: 640px) {
  /* Layout */
  .section { padding: 64px 20px; }
  .feature-grid, .process-grid, .testimonial-grid, .blog-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .page-hero { padding: 72px 20px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-primary, .hero-cta .btn-secondary { text-align: center; }
}

/* Small mobile: ≤ 375px */
@media (max-width: 375px) {
  .stats-bar { grid-template-columns: 1fr; }
  .stats-bar .stat-cell, .stats-bar .stat { border-right: none; border-top: 1px solid var(--border); }
  .stats-bar .stat-cell:first-child, .stats-bar .stat:first-child { border-top: none; }
}
