:root {
  --navy: #1a2744;
  --navy-deep: #0f1829;
  --navy-mid: #253563;
  --red: #e84e36;
  --red-hover: #d43d26;
  --red-soft: rgba(232, 78, 54, 0.12);
  --white: #ffffff;
  --gray-50: #f7f8fb;
  --gray-100: #eef1f6;
  --gray-200: #d8dee8;
  --gray-400: #8b95a8;
  --gray-600: #4a5568;
  --gray-800: #2d3748;
  --shadow-sm: 0 1px 3px rgba(15, 24, 41, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 24, 41, 0.1);
  --shadow-lg: 0 20px 60px rgba(15, 24, 41, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1180px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.logo-on-dark img { mix-blend-mode: screen; }

.logo-on-light {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border-radius: 10px;
  padding: 0.35rem 0.75rem;
  box-shadow: var(--shadow-sm);
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 24, 41, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow var(--transition);
}

.header.scrolled { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.logo-link img { height: 40px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: var(--red-hover) !important;
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--white);
}

.menu-toggle svg { width: 24px; height: 24px; }

/* Hero */
.hero {
  position: relative;
  padding: 9rem 0 5rem;
  background: linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%);
  overflow: hidden;
}

.hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(232, 78, 54, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero {
  position: relative;
  padding: 8.5rem 0 3.5rem;
  background: linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  overflow: hidden;
}

.page-hero .container { position: relative; }

.page-hero h1 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 36rem;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.hero h1 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero h1 span { color: var(--red); }

.hero-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 78, 54, 0.35);
}

.btn-primary:hover {
  background: var(--red-hover);
  box-shadow: 0 6px 28px rgba(232, 78, 54, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--gray-200);
}

.btn-outline:hover {
  background: var(--gray-50);
  transform: none;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-wrap {
  position: relative;
  padding: 2.5rem;
}

.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(232, 78, 54, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-logo-wrap img {
  position: relative;
  width: min(100%, 420px);
  filter: drop-shadow(0 12px 32px rgba(232, 78, 54, 0.25));
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-num {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-num span { color: var(--red); }

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.25rem;
}

/* Sections */
section { padding: 5.5rem 0; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 36rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-desc { margin: 0 auto; }

/* Inner page content */
.page-content { padding: 4.5rem 0 5rem; }

.page-content.alt-bg { background: var(--gray-50); }

.content-intro {
  font-size: 1.15rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin-bottom: 3rem;
  line-height: 1.75;
}

.content-blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content-block {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}

.content-block.iconed {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
}

.content-block-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--red-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.content-block-icon svg { width: 28px; height: 28px; }

.content-block-body { flex: 1; min-width: 0; }

.page-content.alt-bg .content-block {
  border-color: var(--gray-100);
}

.content-block h2 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.content-block p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.content-block p:last-child { margin-bottom: 0; }

.content-block ul {
  margin: 0.75rem 0 0 1.25rem;
  color: var(--gray-600);
}

.content-block li { margin-bottom: 0.4rem; }

.vendor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.vendor-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
}

.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.hours-card {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}

.hours-card h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.hours-card p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
}

.hours-card a {
  color: var(--white);
  font-weight: 600;
}

.hours-card a:hover { color: var(--red); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
}

.contact-row-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-row-icon svg { width: 20px; height: 20px; }

.contact-row h3 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}

.contact-row a,
.contact-row p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-row a:hover { color: var(--red); }

/* Systems */
.systems { background: var(--gray-50); }

.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.system-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.system-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.system-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.system-card:hover::before { transform: scaleX(1); }

.system-icon {
  width: 52px;
  height: 52px;
  background: var(--red-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--red);
}

.system-icon svg { width: 26px; height: 26px; }

.system-card h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.system-card p {
  font-size: 0.925rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.service-item:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.service-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-top: 2px;
}

.service-check svg { width: 14px; height: 14px; }

.service-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.service-item p {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.services-visual {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.services-visual::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(232, 78, 54, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.services-visual .logo-on-dark { margin-bottom: 1.5rem; }

.services-visual .logo-on-dark img {
  width: 80px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.services-visual h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
}

.services-visual p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  position: relative;
  margin-bottom: 1.5rem;
}

.services-visual .location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
}

.services-visual .location svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Pay CTA */
.pay-cta {
  background: var(--navy-deep);
  padding: 4rem 0;
}

.pay-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.pay-cta-text h2 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pay-cta-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  max-width: 28rem;
}

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-card h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}

.contact-card a,
.contact-card p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-card a:hover { color: var(--red); }

/* Footer */
.footer {
  background: var(--navy-deep);
  padding: 3rem 0 2rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: inline-flex;
  flex-shrink: 0;
}

.footer-logo img {
  height: 36px;
  width: auto;
  max-width: none;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-nav a.active { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

.footer-shield {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-shield .logo-on-dark img { width: 22px; height: auto; }

/* Stripe-style payment page */
body.payment-page {
  background: #f6f9fc;
  min-height: 100vh;
}

.payment-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 100vh;
}

.payment-summary {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 2rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.payment-summary-header {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-back {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  align-self: flex-start;
  transition: color var(--transition);
}

.payment-back:hover { color: var(--white); }

.payment-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.payment-brand-icon img {
  width: 44px;
  height: auto;
}

.payment-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.payment-brand-name {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.payment-brand-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.payment-merchant {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.35rem;
}

.payment-amount {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.payment-line-items {
  flex: 1;
}

.payment-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.payment-line span:last-child { color: rgba(255, 255, 255, 0.85); font-weight: 500; }

.payment-line.total {
  border-bottom: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  font-weight: 600;
  font-size: 1rem;
}

.payment-summary-footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.payment-form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.payment-form-card {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
  padding: 2rem;
}

.payment-form-card h2 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.payment-form-card .subtitle {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 1.75rem;
}

.payment-field {
  margin-bottom: 1.1rem;
}

.payment-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}

.payment-field input,
.payment-field select {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--gray-800);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.payment-field input:focus,
.payment-field select:focus {
  outline: none;
  border-color: #635bff;
  box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.12);
}

.payment-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.payment-card-input {
  position: relative;
}

.payment-card-input .card-icons {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 0.25rem;
}

.card-icon {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gray-400);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
}

.btn-pay {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.95rem;
  background: #635bff;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn-pay:hover {
  background: #5851ea;
  transform: translateY(-1px);
}

.payment-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--gray-400);
}

.payment-secure svg { width: 14px; height: 14px; }

.payment-demo-badge {
  display: inline-block;
  background: rgba(232, 78, 54, 0.15);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.payment-success {
  display: none;
  text-align: center;
  padding: 1rem 0;
}

.payment-success.visible { display: block; }

.payment-success-icon {
  width: 56px;
  height: 56px;
  background: #d4edda;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #28a745;
}

.payment-form-fields.hidden { display: none; }

/* Mobile */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-logo-wrap img { width: min(100%, 280px); }
  .systems-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .content-grid-2 { grid-template-columns: 1fr; }
  .content-block.iconed { flex-direction: column; gap: 1.25rem; }
  .pay-cta-inner { flex-direction: column; text-align: center; }
  .pay-cta-text p { margin: 0 auto; }
  .payment-layout { grid-template-columns: 1fr; }
  .payment-summary { padding: 2rem 1.5rem; min-height: auto; }
  .payment-form-panel { padding: 1.5rem; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
  }
  .nav.open .nav-cta { margin-left: 0; text-align: center; }
  .menu-toggle { display: block; }
  .header-inner { position: relative; }
  section { padding: 4rem 0; }
  .hero { padding: 7rem 0 3.5rem; }
  .page-hero { padding: 7rem 0 2.5rem; }
}
