/* ============================================================
   CSS CUSTOM PROPERTIES
   Swap these variables to retheme the entire site instantly.
   ============================================================ */
:root {
  --primary:        #2C3E50;
  --accent:         #1ABC9C;
  --accent-dark:    #17a589;
  --bg:             #FAFAFA;
  --white:          #FFFFFF;
  --text:           #2C3E50;
  --text-light:     #6B7280;
  --text-lighter:   #9CA3AF;
  --border:         #E5E7EB;
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
  --shadow:         0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.12);
  --radius-sm:      8px;
  --radius:         14px;
  --radius-lg:      20px;
  --transition:     all 0.3s ease;
  --nav-height:     80px;
  --nav-height-sm:  60px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Offset anchor scroll targets so sticky nav doesn't cover them */
section[id] {
  scroll-margin-top: var(--nav-height);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-white { background: var(--white); }
.section-light  { background: var(--bg); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.section-subtitle a {
  font-weight: 600;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 188, 156, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}

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

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--primary);
  height: var(--nav-height);
  transition: height 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

#navbar.scrolled {
  height: var(--nav-height-sm);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 28px;
  height: 38px;
  transition: var(--transition);
}

#navbar.scrolled .logo-icon {
  width: 22px;
  height: 30px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: font-size 0.3s ease;
}

#navbar.scrolled .logo-text {
  font-size: 1.2rem;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 13px;
  border-radius: 6px;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

/* Pay Now button in nav */
.nav-link.pay-btn {
  background: var(--accent);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  margin-left: 6px;
}

.nav-link.pay-btn:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.nav-link.pay-btn.active::after {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #18252f 0%, var(--primary) 55%, #1b3830 100%);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(26,188,156,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.15;
}

.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 36px;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

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

.hero-graphic {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  backdrop-filter: blur(8px);
  width: 100%;
}

.hero-flame {
  width: 90px;
  height: 108px;
  margin: 0 auto 24px;
}

.hero-card-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.5;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}

.about-image { position: relative; }

.about-img-placeholder {
  background: linear-gradient(145deg, var(--primary), #1b3830);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-img-placeholder i {
  font-size: 4.5rem;
  color: var(--accent);
}

.about-img-placeholder span {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.5);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary);
}

.about-badge i { color: var(--accent); font-size: 1.1rem; }

.about-content .section-eyebrow,
.about-content .section-title {
  text-align: left;
}

.about-content .section-title { margin-bottom: 22px; }

.about-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.feature-item i {
  color: var(--accent);
  width: 18px;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,188,156,0.4);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(26,188,156,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.card-link i { transition: transform 0.2s ease; }
.card-link:hover i { transform: translateX(4px); }

/* ============================================================
   PAYMENT
   ============================================================ */
.payment-wrapper {
  max-width: 620px;
  margin: 0 auto;
}

.payment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-lg);
}

.payment-secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(26,188,156,0.07);
  border: 1px solid rgba(26,188,156,0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  width: fit-content;
  margin: 0 auto 28px;
}

/* Form shared styles */
.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,188,156,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.input-prefix-wrap { position: relative; }

.input-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
  color: var(--text-light);
  pointer-events: none;
}

.input-prefix-wrap input { padding-left: 28px; }

.form-divider {
  position: relative;
  text-align: center;
  margin: 22px 0;
}

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.form-divider span {
  position: relative;
  background: var(--white);
  padding: 0 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* NMI hosted iframe containers */
.nmi-field {
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  display: flex;
  align-items: center;
  background: var(--white);
  transition: border-color 0.2s ease;
}

.nmi-field iframe { width: 100%; border: none; }

.payment-message {
  margin-top: 16px;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
}

.payment-message.success {
  background: rgba(26,188,156,0.08);
  color: #0d7a6b;
  border: 1px solid rgba(26,188,156,0.25);
}

.payment-message.error {
  background: rgba(231,76,60,0.07);
  color: #b83224;
  border: 1px solid rgba(231,76,60,0.2);
}

.payment-disclaimer {
  margin-top: 16px;
  font-size: 0.76rem;
  color: var(--text-lighter);
  text-align: center;
  line-height: 1.6;
}

.card-icons {
  display: inline-flex;
  gap: 5px;
  margin-left: 6px;
  font-size: 1.15rem;
  vertical-align: middle;
  color: var(--text-light);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.open {
  border-color: rgba(26,188,156,0.45);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s ease;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(26,188,156,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-lighter);
  margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.55;
}

.contact-item a:hover { color: var(--accent); }

.contact-sub {
  font-size: 0.77rem !important;
  color: var(--text-lighter) !important;
  margin-top: 3px;
}

.map-embed {
  margin-top: 4px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-status {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  text-align: center;
}

.form-status.success {
  background: rgba(26,188,156,0.08);
  color: #0d7a6b;
  border: 1px solid rgba(26,188,156,0.25);
}

.form-status.error {
  background: rgba(231,76,60,0.07);
  color: #b83224;
  border: 1px solid rgba(231,76,60,0.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--primary);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }
.logo-light .logo-text { color: var(--white); }

.footer-tagline {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 270px;
  margin-bottom: 24px;
}

.social-links { display: flex; gap: 10px; }

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent);
  color: var(--white);
}

.footer-nav h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 9px; }

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

.footer-nav a:hover { color: var(--accent); }

.footer-contact p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--accent);
  width: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--accent); }

.emergency-note {
  background: rgba(26,188,156,0.1);
  border: 1px solid rgba(26,188,156,0.2);
  border-radius: 6px;
  padding: 10px 14px;
  margin-top: 6px;
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.82rem !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.privacy-link {
  color: rgba(255,255,255,0.35);
}

.privacy-link:hover { color: var(--accent); }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-graphic { display: none; }

  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions { justify-content: center; }
  .hero-stats   { justify-content: center; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Hamburger visible */
  .hamburger { display: flex; }

  /* Mobile nav drawer */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 20px 40px;
    gap: 2px;
    transition: right 0.32s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.25);
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-link.pay-btn {
    margin-left: 0;
    margin-top: 10px;
    text-align: center;
    justify-content: center;
    display: flex;
  }

  /* Hero */
  .hero { padding-top: var(--nav-height); min-height: auto; }
  .hero-content { padding: 56px 24px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 340px; margin: 0 auto 40px; }
  .about-badge { right: 10px; }

  .about-content .section-eyebrow,
  .about-content .section-title { text-align: center; }

  .about-features { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Payment */
  .payment-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .payment-card { padding: 24px 16px; }
}
