/* ═══════════════════════════════════════════
   Total Payment Solutions — Shared Stylesheet
   Version 1.0 | March 2026
════════════════════════════════════════════ */

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

:root {
  --green:       #5fa827;
  --green-dark:  #4d8b1c;
  --green-glow:  #8fd64e;
  --orange:      #E87722;
  --orange-dark: #c9661a;

  --bg:          #0d1b2a;
  --bg-alt:      #0a1520;
  --bg-card:     #112236;
  --bg-card2:    #0f1e30;
  --border:      rgba(255,255,255,0.08);
  --border-green: rgba(95,168,39,0.3);

  --text:        #e8edf2;
  --text-muted:  rgba(232,237,242,0.6);
  --text-dim:    rgba(232,237,242,0.38);
  --white:       #ffffff;
}

body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
a { color: var(--green-glow); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── BUTTONS ── */
.btn-orange {
  display: inline-block; background: var(--orange); color: #fff;
  padding: 14px 30px; border-radius: 4px; font-weight: 700;
  font-size: 1rem; letter-spacing: .3px; border: none; cursor: pointer;
  transition: background .2s;
}
.btn-orange:hover { background: var(--orange-dark); text-decoration: none; color: #fff; }

.btn-outline {
  display: inline-block; border: 2px solid rgba(255,255,255,.5); color: #fff;
  padding: 12px 28px; border-radius: 4px; font-weight: 600;
  font-size: 1rem; transition: all .2s; cursor: pointer;
}
.btn-outline:hover { background: rgba(255,255,255,.1); text-decoration: none; color: #fff; border-color: #fff; }

.btn-green {
  display: inline-block; background: var(--green); color: #fff;
  padding: 14px 30px; border-radius: 4px; font-weight: 700;
  font-size: 1rem; border: none; cursor: pointer; transition: background .2s;
}
.btn-green:hover { background: var(--green-dark); text-decoration: none; color: #fff; }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 999;
  background: rgba(13,27,42,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.header-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 64px; width: auto; display: block; }
nav { display: flex; gap: 28px; align-items: center; }
nav a { color: var(--text-muted); font-weight: 500; font-size: .93rem; transition: color .2s; }
nav a:hover { color: var(--green-glow); text-decoration: none; }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone { font-weight: 700; color: var(--text); font-size: .95rem; }
.header-phone span { color: var(--green-glow); }
/* ── NAV DROPDOWNS ── */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-drop-btn {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-weight: 500; font-size: .93rem;
  transition: color .2s; display: flex; align-items: center; gap: 3px;
  padding: 0; font-family: 'Segoe UI', Arial, sans-serif; line-height: 1;
}
.nav-drop-btn:hover,
.nav-dropdown.open .nav-drop-btn { color: var(--green-glow); }
.nav-drop-menu {
  display: none; position: absolute; top: calc(100% + 18px); left: 50%;
  transform: translateX(-50%);
  background: #0f1e30; border: 1px solid rgba(95,168,39,0.3);
  border-radius: 8px; min-width: 230px;
  box-shadow: 0 12px 40px rgba(0,0,0,.6);
  z-index: 1001; overflow: hidden;
}
.nav-dropdown.open .nav-drop-menu { display: block; animation: dropFadeIn .15s ease; }
@keyframes dropFadeIn { from { opacity:0; transform:translateX(-50%) translateY(-6px); } to { opacity:1; transform:translateX(-50%) translateY(0); } }
.nav-drop-menu a {
  display: block; padding: 11px 20px;
  color: rgba(232,237,242,0.75); font-size: .9rem; font-weight: 500;
  transition: background .15s, color .15s;
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-decoration: none;
}
.nav-drop-menu a:last-child { border-bottom: none; }
.nav-drop-menu a:hover { background: rgba(95,168,39,0.12); color: var(--green-glow); }
@media (max-width: 900px) {
  .nav-drop-menu { left: 0; transform: none; min-width: 200px; }
}


/* ── TRUST BAR ── */
.trust-bar { background: rgba(6,14,24,0.95); padding: 20px 24px; border-bottom: 1px solid var(--border); }
.trust-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.trust-item { display: flex; align-items: center; gap: 9px; color: var(--text-muted); }
.trust-item .icon { font-size: 1.3rem; }
.trust-item span { font-size: .82rem; font-weight: 600; letter-spacing: .3px; }

/* ── HERO (standard page hero — not split) ── */
.page-hero {
  background: linear-gradient(135deg, #060e18 0%, #0d1b2a 55%, #0d2118 100%);
  padding: 72px 24px 64px; position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(95,168,39,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero::after {
  content: ''; position: absolute; left: -80px; bottom: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(232,119,34,.07) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero-inner { max-width: 820px; margin: 0 auto; position: relative; }
.page-hero .hero-badge {
  display: inline-block; background: rgba(95,168,39,.18); color: var(--green-glow);
  border: 1px solid rgba(95,168,39,.4);
  padding: 5px 14px; border-radius: 20px; font-size: .8rem;
  font-weight: 600; letter-spacing: .5px; margin-bottom: 18px; text-transform: uppercase;
}
.page-hero h1 {
  font-size: 2.75rem; font-weight: 900; color: #fff; line-height: 1.15;
  margin-bottom: 18px; letter-spacing: -.5px;
}
.page-hero h1 span { color: var(--green-glow); }
.page-hero .hero-sub {
  font-size: 1.12rem; color: rgba(255,255,255,.78); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center; }

/* ── SPLIT HERO (left text, right form) ── */
.hero {
  background: linear-gradient(135deg, #060e18 0%, #0d1b2a 55%, #0d2118 100%);
  padding: 80px 24px 70px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(95,168,39,.13) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; left: -80px; bottom: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(232,119,34,.07) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1180px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center;
}
.hero-badge {
  display: inline-block; background: rgba(95,168,39,.18); color: var(--green-glow);
  border: 1px solid rgba(95,168,39,.4);
  padding: 5px 14px; border-radius: 20px; font-size: .8rem;
  font-weight: 600; letter-spacing: .5px; margin-bottom: 18px; text-transform: uppercase;
}
.hero h1 {
  font-size: 2.75rem; font-weight: 900; color: #fff; line-height: 1.15;
  margin-bottom: 18px; letter-spacing: -.5px;
}
.hero h1 span { color: var(--green-glow); }
.hero-sub {
  font-size: 1.12rem; color: rgba(255,255,255,.78); margin-bottom: 28px; max-width: 540px;
}
.hero-guarantee {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: 12px 18px; max-width: 480px;
}
.hero-guarantee .shield-icon { font-size: 1.6rem; }
.hero-guarantee p { color: rgba(255,255,255,.85); font-size: .88rem; }
.hero-guarantee strong { color: var(--green-glow); }

/* ── HERO FORM CARD ── */
.hero-form-card {
  background: rgba(17,34,54,0.92);
  border: 1px solid rgba(95,168,39,.25);
  border-radius: 12px; padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
}
.hero-form-card h3 {
  font-size: 1.18rem; font-weight: 800; color: #fff;
  margin-bottom: 4px; text-align: center;
}
.hero-form-card p { font-size: .82rem; color: var(--text-muted); text-align: center; margin-bottom: 20px; }
.form-row { margin-bottom: 12px; }
.form-row input, .form-row select {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 5px; font-size: .92rem; color: #fff;
  transition: border-color .2s;
}
.form-row input::placeholder { color: rgba(255,255,255,.4); }
.form-row input:focus, .form-row select:focus {
  outline: none; border-color: var(--green);
  background: rgba(255,255,255,.1);
}
.form-row select { color: rgba(255,255,255,.65); }
.form-row select option { color: #333; background: #fff; }
.form-submit {
  width: 100%; padding: 14px; background: var(--orange); color: #fff;
  border: none; border-radius: 5px; font-size: 1rem; font-weight: 800;
  cursor: pointer; transition: background .2s; letter-spacing: .3px;
  margin-top: 4px;
}
.form-submit:hover { background: var(--orange-dark); }
.form-fine { font-size: .74rem; color: var(--text-dim); text-align: center; margin-top: 8px; }

/* ── SECTIONS ── */
.section { padding: 72px 24px; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg); }
.container { max-width: 1180px; margin: 0 auto; }
.section-label {
  text-align: center; color: var(--green-glow); font-weight: 700;
  font-size: .82rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px;
}
.section-title {
  text-align: center; font-size: 2rem; font-weight: 800;
  color: #fff; margin-bottom: 14px; line-height: 1.25;
}
.section-sub {
  text-align: center; color: var(--text-muted); font-size: 1rem;
  max-width: 580px; margin: 0 auto 48px;
}

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step {
  text-align: center; padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  border-top: 4px solid var(--green);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; background: var(--green); color: #fff;
  font-size: 1.3rem; font-weight: 900; border-radius: 50%; margin-bottom: 16px;
}
.step h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--text-muted); }

/* ── BENEFITS / FEATURES GRID ── */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  background: var(--bg-card); border-radius: 10px; padding: 28px 24px;
  border: 1px solid var(--border); box-shadow: 0 3px 20px rgba(0,0,0,.3);
}
.benefit-icon { font-size: 2rem; margin-bottom: 12px; }
.benefit-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.benefit-card p { font-size: .87rem; color: var(--text-muted); }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--bg-card); border-radius: 10px; padding: 28px 24px;
  border: 1px solid var(--border); box-shadow: 0 3px 20px rgba(0,0,0,.3);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  border-bottom: 3px solid transparent;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.4); border-bottom-color: var(--green); }
.service-icon { font-size: 2rem; margin-bottom: 12px; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.service-card p { font-size: .87rem; color: var(--text-muted); margin-bottom: 14px; }
.service-link { font-size: .85rem; font-weight: 600; color: var(--green-glow); }
.service-card.featured {
  background: linear-gradient(135deg, #2a5a0a, #1a3a06);
  border: 1px solid rgba(95,168,39,.4); border-bottom: 3px solid var(--green-glow);
}
.service-card.featured h3, .service-card.featured p { color: #fff; }

/* ── TWO-COL LAYOUT ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── CALLOUT BLOCK ── */
.callout-block {
  background: linear-gradient(135deg, #2a5a0a 0%, #1a3a06 100%);
  border-radius: 12px; padding: 40px 48px;
  border: 1px solid rgba(95,168,39,.35);
  text-align: center;
}
.callout-block h2 { font-size: 2rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.callout-block p { color: rgba(255,255,255,.82); font-size: 1.05rem; margin-bottom: 24px; }

/* ── GUARANTEE BAND ── */
.guarantee-band {
  background: linear-gradient(135deg, #2a5a0a 0%, #1a3a06 100%);
  padding: 48px 24px; text-align: center;
  border-top: 1px solid rgba(95,168,39,.3);
  border-bottom: 1px solid rgba(95,168,39,.3);
}
.guarantee-band h2 { font-size: 2.1rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.guarantee-band p { color: rgba(255,255,255,.82); font-size: 1.05rem; margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
.guarantee-points { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 28px; }
.g-point { display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; font-size: .95rem; }
.g-point::before { content: '✓'; font-size: 1.1rem; color: var(--green-glow); font-weight: 900; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card); border-radius: 8px; margin-bottom: 12px;
  border: 1px solid var(--border); overflow: hidden;
}
.faq-q {
  padding: 18px 24px; font-weight: 700; color: #fff; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .97rem;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--green-glow); font-weight: 400; }
.faq-a { padding: 0 24px 18px; color: var(--text-muted); font-size: .92rem; line-height: 1.7; }

/* ── COMPARISON TABLE ── */
.compare-table { width: 100%; border-collapse: collapse; border-radius: 10px; overflow: hidden; }
.compare-table th {
  background: var(--bg-card); color: #fff; padding: 16px 20px;
  text-align: left; font-size: .88rem; letter-spacing: .3px; border-bottom: 2px solid var(--green);
}
.compare-table th.tps-col { color: var(--green-glow); }
.compare-table td {
  padding: 14px 20px; font-size: .9rem; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.compare-table .tps-col { color: var(--green-glow); font-weight: 700; }
.compare-table .check { color: var(--green-glow); font-weight: 800; }
.compare-table .cross { color: #e05252; }

/* ── STATS ROW ── */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,.35);
  border: 1px solid var(--border);
}
.stat-item {
  background: var(--bg-card); padding: 32px 24px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.2rem; font-weight: 900; color: var(--green-glow); }
.stat-label { font-size: .85rem; color: var(--text-muted); margin-top: 4px; }

/* ── TESTIMONIALS ── */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.testimonial {
  background: var(--bg-card); border-radius: 10px; padding: 28px 24px;
  border: 1px solid var(--border); box-shadow: 0 3px 20px rgba(0,0,0,.3); position: relative;
}
.testimonial::before {
  content: '"'; position: absolute; top: 14px; left: 20px;
  font-size: 4rem; color: var(--green); opacity: .25; line-height: 1; font-family: Georgia, serif;
}
.testimonial-text { font-size: .92rem; color: var(--text-muted); font-style: italic; margin-bottom: 16px; padding-top: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg-alt); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.author-name { font-weight: 700; font-size: .88rem; color: #fff; }
.author-biz  { font-size: .78rem; color: var(--text-dim); }
.stars { color: #f5a623; font-size: .85rem; }

/* ── LEAD FORM SECTION ── */
.lead-section { background: var(--bg-alt); padding: 72px 24px; border-top: 1px solid var(--border); }
.lead-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.lead-inner h2 { font-size: 2rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.lead-inner p  { color: var(--text-muted); margin-bottom: 36px; }
.lead-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; text-align: left;
}
.lead-form-grid .full { grid-column: 1 / -1; }
.lead-form-grid input,
.lead-form-grid select {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 5px; font-size: .93rem; color: #fff; transition: border-color .2s;
}
.lead-form-grid input::placeholder { color: rgba(255,255,255,.4); }
.lead-form-grid select { color: rgba(255,255,255,.6); }
.lead-form-grid select option { color: #333; background: #fff; }
.lead-form-grid input:focus,
.lead-form-grid select:focus { outline: none; border-color: var(--green); background: rgba(255,255,255,.1); }
.lead-submit {
  grid-column: 1 / -1; width: 100%; padding: 16px;
  background: var(--orange); color: #fff; border: none;
  border-radius: 5px; font-size: 1.08rem; font-weight: 800;
  cursor: pointer; transition: background .2s; letter-spacing: .3px;
}
.lead-submit:hover { background: var(--orange-dark); }
.lead-fine { font-size: .77rem; color: var(--text-dim); margin-top: 12px; }

/* ── CLOVER BAND ── */
.clover-band {
  background: var(--bg-card2); padding: 48px 24px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.clover-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.clover-text h2 { font-size: 1.7rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.clover-text p  { font-size: .95rem; color: var(--text-muted); max-width: 500px; }
.clover-badges { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.clover-badge {
  background: rgba(255,255,255,.06); border: 1.5px solid var(--border-green); border-radius: 8px;
  padding: 10px 18px; font-size: .82rem; font-weight: 600;
  color: var(--text); display: flex; align-items: center; gap: 6px;
}

/* ── PRODUCT CARDS (POS models etc) ── */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: var(--bg-card); border-radius: 10px; padding: 28px 20px;
  border: 1px solid var(--border); text-align: center;
  transition: border-color .2s, transform .2s;
}
.product-card:hover { border-color: var(--border-green); transform: translateY(-3px); }
.product-card .product-icon { font-size: 2.8rem; margin-bottom: 14px; }
.product-card h3 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.product-card .product-tag {
  display: inline-block; background: rgba(95,168,39,.15); color: var(--green-glow);
  border: 1px solid rgba(95,168,39,.3); border-radius: 20px;
  font-size: .74rem; font-weight: 600; padding: 3px 10px; margin-bottom: 10px;
}
.product-card p { font-size: .84rem; color: var(--text-muted); }

/* ── INDUSTRIES GRID ── */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry-card {
  background: var(--bg-card); border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 3px 20px rgba(0,0,0,.3);
  transition: transform .2s, border-color .2s;
}
.industry-card:hover { transform: translateY(-4px); border-color: rgba(95,168,39,.35); }
.industry-thumb {
  height: 100px; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center; font-size: 2.6rem;
}
.industry-body { padding: 16px; }
.industry-body h4 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.industry-body p  { font-size: .8rem; color: var(--text-muted); margin-bottom: 8px; }
.industry-body a  { font-size: .8rem; font-weight: 600; color: var(--green-glow); }

/* ── INFO BOX ── */
.info-box {
  background: var(--bg-card); border-radius: 10px; padding: 28px 32px;
  border: 1px solid var(--border-green); margin: 32px 0;
}
.info-box h4 { color: var(--green-glow); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.info-box p { font-size: .92rem; color: var(--text-muted); }

/* ── ORANGE CALLOUT BAND ── */
.orange-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 40px 24px; text-align: center;
}
.orange-band h2 { font-size: 1.9rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.orange-band p { color: rgba(255,255,255,.88); margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--bg-alt); padding: 12px 24px; border-bottom: 1px solid var(--border);
}
.breadcrumb-inner { max-width: 1180px; margin: 0 auto; font-size: .82rem; color: var(--text-dim); }
.breadcrumb-inner a { color: var(--text-dim); }
.breadcrumb-inner a:hover { color: var(--green-glow); }
.breadcrumb-inner span { margin: 0 6px; }

/* ── FOOTER ── */
footer { background: #060e16; padding: 56px 24px 0; border-top: 1px solid var(--border); }
.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .footer-logo { font-size: 1.6rem; font-weight: 900; color: var(--green-glow); margin-bottom: 8px; }
.footer-tagline { font-size: .84rem; color: rgba(255,255,255,.45); margin-bottom: 16px; max-width: 260px; line-height: 1.5; }
.footer-contact p { font-size: .84rem; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.footer-contact a { color: rgba(255,255,255,.6); }
.footer-contact strong { color: #fff; }
.footer-col h4 { font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .84rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: var(--green-glow); text-decoration: none; }
.footer-bottom {
  max-width: 1180px; margin: 0 auto;
  padding: 20px 0; display: flex;
  justify-content: space-between; align-items: flex-start;
  gap: 16px; flex-wrap: wrap;
}
.footer-legal { font-size: .74rem; color: rgba(255,255,255,.3); max-width: 600px; line-height: 1.5; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { display: none; }
  .steps, .benefits-grid, .services-grid, .testimonials { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .page-hero h1, .hero h1 { font-size: 2rem; }
}
/* ── HAMBURGER ── */
.hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  padding: 7px 13px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 12px;
}
.hamburger:hover { border-color: var(--green-glow); color: var(--green-glow); }

@media (max-width: 600px) {
  .steps, .benefits-grid, .services-grid, .testimonials, .industries-grid, .product-grid, .stats-row { grid-template-columns: 1fr; }
  .lead-form-grid { grid-template-columns: 1fr; }
  .lead-form-grid .full { grid-column: 1; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f1e30;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
    gap: 0;
    z-index: 998;
  }
  nav.mobile-open { display: flex; }
  nav a { padding: 12px 20px; width: 100%; border-bottom: 1px solid rgba(255,255,255,.05); font-size: 1rem; }
  .nav-dropdown { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-drop-btn { padding: 12px 20px; width: 100%; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,.05); }
  .nav-drop-menu {
    position: static !important;
    transform: none !important;
    min-width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.05);
    box-shadow: none;
    background: rgba(255,255,255,.04);
  }
  .nav-drop-menu a { padding-left: 36px; }
  .header-right .header-phone { display: none; }
  .hamburger { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero h1, .hero h1 { font-size: 1.7rem; }
  .guarantee-points { flex-direction: column; gap: 12px; }
}

/* ── Page Feature Image ───────────────────────────────────────────── */
.page-feature-img {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  max-height: 420px;
}
.page-feature-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 768px) {
  .page-feature-img img { height: 220px; }
}
/* Remove excess top padding on .hero when a page feature image precedes it */
/* The 80px was originally for sticky-header offset — not needed with image above */
.page-feature-img ~ .hero {
  padding-top: 40px;
}

/* ══════════════════════════════════════════════════════════════
   INDUSTRY & SERVICE PAGE COMPONENTS
   Classes used across industry/service pages — added March 2026
══════════════════════════════════════════════════════════════ */

/* ── Section background helpers ─────────────────────────── */
.section-white {
  background: #fff; padding: 72px 24px;
}
.section-white h2, .section-white h3 { color: #0d1b2a; }
.section-white p, .section-white li { color: #3a4a5c; }

.section-gray {
  background: #f4f6f9; padding: 72px 24px;
}
.section-gray h2, .section-gray h3 { color: #0d1b2a; }
.section-gray p, .section-gray li { color: #3a4a5c; }

.section-white h2, .section-gray h2 {
  font-size: 1.9rem; font-weight: 800; margin-bottom: 12px; text-align: center;
}
.section-white .section-lead, .section-gray .section-lead {
  text-align: center; max-width: 700px; margin: 0 auto 40px; font-size: 1rem;
}

/* ── Section typography helpers ─────────────────────────── */
.section-intro {
  text-align: center; color: var(--text-muted); font-size: 1rem;
  max-width: 650px; margin: 0 auto 40px; line-height: 1.7;
}
.section-lead {
  color: var(--text-muted); font-size: 1rem; line-height: 1.7;
  max-width: 700px; margin: 0 auto 36px; text-align: center;
}
.section-cta { text-align: center; margin-top: 36px; }

/* ── Hero Split (2-column hero with form on right) ───────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 56px;
}
.hero-left { display: flex; flex-direction: column; gap: 20px; }
.hero-left .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(95,168,39,.15); color: var(--green-glow);
  border: 1px solid var(--border-green); border-radius: 20px;
  padding: 6px 16px; font-size: .82rem; font-weight: 700;
  letter-spacing: .3px; width: fit-content;
}
.hero-left h1 {
  font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1.2;
}
.hero-left h1 span { color: var(--green-glow); }
.hero-left .hero-sub {
  color: var(--text-muted); font-size: 1rem; line-height: 1.7; max-width: 520px;
}
.hero-left .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── Lead Form (form card inside hero-right) ─────────────── */
.lead-form {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-form h3 {
  font-size: 1.1rem; font-weight: 800; color: #fff;
  text-align: center; margin-bottom: 4px;
}
.lead-form input {
  width: 100%; padding: 12px 14px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 6px; font-size: .9rem; color: #fff;
  transition: border-color .2s;
}
.lead-form input::placeholder { color: rgba(255,255,255,.38); }
.lead-form input:focus {
  outline: none; border-color: var(--green);
  background: rgba(255,255,255,.09);
}
.lead-form .btn-orange {
  width: 100%; text-align: center; padding: 14px; font-size: .95rem;
  border-radius: 6px; border: none; cursor: pointer;
}
.lead-form p.form-fine {
  font-size: .73rem; color: var(--text-dim); text-align: center; margin-top: 2px;
}

/* ── Content sections (named) ────────────────────────────── */
.margin-math,
.what-you-get,
.equipment-spotlight,
.bar-nightclub,
.content-section {
  padding: 72px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.margin-math h2,
.what-you-get h2,
.equipment-spotlight h2,
.bar-nightclub h2,
.content-section h2 {
  font-size: 1.9rem; font-weight: 800; color: #fff;
  text-align: center; margin-bottom: 12px;
}

/* ── Comparison Cards ────────────────────────────────────── */
.comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.comparison-card {
  border-radius: 12px; padding: 32px 28px;
  border: 2px solid var(--border);
  background: var(--bg-card);
}
.comparison-card.old {
  border-color: rgba(220,60,60,.35);
  background: rgba(180,30,30,.08);
}
.comparison-card.new {
  border-color: var(--border-green);
  background: rgba(95,168,39,.08);
}
.comparison-card h3 {
  font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 12px;
}
.comparison-card.old h3 { color: #e88080; }
.comparison-card.new h3 { color: var(--green-glow); }
.comparison-number {
  font-size: 1.8rem; font-weight: 900; color: #fff; margin-bottom: 4px; line-height: 1.1;
}
.comparison-card.old .comparison-number { color: #e88080; }
.comparison-card.new .comparison-number { color: var(--green-glow); }
.comparison-desc { font-size: .85rem; color: var(--text-muted); margin-bottom: 16px; }
.comparison-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.comparison-list li {
  font-size: .88rem; color: var(--text-muted); padding-left: 18px; position: relative;
}
.comparison-card.old .comparison-list li::before { content: '✗'; position: absolute; left: 0; color: #e05252; font-weight: 900; }
.comparison-card.new .comparison-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green-glow); font-weight: 900; }

/* ── What You Get / Feature Grid ─────────────────────────── */
.what-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.what-card,
.card {
  background: var(--bg-card); border-radius: 10px; padding: 28px 24px;
  border: 1px solid var(--border); box-shadow: 0 3px 20px rgba(0,0,0,.3);
  transition: transform .2s, border-color .2s;
}
.what-card:hover, .card:hover {
  transform: translateY(-4px); border-color: var(--border-green);
}
.what-icon { font-size: 2rem; margin-bottom: 12px; }
.what-card h3, .card h3 {
  font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.what-card p, .card p { font-size: .87rem; color: var(--text-muted); line-height: 1.65; }

/* ── Equipment Grid ──────────────────────────────────────── */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.equipment-card {
  background: var(--bg-card); border-radius: 10px; padding: 28px 24px;
  border: 1px solid var(--border); box-shadow: 0 3px 20px rgba(0,0,0,.3);
  border-top: 4px solid var(--green);
}
.equipment-icon { font-size: 2rem; margin-bottom: 12px; }
.equipment-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.equipment-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 8px; }
.equipment-card strong { color: var(--green-glow); }

/* ── Bar / Nightclub Features ────────────────────────────── */
.bar-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.bar-feature {
  background: var(--bg-card); border-radius: 10px; padding: 24px 20px;
  border: 1px solid var(--border); border-left: 4px solid var(--orange);
}
.bar-feature h3 { font-size: .97rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.bar-feature p { font-size: .86rem; color: var(--text-muted); line-height: 1.65; }

/* ── Problem / Stat Cards ────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.problem-card {
  background: var(--bg-card); border-radius: 10px; padding: 24px 20px;
  border: 1px solid var(--border); text-align: center;
}
.problem-number {
  font-size: 1.8rem; font-weight: 900; color: var(--orange); margin-bottom: 6px;
}
.problem-label { font-size: .84rem; color: var(--text-muted); line-height: 1.5; }

/* ── Feature Grids (2-col and 3-col) ─────────────────────── */
.feature-grid-2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px;
}
.feature-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px;
}
.feature-card {
  background: var(--bg-card); border-radius: 10px; padding: 28px 24px;
  border: 1px solid var(--border); transition: transform .2s, border-color .2s;
}
.feature-card:hover { transform: translateY(-3px); border-color: var(--border-green); }
.feature-icon { font-size: 2rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feature-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.65; }

/* ── Testimonials Grid ───────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 36px;
}
.testimonial-card {
  background: var(--bg-card); border-radius: 10px; padding: 28px 24px;
  border: 1px solid var(--border); box-shadow: 0 3px 20px rgba(0,0,0,.3);
  position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 12px; left: 18px;
  font-size: 3.5rem; color: var(--green); opacity: .2; line-height: 1; font-family: Georgia, serif;
}
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px;
}
.testimonial-stars { color: #f5a623; font-size: .85rem; margin-bottom: 10px; }
.author-title { font-size: .78rem; color: var(--text-dim); }

/* ── FAQ (details/summary accordion) ────────────────────── */
.faq { padding: 72px 24px; }
.faq h2 {
  font-size: 1.9rem; font-weight: 800; color: #fff;
  text-align: center; margin-bottom: 36px;
}
.faq-container { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card); border-radius: 8px; margin-bottom: 10px;
  border: 1px solid var(--border); overflow: hidden;
}
.faq-item summary {
  padding: 18px 24px; font-weight: 700; color: #fff; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-size: .95rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--green-glow); font-weight: 300;
  min-width: 20px; text-align: right; transition: transform .2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 24px 18px; color: var(--text-muted);
  font-size: .91rem; line-height: 1.72;
}
.faq-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 1000px; margin: 0 auto;
}

/* ── Bottom CTA Section ──────────────────────────────────── */
.cta-final {
  background: linear-gradient(135deg, #060e18 0%, #0d1b2a 100%);
  padding: 72px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  max-width: 100%;
}
.cta-final h2 {
  font-size: 2rem; font-weight: 900; color: #fff; margin-bottom: 12px;
}
.cta-final > p {
  color: var(--text-muted); font-size: 1rem; max-width: 620px;
  margin: 0 auto 32px; line-height: 1.7;
}

/* ── Lead Form Bottom (CTA section form) ─────────────────── */
.lead-form-bottom {
  max-width: 680px; margin: 0 auto; display: flex;
  flex-direction: column; gap: 14px;
}
.form-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.form-grid input,
.lead-form-bottom input {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 6px; font-size: .91rem; color: #fff;
  transition: border-color .2s;
}
.form-grid input::placeholder,
.lead-form-bottom input::placeholder { color: rgba(255,255,255,.38); }
.form-grid input:focus,
.lead-form-bottom input:focus {
  outline: none; border-color: var(--green); background: rgba(255,255,255,.09);
}
.lead-form-bottom .btn-orange {
  width: 100%; text-align: center; padding: 15px;
  font-size: 1rem; border: none; border-radius: 6px; cursor: pointer;
}

/* ── Column layout helpers ───────────────────────────────── */
.two-column {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start;
}
.three-column {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.six-column {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}

/* ── Type / Retail type cards ────────────────────────────── */
.retail-types, .type-card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px;
}
.type-card {
  background: var(--bg-card); border-radius: 8px; padding: 20px 18px;
  border: 1px solid var(--border); font-size: .9rem;
  color: var(--text-muted); text-align: center;
}
.type-card strong { display: block; color: #fff; font-size: .97rem; margin-bottom: 4px; }

/* ── Stat (concessionaires style) ────────────────────────── */
.stat {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 20px; text-align: center;
}
.stat strong { font-size: 1.6rem; font-weight: 900; color: var(--green-glow); }
.stat span { font-size: .82rem; color: var(--text-muted); }

/* ── Info Box ────────────────────────────────────────────── */
.info-box {
  background: rgba(95,168,39,.1); border: 1px solid var(--border-green);
  border-radius: 8px; padding: 20px 24px; font-size: .9rem;
  color: var(--text-muted); line-height: 1.7;
}
.info-box strong { color: var(--green-glow); }

/* ── Background utilities ────────────────────────────────── */
.bg-light { background: rgba(255,255,255,.04); }
.bg-orange { background: rgba(232,119,34,.12); border: 1px solid rgba(232,119,34,.25); border-radius: 10px; }

/* ── Clover components ───────────────────────────────────── */
.clover-band {
  background: linear-gradient(135deg, #2a5a0a 0%, #1a3a06 100%);
  padding: 48px 24px;
  border-top: 1px solid rgba(95,168,39,.3);
  border-bottom: 1px solid rgba(95,168,39,.3);
}
.clover-inner { max-width: 1180px; margin: 0 auto; }
.clover-text h2 { font-size: 1.9rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.clover-text p { color: rgba(255,255,255,.8); font-size: .97rem; line-height: 1.7; }
.clover-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.clover-badge {
  background: rgba(255,255,255,.12); border-radius: 20px;
  padding: 6px 14px; font-size: .82rem; font-weight: 700; color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}

/* ── Responsive adjustments for industry components ──────── */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-right { display: none; } /* form on mobile hidden in hero — bottom form used */
  .comparison-cards { grid-template-columns: 1fr; max-width: 480px; }
  .what-grid, .equipment-grid, .three-column, .feature-grid-3,
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .bar-features-grid { grid-template-columns: 1fr 1fr; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .six-column { grid-template-columns: repeat(3, 1fr); }
  .retail-types { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-split { padding: 32px 16px 40px; }
  .hero-left h1 { font-size: 1.75rem; }
  .comparison-cards, .what-grid, .equipment-grid, .bar-features-grid,
  .three-column, .feature-grid-2, .feature-grid-3, .testimonials-grid,
  .testimonial-grid, .problem-grid, .two-column, .six-column,
  .retail-types { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
