/* Trust Payment Systems — site styles */

:root {
  --navy-900: #0b0c0d;
  --navy-800: #1b1c1e;
  --navy-700: #2c2b2b;
  --teal-500: #05dde2;
  --teal-600: #00aac1;
  --teal-100: #e0f7f9;
  --bg-light: #f4f7fa;
  --white: #ffffff;
  --text-dark: #16202c;
  --text-muted: #5c6b7a;
  --text-on-dark: #cdd9e5;
  --border: #e2e7ec;
  --danger: #d64545;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(10, 29, 48, 0.08);
  --max-width: 1160px;
  --font-head: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.55;
}

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

a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
}

p { margin: 0 0 16px; color: var(--text-muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-align: center;
}

.btn-accent {
  background: var(--teal-500);
  color: var(--navy-900);
}
.btn-accent:hover { background: var(--teal-600); color: var(--white); transform: translateY(-1px); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-outline {
  background: transparent;
  border-color: var(--teal-500);
  color: var(--teal-600);
}
.btn-outline:hover { background: var(--teal-100); }

.btn-block { width: 100%; padding: 16px; font-size: 16px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 76px;
}

.logo {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  margin-right: 4px;
}

.lang-toggle {
  display: flex;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  flex-shrink: 0;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text-on-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-btn.active {
  background: var(--teal-500);
  color: var(--navy-900);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  color: var(--text-on-dark);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.main-nav a:hover { color: var(--white); }

.nav-cta { margin-left: 12px; flex-shrink: 0; white-space: nowrap; }
.nav-cta-mobile { display: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
  margin-left: auto;
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    display: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-cta { display: none; }
  .main-nav .nav-cta-mobile { display: inline-flex; margin-top: 14px; }
  .menu-toggle { display: block; }
  .header-inner { flex-wrap: wrap; }
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 90px 0 70px;
  text-align: left;
}

.hero-inner { max-width: 780px; }

.eyebrow {
  display: inline-block;
  color: var(--teal-500);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.hero h1 {
  color: var(--white);
  font-size: 46px;
  margin-bottom: 18px;
}

.hero-sub {
  color: var(--white);
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 14px;
}

.hero-desc {
  color: var(--text-on-dark);
  font-size: 16px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

@media (max-width: 640px) {
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* Meet the consultant */
.meet-section { background: var(--white); padding: 64px 0; }
.meet-inner { display: flex; align-items: center; gap: 48px; }
.meet-photo {
  flex-shrink: 0;
  width: 260px;
  height: 410px;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid var(--teal-100);
  box-shadow: var(--shadow);
}
.meet-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.meet-content { flex: 1; }
.meet-eyebrow {
  display: block;
  color: var(--teal-600);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.meet-name { font-size: 26px; margin-bottom: 4px; }
.meet-role { color: var(--text-muted); font-weight: 600; font-size: 15px; margin-bottom: 20px; }
.meet-desc { max-width: 560px; margin: 0; }

@media (max-width: 720px) {
  .meet-inner { flex-direction: column; text-align: center; }
  .meet-desc { margin: 0 auto; }
}

/* Pay Zero band */
.payzero-section {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
  padding: 56px 0;
}
.payzero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.payzero-text { max-width: 620px; }
.payzero-eyebrow {
  display: block;
  color: var(--navy-900);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.payzero-title { color: var(--navy-900); font-size: 26px; margin-bottom: 10px; }
.payzero-sub { color: var(--navy-900); font-weight: 600; margin-bottom: 0; opacity: 0.85; }
.payzero-list { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.payzero-list li { color: var(--navy-900); font-weight: 600; font-size: 14.5px; display: flex; align-items: center; gap: 8px; }
.payzero-list li::before { content: "✓"; font-weight: 800; }
.payzero-cta { flex-shrink: 0; }
.payzero-cta .btn { background: var(--navy-900); color: var(--white); }
.payzero-cta .btn:hover { background: var(--navy-800); }

/* About section */
.about-section { background: var(--navy-900); }
.about-section .section-head h2 { color: var(--white); }
.about-section .section-head p { color: var(--text-on-dark); }
.about-body { max-width: 780px; margin: 0 auto; text-align: center; }
.about-body p { color: var(--text-on-dark); font-size: 16px; }

/* Footer contact enhancements */
.footer-phone { display: block; color: var(--teal-500); font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.footer-hours { font-size: 13px; color: var(--text-on-dark); margin: 4px 0 0; }

/* Section generic */
section { padding: 80px 0; }

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 { font-size: 32px; text-transform: uppercase; letter-spacing: 0.01em; }
.section-head p { font-size: 17px; }

/* Logo image */
.logo-img { height: 60px; width: auto; display: block; }
.footer-logo-img { height: 40px; width: auto; margin-bottom: 10px; }

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

@media (max-width: 1000px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: left;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--teal-100);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-icon svg { width: 24px; height: 24px; }

.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; margin: 0; }

/* Equipment showcase */
.equipment-section { background: var(--white); }
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .equipment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .equipment-grid { grid-template-columns: 1fr; } }

.equipment-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}
.equipment-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-100);
  padding: 20px;
}
.equipment-img img { max-height: 100%; max-width: 100%; object-fit: contain; }
.equipment-card h3 { font-size: 16px; margin: 18px 0 6px; }
.equipment-card p { font-size: 13.5px; padding: 0 18px 22px; margin: 0; }

/* How it works */
.how-section { background: var(--navy-900); }
.how-section .section-head h2,
.how-section .section-head p { color: var(--white); }
.how-section .section-head p { color: var(--text-on-dark); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}

@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

.step-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-500);
  color: var(--navy-900);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-family: var(--font-head);
}

.step-card h3 { color: var(--white); font-size: 18px; }
.step-card p { margin: 0; }

.how-cta { text-align: center; margin-top: 44px; }

/* Why choose us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  padding: 6px 0;
}
.why-card h3 {
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-card h3::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-600);
  font-size: 14px;
  flex-shrink: 0;
}
.why-card p { font-size: 14.5px; margin: 0 0 0 36px; }

/* Business types */
.types-section { background: var(--white); }
.types-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.type-tag {
  background: var(--teal-100);
  color: var(--navy-800);
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 20px;
  border-radius: 999px;
}

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
}
.faq-question .icon { color: var(--teal-600); font-size: 20px; transition: transform 0.2s ease; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p { padding: 0 4px 20px; margin: 0; }
.faq-item.open .faq-answer { max-height: 300px; }

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  text-align: center;
}
.final-cta h2 { color: var(--white); font-size: 32px; }
.final-cta p { color: var(--text-on-dark); max-width: 620px; margin: 0 auto 30px; }
.final-cta .fine-print { margin-top: 18px; font-size: 13.5px; color: var(--text-on-dark); }

/* Footer */
.site-footer { background: var(--navy-900); padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 14px; }
.site-footer h4 { color: var(--white); font-size: 15px; margin-bottom: 14px; }
.footer-links a, .footer-contact a {
  display: block;
  color: var(--text-on-dark);
  font-size: 14.5px;
  margin-bottom: 10px;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--teal-500); }
.footer-bottom { padding: 22px 24px; text-align: center; }
.footer-bottom p { color: var(--text-on-dark); font-size: 13px; margin: 0; }

/* Evaluation / contact page */
.eval-hero {
  background: var(--navy-900);
  padding: 64px 0 90px;
}
.eval-hero .bar { display: block; width: 60px; height: 3px; background: var(--teal-500); margin-bottom: 22px; }
.eval-hero h1 { color: var(--white); font-size: 34px; margin-bottom: 10px; }
.eval-hero p { color: var(--text-on-dark); font-size: 16px; margin: 0; }
.eval-callnow { margin-top: 14px !important; font-size: 15px; }
.eval-callnow a { color: var(--teal-500); font-weight: 700; }
.eval-callnow a:hover { text-decoration: underline; }

.eval-form-section { padding-top: 0; }
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px;
  margin-top: -56px;
  position: relative;
}
@media (max-width: 640px) { .form-card { padding: 26px; } }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(23, 184, 166, 0.18);
}

textarea { resize: vertical; min-height: 100px; }

.file-drop {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease;
  position: relative;
}
.file-drop.dragover { border-color: var(--teal-500); background: var(--teal-100); }
.file-drop p { margin: 0 0 14px; font-size: 14.5px; }
.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.file-hint { font-size: 12.5px; color: var(--text-muted); margin: 12px 0 0; }
.file-name { font-size: 13.5px; font-weight: 600; color: var(--teal-600); margin: 10px 0 0; }

.privacy-note {
  font-size: 13.5px;
  color: var(--text-muted);
  text-align: center;
  margin: 20px 0 0;
}

/* TPS Gateway page */
.gateway-hero {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 90px 0 70px;
}
.gateway-hero .bar { display: block; width: 60px; height: 3px; background: var(--teal-500); margin-bottom: 22px; }
.gateway-hero h1 { color: var(--white); font-size: 40px; margin-bottom: 14px; max-width: 760px; }
.gateway-hero p { color: var(--text-on-dark); font-size: 17px; max-width: 620px; margin: 0 0 8px; }

.gateway-pages {
  background: var(--bg-light);
  padding: 60px 0;
}
.gateway-pages .container { max-width: 900px; }
.gateway-page-img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.gateway-page-img:last-child { margin-bottom: 0; }

/* Thank you page */
.thanks-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
}
.thanks-card { max-width: 520px; }
.thanks-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-600);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.thanks-card h1 { font-size: 28px; }
