/* =========================================================
   Linglong – Shared Stylesheet
   ========================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Sora:wght@400;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --brand-primary:   #16a34a;   /* forest green */
  --brand-mid:       #22c55e;
  --brand-light:     #dcfce7;
  --brand-dark:      #14532d;
  --accent:          #f59e0b;   /* warm amber */
  --accent-light:    #fef3c7;

  --text-900:  #0f172a;
  --text-700:  #334155;
  --text-500:  #64748b;
  --text-300:  #94a3b8;
  --text-100:  #f1f5f9;

  --bg-white:  #ffffff;
  --bg-soft:   #f8faf9;
  --bg-card:   #ffffff;

  --border:    #e2e8f0;
  --border-md: #cbd5e1;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-head: 'Sora', 'Inter', system-ui, sans-serif;

  --nav-h: 68px;
  --max-w: 1160px;
  --gutter: 24px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { 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.65;
  color: var(--text-700);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: 88px; }
.section--sm { padding-block: 56px; }
.section--lg { padding-block: 112px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--text-900);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-700); }
.lead { font-size: 1.15rem; line-height: 1.7; color: var(--text-500); }
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: var(--brand-light);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.section-head { max-width: 640px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--text-500); font-size: 1.05rem; }
.text-center { text-align: center; }
.text-center .section-head { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22,163,74,.3);
}
.btn--outline {
  background: transparent;
  border-color: var(--border-md);
  color: var(--text-700);
}
.btn--outline:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  transform: translateY(-1px);
}
.btn--lg { padding: 15px 32px; font-size: 1rem; border-radius: var(--radius-md); }
.btn--ghost {
  background: transparent;
  color: var(--brand-primary);
  padding-inline: 0;
  border: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn--ghost:hover { color: var(--brand-dark); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-900);
  flex-shrink: 0;
}
.nav__logo span { color: var(--brand-primary); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav__links a {
  padding: 6px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-700);
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.nav__links a:hover, .nav__links a.active {
  color: var(--brand-primary);
  background: var(--brand-light);
}
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-700);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 16px var(--gutter);
  gap: 4px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 10px 14px;
  font-weight: 500;
  color: var(--text-700);
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.nav__mobile a:hover { color: var(--brand-primary); background: var(--brand-light); }

/* ---------- Footer ---------- */
.footer {
  background: var(--text-900);
  color: var(--text-300);
  padding-block: 64px 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer__brand h3 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.footer__brand h3 span { color: var(--brand-mid); }
.footer__brand p { font-size: .9rem; line-height: 1.65; }
.footer__col h4 {
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: .9rem;
  color: var(--text-300);
  transition: color .15s;
}
.footer__col ul a:hover { color: var(--brand-mid); }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: var(--text-300);
  transition: background .15s, color .15s;
}
.footer__social a:hover { background: var(--brand-primary); color: #fff; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom a { color: var(--text-300); transition: color .15s; }
.footer__bottom a:hover { color: var(--brand-mid); }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
}
.badge--green { background: var(--brand-light); color: var(--brand-dark); }
.badge--amber { background: var(--accent-light); color: #92400e; }
.badge--blue  { background: #eff6ff; color: #1d4ed8; }

/* ---------- Hero (index) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(145deg, #f0fdf4 0%, #ffffff 60%, #fefce8 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(22,163,74,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero__content { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--brand-dark);
  background: var(--brand-light);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.hero__eyebrow svg { flex-shrink: 0; }
.hero__heading { margin-bottom: 20px; }
.hero__heading em {
  font-style: normal;
  color: var(--brand-primary);
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--text-500);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}
.hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__trust {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  color: var(--text-500);
}
.hero__avatars {
  display: flex;
}
.hero__avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}
.hero__avatars span:first-child { margin-left: 0; }

/* ---------- Mockup Visual ---------- */
.hero__visual { position: relative; }
.mockup {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  overflow: hidden;
}
.mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #f8f9fa;
  border-bottom: 1px solid var(--border);
}
.mockup__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup__dot:nth-child(1) { background: #ff5f57; }
.mockup__dot:nth-child(2) { background: #febc2e; }
.mockup__dot:nth-child(3) { background: #28c840; }
.mockup__body { padding: 20px; }
.mockup__menu-header {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.mockup__menu-header h4 { font-size: .9rem; color: var(--text-900); }
.mockup__menu-header p { font-size: .75rem; color: var(--text-500); }
.mockup__category { font-size: .72rem; font-weight: 700; color: var(--brand-primary); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; margin-top: 8px; }
.mockup__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}
.mockup__item:last-child { border-bottom: none; }
.mockup__item-info h5 { font-size: .82rem; color: var(--text-900); font-weight: 600; }
.mockup__item-info p { font-size: .72rem; color: var(--text-500); }
.mockup__item-right { display: flex; align-items: center; gap: 10px; }
.mockup__price { font-size: .85rem; font-weight: 700; color: var(--text-900); }
.mockup__add {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
}
.mockup__qr {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.mockup__qr-text { font-size: .72rem; color: var(--brand-dark); font-weight: 500; }

.hero__float {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  font-size: .8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__float--tl { top: -16px; left: -20px; color: var(--text-900); }
.hero__float--br { bottom: 16px; right: -16px; color: var(--text-900); }
.hero__float .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot--green { background: #22c55e; }
.dot--amber { background: #f59e0b; }

/* ---------- Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-card { padding: 28px; }
.feat-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.feat-card__icon--green { background: var(--brand-light); color: var(--brand-primary); }
.feat-card__icon--amber { background: var(--accent-light); color: #d97706; }
.feat-card__icon--blue  { background: #eff6ff; color: #2563eb; }
.feat-card__icon--purple{ background: #f5f3ff; color: #7c3aed; }
.feat-card__icon--rose  { background: #fff1f2; color: #e11d48; }
.feat-card__icon--teal  { background: #f0fdfa; color: #0d9488; }
.feat-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feat-card p  { font-size: .9rem; color: var(--text-500); line-height: 1.6; }

/* ---------- Steps / How it works ---------- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding-bottom: 40px;
  position: relative;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-light), transparent);
}
.step:last-child::before { display: none; }
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--brand-light);
}
.step__body h3 { margin-bottom: 8px; padding-top: 14px; }
.step__body p  { color: var(--text-500); font-size: .95rem; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card { padding: 28px 28px 24px; }
.testi-card__stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card blockquote {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-700);
  margin-bottom: 20px;
  font-style: italic;
}
.testi-card blockquote::before { content: '\201C'; font-size: 1.4em; color: var(--brand-primary); font-style: normal; line-height: 0; vertical-align: -.2em; margin-right: 2px; }
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-card__name { font-weight: 600; font-size: .9rem; color: var(--text-900); }
.testi-card__role { font-size: .8rem; color: var(--text-500); }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 36px;
  background: #fff;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pricing-card--featured {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(22,163,74,.08), var(--shadow-md);
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pricing-card__tier { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-primary); margin-bottom: 10px; }
.pricing-card__price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 6px; }
.pricing-card__price .amount { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; color: var(--text-900); line-height: 1; }
.pricing-card__price .per { font-size: .85rem; color: var(--text-500); padding-bottom: 6px; }
.pricing-card__desc { font-size: .9rem; color: var(--text-500); margin-bottom: 24px; }
.pricing-card__divider { border: none; border-top: 1px solid var(--border); margin-bottom: 22px; }
.pricing-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-card__feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-700);
}
.pricing-card__feat svg { flex-shrink: 0; color: var(--brand-primary); margin-top: 2px; }
.pricing-card__feat.muted svg { color: var(--text-300); }
.pricing-card__feat.muted { color: var(--text-300); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 32px; max-width: 520px; margin-inline: auto; margin-bottom: 32px; }
.cta-banner .btn--white {
  background: #fff;
  color: var(--brand-primary);
  border-color: #fff;
}
.cta-banner .btn--white:hover {
  background: var(--brand-light);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  transform: translateY(-1px);
}
.cta-banner .btn--transparent {
  background: transparent;
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.cta-banner .btn--transparent:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}
.cta-banner__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Stats Row ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item__label { font-size: .85rem; color: var(--text-500); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-900);
  gap: 16px;
}
.faq-item__q svg {
  flex-shrink: 0;
  color: var(--text-500);
  transition: transform .2s;
}
.faq-item.open .faq-item__q svg { transform: rotate(45deg); color: var(--brand-primary); }
.faq-item__a {
  display: none;
  padding-bottom: 20px;
  font-size: .95rem;
  color: var(--text-500);
  line-height: 1.7;
  padding-right: 40px;
}
.faq-item.open .faq-item__a { display: block; }

/* ---------- Feature Detail (features.html) ---------- */
.feature-hero {
  background: linear-gradient(145deg, #f0fdf4 0%, #ffffff 100%);
  padding-block: 72px;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-row--rev { direction: rtl; }
.feature-row--rev > * { direction: ltr; }
.feature-visual {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.feature-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--text-700);
}
.feature-list li svg { flex-shrink: 0; color: var(--brand-primary); margin-top: 2px; }

/* ---------- About page ---------- */
.about-hero { padding-block: 72px; background: var(--bg-soft); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card { text-align: center; }
.team-card__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-inline: auto;
  margin-bottom: 14px;
}
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card p  { font-size: .85rem; color: var(--text-500); }

.contact-form {
  max-width: 560px;
  margin-inline: auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text-700); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border-md);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: .95rem;
  color: var(--text-900);
  background: #fff;
  transition: border-color .15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--brand-primary); box-shadow: 0 0 0 3px rgba(22,163,74,.12); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---------- Privacy ---------- */
.prose { max-width: 720px; margin-inline: auto; }
.prose h2 { font-size: 1.4rem; margin-top: 40px; margin-bottom: 14px; color: var(--text-900); }
.prose p, .prose li { font-size: .97rem; color: var(--text-700); line-height: 1.75; margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose ul li { margin-bottom: 6px; }
.prose a { color: var(--brand-primary); text-decoration: underline; }

/* ---------- Integration logos ---------- */
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  filter: grayscale(1);
  opacity: .5;
}
.logo-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-700);
  font-family: var(--font-head);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card--featured { grid-column: span 1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row .stat-item:nth-child(2) { border-right: none; }
  .stats-row .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .stats-row .stat-item:nth-child(3),
  .stats-row .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta .btn--outline { display: none; }
  .nav__burger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row--rev { direction: ltr; }
  .footer__grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { padding: 44px 28px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .section { padding-block: 60px; }
  .section--lg { padding-block: 72px; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stats-row .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-row .stat-item:last-child { border-bottom: none; }
}
