/* ═══════════════════════════════════════════
   MyCharityDB — main.css
   Page-level component styles
═══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   HOMEPAGE — HERO
══════════════════════════════════════════ */
.hero-section {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 5rem 0 4.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  letter-spacing: .04em;
}
.hero-kicker::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.hero-section h1 { margin-bottom: 1.1rem; }
.hero-section h1 em { color: var(--green); }
.hero-lead {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 2.25rem; }
.hero-trust    { display: flex; flex-direction: column; gap: 8px; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-3);
}
.hero-trust-item svg {
  width: 14px; height: 14px;
  stroke: var(--green); fill: none;
  stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.hero-visual { display: flex; flex-direction: column; gap: 12px; }
.hero-screen {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--rule);
  background: var(--white);
}
.hero-screen .screenshot { min-height: 260px; border-radius: 0; border: none; }

/* ══════════════════════════════════════════
   HOMEPAGE — INTRO STATS
══════════════════════════════════════════ */
.stats-band {
  background: var(--green);
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item { padding: .5rem; }
.stat-number {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--white);
  display: block;
  margin-bottom: .2rem;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════════
   HOMEPAGE — PRODUCT OVERVIEW
══════════════════════════════════════════ */
.products-preview { background: var(--surface); }
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.prod-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 1.1rem;
  transition: border-color .15s, box-shadow .15s;
  display: flex;
  flex-direction: column;
}
.prod-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.prod-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: .75rem;
}
.prod-name  { font-size: 13.5px; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.prod-desc  { font-size: 12px; color: var(--ink-3); line-height: 1.55; flex: 1; margin-bottom: .75rem; }
.prod-price { font-size: 14px; font-weight: 500; color: var(--green); margin-top: auto; }
.prod-price-note { font-size: 11px; color: var(--ink-3); font-weight: 400; }

/* ══════════════════════════════════════════
   HOMEPAGE — SCREENSHOTS GALLERY
══════════════════════════════════════════ */
.screens-section { background: var(--white); }
.screens-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.screen-item { display: flex; flex-direction: column; gap: .75rem; }
.screen-item .screenshot { min-height: 200px; }
.screen-caption { font-size: 13px; color: var(--ink-2); }
.screen-caption strong { display: block; font-size: 14px; color: var(--ink); margin-bottom: 2px; }

/* ══════════════════════════════════════════
   HOMEPAGE — HOW IT WORKS
══════════════════════════════════════════ */
.how-section { background: var(--surface); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: var(--rule);
}
.how-step { text-align: center; padding: 0 .5rem; }
.how-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--green);
  position: relative;
  z-index: 1;
}
.how-title { font-size: 13.5px; font-weight: 500; color: var(--ink); margin-bottom: .4rem; }
.how-desc  { font-size: 12.5px; color: var(--ink-3); line-height: 1.55; }

/* ══════════════════════════════════════════
   HOMEPAGE — PRICING OVERVIEW
══════════════════════════════════════════ */
.pricing-section { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pricing-card {
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  background: var(--green);
  border-color: var(--green);
}
.pricing-num {
  font-family: var(--serif);
  font-size: 2.25rem;
  color: var(--green);
  margin-bottom: .15rem;
}
.pricing-card.featured .pricing-num { color: rgba(255,255,255,.35); }
.pricing-tier  { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: .3rem; }
.pricing-card.featured .pricing-tier  { color: var(--white); }
.pricing-desc  { font-size: 13px; color: var(--ink-3); margin-bottom: 1.25rem; line-height: 1.55; }
.pricing-card.featured .pricing-desc  { color: rgba(255,255,255,.55); }
.pricing-items { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.5rem; flex: 1; }
.pricing-items li {
  font-size: 13px;
  color: var(--ink-2);
  display: flex; gap: 7px; align-items: flex-start;
}
.pricing-card.featured .pricing-items li { color: rgba(255,255,255,.75); }
.pricing-items li::before { content: '✓'; color: var(--green); font-weight: 500; flex-shrink: 0; }
.pricing-card.featured .pricing-items li::before { color: rgba(255,255,255,.5); }
.pricing-price { font-size: 1.375rem; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-price-note { font-size: 11.5px; color: var(--ink-3); margin-bottom: 1rem; }
.pricing-card.featured .pricing-price-note { color: rgba(255,255,255,.4); }
.pricing-link { font-size: 13px; color: var(--green); margin-top: .5rem; display: inline-block; }
.pricing-card.featured .pricing-link { color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════════
   HOMEPAGE — TRUST SECTION
══════════════════════════════════════════ */
.trust-section { background: var(--surface); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 1.25rem;
}
.trust-card .ico { margin-bottom: .75rem; }
.trust-title { font-size: 13.5px; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.trust-desc  { font-size: 12.5px; color: var(--ink-3); line-height: 1.6; }

/* ══════════════════════════════════════════
   HERO IMAGE
══════════════════════════════════════════ */
.hero-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--green-light);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--r-xl);
}
/* Placeholder shown until real photo is added */
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-light) 0%, #d0ecef 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: var(--r-xl);
  border: 2px dashed var(--green-rule);
  padding: 2rem;
  text-align: center;
}
.hero-img-placeholder p {
  font-size: 12.5px;
  color: var(--green);
  opacity: .7;
  max-width: 220px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   PRODUCT CARD ILLUSTRATIONS
══════════════════════════════════════════ */
.prod-illus {
  width: 48px;
  height: 48px;
  margin-bottom: .85rem;
  display: block;
}

/* ══════════════════════════════════════════
   TRUST CARD ILLUSTRATIONS
══════════════════════════════════════════ */
.trust-illus {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  display: block;
}

/* ══════════════════════════════════════════
   MISSION BAND IMAGE
══════════════════════════════════════════ */
.mission-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.mission-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.mission-img-placeholder {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, var(--green-light) 0%, #d0ecef 100%);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 2px dashed var(--green-rule);
}
.mission-img-placeholder p {
  font-size: 12px;
  color: var(--green);
  opacity: .6;
  text-align: center;
  padding: 1rem;
  line-height: 1.5;
}

.mission-band {
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 3.5rem 0;
}
.mission-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.mission-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.mission-title {
  font-family: var(--serif);
  font-size: 1.625rem;
  color: var(--ink);
  margin-bottom: .85rem;
  letter-spacing: -.25px;
  line-height: 1.25;
}
.mission-body {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.mission-body + .mission-body { margin-top: -.5rem; }
.mission-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--green);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--green-light);
  padding-bottom: 1px;
  transition: border-color .15s;
}
.mission-link:hover {
  border-color: var(--green);
  text-decoration: none;
}
.mission-link svg {
  width: 14px; height: 14px;
  stroke: var(--green); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .15s;
}
.mission-link:hover svg { transform: translateX(2px); }
.mission-visual {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 1.75rem;
}
.mission-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.mission-stat {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: .85rem 1rem;
}
.mission-stat-number {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--green);
  display: block;
  margin-bottom: 2px;
  line-height: 1;
}
.mission-stat-label {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.4;
}
.mission-quote {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
  font-style: italic;
  border-left: 3px solid var(--green-light);
  padding-left: 1rem;
  margin: 0;
}
.mission-cic-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.mission-cic-badge svg {
  width: 12px; height: 12px;
  stroke: var(--green); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

@media (max-width: 768px) {
  .mission-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ══════════════════════════════════════════
   HOMEPAGE — CTA BAND
══════════════════════════════════════════ */
.cta-band {
  background: var(--ink);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: .75rem; }
.cta-band p  { color: rgba(255,255,255,.5); font-size: 15px; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   PRODUCTS PAGE
══════════════════════════════════════════ */
.products-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.product-full-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow .2s;
}
.product-full-card:hover { box-shadow: var(--shadow); }
.product-full-card .screenshot { min-height: 200px; border-radius: 0; border: none; border-bottom: 1px solid var(--rule); }
.product-full-body { padding: 1.4rem; }
.product-full-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .65rem; }
.product-full-name { font-size: 15px; font-weight: 500; color: var(--ink); }
.product-full-desc { font-size: 13.5px; color: var(--ink-2); line-height: 1.65; margin-bottom: .85rem; }
.product-full-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 1.1rem;
}
.product-full-features li {
  font-size: 12.5px;
  color: var(--ink-3);
  display: flex; gap: 5px;
}
.product-full-features li::before { content: '·'; color: var(--green); font-weight: 700; }
.product-full-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .85rem;
  border-top: 1px solid var(--rule);
}
.product-full-price { font-size: 1.25rem; font-weight: 500; color: var(--green); }
.product-full-price span { font-size: 12px; color: var(--ink-3); font-weight: 400; }

/* ══════════════════════════════════════════
   BUNDLES PAGE
══════════════════════════════════════════ */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.bundle-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.bundle-card.featured { border-color: var(--green); border-width: 2px; }
.bundle-best-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: .75rem;
}
.bundle-label { font-size: 11px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .35rem; }
.bundle-name  { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); margin-bottom: .4rem; }
.bundle-desc  { font-size: 13.5px; color: var(--ink-2); line-height: 1.65; margin-bottom: 1.25rem; }
.bundle-modules { list-style: none; display: flex; flex-direction: column; gap: 5px; margin-bottom: 1.25rem; }
.bundle-modules li { font-size: 13px; color: var(--ink-2); display: flex; gap: 7px; }
.bundle-modules li::before { content: '✓'; color: var(--green); font-weight: 500; }
.bundle-price { font-size: 1.5rem; font-weight: 500; color: var(--ink); }
.bundle-saving { font-size: 12.5px; color: var(--green); margin-top: 3px; margin-bottom: 1.25rem; }

/* Custom bundle enquiry box */
.custom-bundle {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.custom-bundle p { font-size: 14px; color: var(--ink-2); max-width: 480px; line-height: 1.65; }

/* ══════════════════════════════════════════
   SQL UPGRADE PAGE
══════════════════════════════════════════ */
.upgrade-path {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.upgrade-step {
  padding: 1.5rem;
  border-right: 1px solid var(--rule);
  position: relative;
}
.upgrade-step:last-child { border-right: none; }
.upgrade-step-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: .25rem;
  line-height: 1;
}
.upgrade-step-title { font-size: 13.5px; font-weight: 500; color: var(--ink); margin-bottom: .35rem; }
.upgrade-step-desc  { font-size: 12.5px; color: var(--ink-3); line-height: 1.6; }

.sql-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 1.5rem;
}
.sql-plan-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 1.25rem;
}
.sql-plan-name   { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.sql-plan-mods   { font-size: 12px; color: var(--ink-3); margin-bottom: .85rem; }
.sql-plan-price  { font-size: 1.375rem; font-weight: 500; color: var(--green); }
.sql-plan-period { font-size: 12px; color: var(--ink-3); font-weight: 400; }
.sql-plan-setup  { font-size: 12px; color: var(--ink-3); margin-top: 5px; }
.sql-plan-annual { font-size: 12px; color: var(--green); margin-top: 3px; }

.sql-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 2rem;
}
.sql-feature {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 1.1rem;
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}
.sql-feature-text h4  { font-size: 13.5px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.sql-feature-text p   { font-size: 12.5px; color: var(--ink-3); line-height: 1.55; }

/* ══════════════════════════════════════════
   GETTING STARTED PAGE
══════════════════════════════════════════ */
.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 1.25rem;
}
.req-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 1.15rem;
}
.req-head  { display: flex; align-items: center; gap: .65rem; margin-bottom: .65rem; }
.req-label { font-size: 13.5px; font-weight: 500; color: var(--ink); }
.req-body  { font-size: 13px; color: var(--ink-2); line-height: 1.65; }
.req-note  { font-size: 12px; color: var(--ink-3); margin-top: .5rem; }

/* Install steps */
.steps-wrap {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}
.step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-title { font-size: 13.5px; font-weight: 500; color: var(--ink); margin-bottom: 4px; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.step-body  { font-size: 13px; color: var(--ink-2); line-height: 1.65; }
.step-body a { color: var(--green); }

/* Folder diagram */
.folder-diagram {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  font-size: 13px;
  margin: .85rem 0 0;
  font-family: monospace;
}
.folder-row { display: flex; align-items: center; gap: .6rem; padding: .3rem 0; color: var(--ink-2); }
.folder-row.head { color: var(--ink); font-weight: 500; }
.folder-row.i1  { padding-left: 1.25rem; }
.folder-row.i2  { padding-left: 2.5rem; }
.folder-row svg { width: 14px; height: 14px; flex-shrink: 0; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.folder-note { font-size: 11px; color: var(--ink-3); margin-left: .35rem; font-family: var(--sans); }

/* Registration form */
.reg-box {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.reg-title { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); margin-bottom: .4rem; }
.reg-sub   { font-size: 13.5px; color: var(--ink-2); line-height: 1.7; margin-bottom: 1.1rem; }
.reg-benefits { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.reg-benefits li { font-size: 13px; color: var(--ink-2); display: flex; gap: 7px; }
.reg-benefits li::before { content: '✓'; color: var(--green); font-weight: 500; flex-shrink: 0; }
.reg-privacy { font-size: 12px; color: var(--ink-3); margin-top: 1rem; line-height: 1.6; }

.reg-form { display: flex; flex-direction: column; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 12.5px; color: var(--ink-2); font-weight: 500; }
.form-group input,
.form-group select {
  padding: 9px 11px;
  border: 1px solid var(--rule);
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--surface);
  transition: border-color .12s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
.form-submit {
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--r);
  padding: 11px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s;
  width: 100%;
  margin-top: 4px;
}
.form-submit:hover { background: var(--green-mid); }
.form-note { font-size: 12px; color: var(--ink-3); line-height: 1.55; }

/* Install service */
.install-service {
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}
.svc-kicker { font-size: 11px; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: .4rem; }
.svc-title  { font-family: var(--serif); font-size: 1.5rem; color: var(--white); margin-bottom: .5rem; }
.svc-desc   { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 460px; }
.svc-list   { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-top: 1rem; }
.svc-list li { font-size: 13px; color: rgba(255,255,255,.6); display: flex; gap: 7px; }
.svc-list li::before { content: '✓'; color: rgba(255,255,255,.35); flex-shrink: 0; }
.svc-plans  { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 1.25rem; min-width: 220px; }
.svc-plan   { padding: .65rem 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.svc-plan:last-child { border-bottom: none; }
.svc-plan-name  { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.8); }
.svc-plan-note  { font-size: 11.5px; color: rgba(255,255,255,.3); margin-top: 1px; }
.svc-plan-price { font-size: 1.125rem; font-weight: 500; color: var(--white); margin-top: 4px; }
.svc-cta { display: block; width: 100%; text-align: center; background: var(--white); color: var(--ink); padding: 10px; border-radius: var(--r); font-size: 14px; font-weight: 500; margin-top: 1.1rem; border: none; cursor: pointer; text-decoration: none; }
.svc-cta:hover { background: var(--surface); text-decoration: none; color: var(--ink); }

/* ══════════════════════════════════════════
   SUPPORT PAGE
══════════════════════════════════════════ */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.support-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 1.75rem;
}
.support-card .ico { margin-bottom: .85rem; }
.support-card h3 { font-size: 1rem; font-weight: 500; color: var(--ink); margin-bottom: .4rem; font-family: var(--sans); }
.support-card p  { font-size: 13.5px; color: var(--ink-2); line-height: 1.65; margin-bottom: 1.1rem; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
  user-select: none;
}
.faq-q::after { content: '+'; color: var(--green); font-size: 18px; flex-shrink: 0; }
details[open] .faq-q::after { content: '−'; }
.faq-a { font-size: 13.5px; color: var(--ink-2); line-height: 1.7; padding-bottom: 1rem; }

/* ══════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .prod-grid      { grid-template-columns: repeat(2, 1fr); }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .how-steps      { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
  .pricing-grid   { grid-template-columns: 1fr; gap: 10px; }
  .trust-grid     { grid-template-columns: repeat(2, 1fr); }
  .upgrade-path   { grid-template-columns: repeat(2, 1fr); }
  .sql-plans-grid { grid-template-columns: repeat(2, 1fr); }
  .sql-features-grid { grid-template-columns: 1fr; }
  .bundle-grid    { grid-template-columns: 1fr; }
  .products-full-grid { grid-template-columns: 1fr; }
  .install-service { grid-template-columns: 1fr; }
  .svc-plans { min-width: auto; }
  .screens-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .prod-grid   { grid-template-columns: 1fr; }
  .trust-grid  { grid-template-columns: 1fr; }
  .req-grid    { grid-template-columns: 1fr; }
  .reg-box     { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .upgrade-path { grid-template-columns: 1fr; }
  .upgrade-step { border-right: none; border-bottom: 1px solid var(--rule); }
  .upgrade-step:last-child { border-bottom: none; }
  .sql-plans-grid { grid-template-columns: 1fr 1fr; }
  .product-full-features { grid-template-columns: 1fr; }
}
