:root {
    --purple: #6335E7;
    --purple-light: #7B52EE;
    --purple-wash: #F1ECFE;
    --cyan: #00A8DE;
    --cyan-wash: #E3F7FF;
    --lime: #6FA815;
    --lime-wash: #F0FAE0;
    --ink: #12123A;
    --surface: #FFFFFF;
    --surface-2: #FAF9FF;
    --line: rgba(18,18,58,0.09);
    --text: #12123A;
    --text-soft: rgba(18,18,58,0.62);
    --shadow: 0 24px 60px -24px rgba(18,18,58,0.18);
    --shadow-purple: 0 20px 50px -18px rgba(99,53,231,0.35);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--surface);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }
  h1, h2, h3, .display {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
    margin: 0;
  }
  .mono { font-family: 'IBM Plex Mono', monospace; }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  .wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

  /* ---------------- NAV ---------------- */
  header.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 28px; max-width: 1160px; margin: 0 auto; gap: 18px; }
  .brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
  .brand img { height: 34px; width: 34px; border-radius: 9px; }
  .brand-name { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; color: var(--ink); white-space: nowrap; }
  nav.links { display: flex; gap: 26px; font-size: 14.5px; font-weight: 500; }
  nav.links a { color: var(--text-soft); transition: color 0.2s; white-space: nowrap; }
  nav.links a:hover { color: var(--ink); }
  .nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
  .nav-login { font-size: 14px; font-weight: 600; color: var(--ink); padding: 9px 12px; }
  .nav-login:hover { color: var(--purple); }
  .nav-cta {
    background: var(--purple); color: #fff; padding: 10px 20px; border-radius: 8px;
    font-weight: 600; font-size: 14px; box-shadow: 0 8px 20px -6px rgba(99,53,231,0.45);
    transition: transform 0.15s ease, background 0.15s; white-space: nowrap;
  }
  .nav-cta:hover { transform: translateY(-1px); background: var(--purple-light); }
  .mobile-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--ink); cursor: pointer; }

  /* ---------------- HERO ---------------- */
  .hero { padding: 76px 0 64px; position: relative; }
  .hero::before {
    content: ''; position: absolute; top: -80px; right: -160px; width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(99,53,231,0.10) 0%, transparent 70%); pointer-events: none;
  }
  .hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px; font-family: 'IBM Plex Mono', monospace;
    font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lime);
    background: var(--lime-wash); border: 1px solid rgba(111,168,21,0.3);
    padding: 6px 14px; border-radius: 999px; margin-bottom: 24px;
  }
  .eyebrow::before { content: '●'; font-size: 8px; }
  .hero h1 { font-size: clamp(34px, 4.8vw, 54px); letter-spacing: -0.02em; }
  .hero h1 .grad {
    background: linear-gradient(100deg, var(--cyan), var(--purple));
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .hero p.lede { font-size: 17.5px; color: var(--text-soft); max-width: 480px; margin: 22px 0 34px; }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
  .btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; border-radius: 9px;
    font-weight: 600; font-size: 15px; border: none; cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s;
  }
  .btn-primary { background: var(--purple); color: #fff; box-shadow: var(--shadow-purple); }
  .btn-primary:hover { transform: translateY(-2px); background: var(--purple-light); }
  .btn-ghost { background: var(--surface); border: 1.5px solid var(--line); color: var(--ink); }
  .btn-ghost:hover { background: var(--surface-2); border-color: rgba(18,18,58,0.2); }

  .trust-strip { display: flex; gap: 22px; flex-wrap: wrap; font-size: 13px; color: var(--text-soft); }
  .trust-strip span { display: flex; align-items: center; gap: 7px; }
  .trust-strip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }

  .dash-card { background: var(--surface); border-radius: 16px; border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; }
  .dash-topbar { display: flex; gap: 6px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
  .dash-topbar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(18,18,58,0.12); }
  .dash-body { padding: 24px; }
  .dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
  .dash-stat { background: var(--surface-2); border-radius: 10px; padding: 14px; border: 1px solid var(--line); }
  .dash-stat .lbl { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-soft); margin-bottom: 6px; }
  .dash-stat .val { font-family: 'IBM Plex Mono', monospace; font-size: 18px; font-weight: 600; color: var(--ink); }
  .dash-stat.cyan .val { color: var(--cyan); }
  .dash-stat.lime .val { color: var(--lime); }
  .dash-list { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
  .dash-row {
    display: flex; justify-content: space-between; align-items: center; padding: 12px 16px;
    font-size: 13.5px; border-bottom: 1px solid var(--line);
    opacity: 0; transform: translateY(6px); animation: rowIn 0.5s ease forwards;
  }
  .dash-row:last-child { border-bottom: none; }
  .dash-row:nth-child(1) { animation-delay: 0.1s; }
  .dash-row:nth-child(2) { animation-delay: 0.3s; }
  .dash-row:nth-child(3) { animation-delay: 0.5s; }
  @keyframes rowIn { to { opacity: 1; transform: translateY(0); } }
  .dash-row .name { font-weight: 600; }
  .dash-row .pill { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; padding: 3px 10px; border-radius: 999px; }
  .pill.due { background: #FFEBEB; color: #D14343; }
  .pill.paid { background: var(--lime-wash); color: var(--lime); }

  /* ---------------- SECTION SHELL ---------------- */
  section { padding: 90px 0; }
  .section-head { max-width: 620px; margin-bottom: 52px; }
  .section-head .eyebrow { margin-bottom: 16px; }
  .section-head h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 14px; }
  .section-head p { font-size: 16px; color: var(--text-soft); }

  /* ---------------- ILLUSTRATION BANNER ---------------- */
  .illus-banner { background: var(--surface-2); border: 1px solid var(--line); border-radius: 20px; padding: 0; overflow: hidden; }
  .illus-banner .inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
  .illus-copy { padding: 50px; }
  .illus-copy h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
  .illus-copy p { font-size: 15px; color: var(--text-soft); margin-bottom: 22px; }
  .illus-art { padding: 40px; display: flex; align-items: center; justify-content: center; }

  /* ---------------- RECOVERY FEATURE (Autopay/eNACH) ---------------- */
  .recovery { background: var(--surface-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .recovery .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .recovery-visual { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 26px; box-shadow: var(--shadow); }
  .recovery-flow { display: flex; flex-direction: column; gap: 0; }
  .flow-step { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; }
  .flow-step:not(:last-child) { border-bottom: 1px dashed var(--line); }
  .flow-num {
    width: 26px; height: 26px; border-radius: 7px; background: var(--purple); color: #fff;
    font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 600;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .flow-step p { font-size: 13.5px; color: var(--text-soft); margin: 2px 0 0; }
  .flow-step strong { font-size: 14.5px; color: var(--ink); }
  .badge-soon {
    display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 11px;
    color: var(--cyan); background: var(--cyan-wash); border: 1px solid rgba(0,168,222,0.3);
    padding: 4px 10px; border-radius: 999px; margin-bottom: 18px;
  }

  /* ---------------- FEATURES: TABS ---------------- */
  .tabs-shell { display: grid; grid-template-columns: 250px 1fr; gap: 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
  .tab-rail { background: var(--ink); display: flex; flex-direction: column; }
  .tab-btn {
    text-align: left; background: transparent; border: none; color: rgba(255,255,255,0.6);
    padding: 20px 22px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
    cursor: pointer; border-left: 3px solid transparent; display: flex; flex-direction: column;
    gap: 4px; transition: background 0.2s, color 0.2s;
  }
  .tab-btn .idx { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500; opacity: 0.7; }
  .tab-btn.active { background: rgba(255,255,255,0.06); color: #fff; border-left-color: var(--cyan); }
  .tab-btn:hover { color: #fff; }
  .tab-panels { background: var(--surface); position: relative; min-height: 400px; }
  .tab-panel { display: none; padding: 42px 46px; animation: fadeUp 0.4s ease; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: translateY(0);} }
  .tab-panel.active { display: block; }
  .tab-panel h3 { font-size: 24px; margin-bottom: 10px; }
  .tab-panel .sub { color: var(--text-soft); font-size: 15px; margin-bottom: 26px; max-width: 520px; }
  .feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .feature-item { display: flex; gap: 13px; align-items: flex-start; }
  .feature-item .tick {
    width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0; background: var(--lime); color: #fff;
    font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 2px;
  }
  .feature-item p { font-size: 14px; color: var(--text-soft); margin: 0; }
  .feature-item strong { display: block; font-size: 14.5px; color: var(--ink); margin-bottom: 2px; }

  /* ---------------- HOW IT WORKS ---------------- */
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
  .steps::before {
    content: ''; position: absolute; top: 25px; left: 6%; right: 6%; height: 1px;
    background: repeating-linear-gradient(to right, var(--line) 0 8px, transparent 8px 14px);
  }
  .step { position: relative; padding-right: 20px; }
  .step .num {
    width: 50px; height: 50px; border-radius: 12px; background: var(--surface); border: 1.5px solid var(--purple);
    color: var(--purple); font-family: 'IBM Plex Mono', monospace; font-weight: 600; font-size: 17px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px; position: relative; z-index: 2;
  }
  .step h3 { font-size: 18px; margin-bottom: 8px; }
  .step p { font-size: 14px; color: var(--text-soft); }

  /* ---------------- PRICING (single plan) ---------------- */
  .pricing-single { display: flex; justify-content: center; }
  .plan-card {
    width: 100%; max-width: 620px; background: var(--surface); border: 2px solid var(--purple);
    border-radius: 20px; padding: 44px 44px 40px; box-shadow: var(--shadow-purple); position: relative;
  }
  .plan-badge {
    position: absolute; top: -14px; left: 44px; background: var(--purple); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px;
  }
  .plan-card h3 { font-size: 22px; margin-bottom: 6px; }
  .plan-card .desc { font-size: 14px; color: var(--text-soft); margin-bottom: 26px; max-width: 420px; }
  .price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
  .price-row .amt { font-family: 'IBM Plex Mono', monospace; font-size: 44px; font-weight: 600; color: var(--ink); }
  .price-row .per { font-size: 14px; color: var(--text-soft); }
  .gst-line { font-size: 13.5px; color: var(--text-soft); margin-bottom: 28px; }
  .gst-line strong { color: var(--ink); font-family: 'IBM Plex Mono', monospace; }
  .plan-card ul { list-style: none; padding: 0; margin: 0 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 20px; }
  .plan-card li { font-size: 13.5px; display: flex; gap: 10px; align-items: flex-start; color: var(--text-soft); }
  .plan-card li::before { content: '✓'; color: var(--lime); font-weight: 700; flex-shrink: 0; }
  .plan-card .btn { justify-content: center; width: 100%; }
  .plan-note { text-align: center; font-size: 12.5px; color: var(--text-soft); margin-top: 18px; }

  /* ---------------- FAQ ---------------- */
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
    font-size: 16px; font-weight: 600; color: var(--ink); font-family: 'Inter', sans-serif;
  }
  .faq-q .plus { font-family: 'IBM Plex Mono', monospace; font-size: 20px; color: var(--purple); transition: transform 0.25s; flex-shrink: 0; margin-left: 16px; }
  .faq-item.open .faq-q .plus { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  .faq-item.open .faq-a { max-height: 220px; }
  .faq-a p { padding-bottom: 22px; color: var(--text-soft); font-size: 14px; max-width: 640px; }

  /* ---------------- FINAL CTA ---------------- */
  .final-cta {
    background: linear-gradient(120deg, var(--purple) 0%, #4A26B8 100%);
    text-align: center; border-radius: 20px; padding: 64px 40px; margin: 0 28px;
    position: relative; overflow: hidden;
  }
  .final-cta::before {
    content: ''; position: absolute; top: -100px; right: -80px; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0,198,255,0.35) 0%, transparent 70%);
  }
  .final-cta h2 { color: #fff; font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 16px; position: relative; }
  .final-cta p { color: rgba(255,255,255,0.85); font-size: 15.5px; margin-bottom: 30px; position: relative; }
  .final-cta .btn-primary { background: var(--lime); color: #fff; position: relative; box-shadow: 0 10px 30px -8px rgba(111,168,21,0.5); }
  .final-cta .btn-primary:hover { background: #5C8E10; }

  /* ---------------- FOOTER ---------------- */
  footer { padding: 56px 0 36px; border-top: 1px solid var(--line); }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
  .footer-brand p { font-size: 13.5px; color: var(--text-soft); margin-top: 12px; max-width: 260px; }
  .footer-col h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-soft); margin-bottom: 16px; }
  .footer-col a { display: block; font-size: 14px; color: var(--text-soft); margin-bottom: 11px; }
  .footer-col a:hover { color: var(--ink); }
  .social-row { display: flex; gap: 10px; margin-top: 20px; }
  .social-icon {
    width: 36px; height: 36px; border-radius: 9px; background: var(--surface-2); border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center; color: var(--text-soft);
    transition: background 0.2s, color 0.2s, transform 0.15s;
  }
  .social-icon:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }
  .social-icon svg { width: 17px; height: 17px; }
  .footer-bottom {
    border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--text-soft);
  }
  .footer-bottom a { color: var(--text-soft); }
  .footer-bottom a:hover { color: var(--ink); }
  .udyam-badge {
    display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-soft);
    background: var(--surface-2); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; margin-top: 14px;
  }

  /* ---------------- RESPONSIVE ---------------- */
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .illus-banner .inner { grid-template-columns: 1fr; }
    .illus-art { padding-top: 0; }
    .recovery .wrap { grid-template-columns: 1fr; gap: 36px; }
    .tabs-shell { grid-template-columns: 1fr; }
    .tab-rail { flex-direction: row; overflow-x: auto; }
    .tab-btn { border-left: none; border-bottom: 3px solid transparent; white-space: nowrap; }
    .tab-btn.active { border-left-color: transparent; border-bottom-color: var(--cyan); }
    .tab-panel { padding: 32px 24px; }
    .feature-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr 1fr; row-gap: 36px; }
    .steps::before { display: none; }
    .plan-card { padding: 36px 26px 32px; }
    .plan-card ul { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 620px) {
    .nav-inner { padding: 12px 18px; }
    nav.links { display: none; }
    .mobile-toggle { display: block; }
    .brand-name { font-size: 16px; }
    .nav-login { display: none; }
    .hero { padding: 36px 0 36px; }
    .hero-ctas .btn { flex: 1; justify-content: center; }
    section { padding: 52px 0; }
    .steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .dash-stats { grid-template-columns: 1fr; }
    .final-cta { margin: 0 16px; padding: 44px 20px; }
    .illus-copy { padding: 30px; }
    .price-row .amt { font-size: 36px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .dash-row { animation: none; opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
  }
  :focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; }

/* ---------------- SUB-PAGE HERO (About / Contact) ---------------- */
.page-hero { padding: 64px 0 20px; text-align: center; }
.page-hero h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 14px; }
.page-hero p { font-size: 16.5px; color: var(--text-soft); max-width: 560px; margin: 0 auto; }

/* ---------------- ABOUT: STORY ---------------- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.story-grid p { font-size: 15.5px; color: var(--text-soft); margin-bottom: 16px; }
.story-art { background: var(--surface-2); border: 1px solid var(--line); border-radius: 16px; padding: 30px; }

/* ---------------- ABOUT: VALUES ---------------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 26px 22px; box-shadow: var(--shadow); }
.value-card .icon {
  width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 16px; background: var(--purple-wash); color: var(--purple);
}
.value-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--text-soft); margin: 0; }

/* ---------------- ABOUT: TRUST / REGISTRATION ---------------- */
.trust-card {
  background: var(--ink); border-radius: 18px; padding: 40px 44px; color: #fff;
  display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center;
}
.trust-card .badge-circle {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0;
}
.trust-card h3 { color: #fff; font-size: 19px; margin-bottom: 10px; }
.trust-card .reg-grid { display: grid; grid-template-columns: repeat(3, auto); gap: 28px; font-size: 13px; color: rgba(255,255,255,0.7); }
.trust-card .reg-grid strong { display: block; color: #fff; font-family: 'IBM Plex Mono', monospace; font-size: 14px; margin-top: 3px; }

/* ---------------- CONTACT ---------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info-card {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 16px; padding: 34px;
}
.contact-info-card h3 { font-size: 18px; margin-bottom: 20px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-row .ic {
  width: 38px; height: 38px; border-radius: 10px; background: var(--surface); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}
.contact-row strong { display: block; font-size: 14px; margin-bottom: 2px; }
.contact-row span, .contact-row a { font-size: 13.5px; color: var(--text-soft); }
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 34px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 18px; margin-bottom: 20px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 9px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--ink); background: var(--surface-2);
  transition: border-color 0.15s;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--purple); background: var(--surface); }
.form-field textarea { resize: vertical; min-height: 100px; }

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .trust-card { grid-template-columns: 1fr; text-align: center; }
  .trust-card .reg-grid { grid-template-columns: 1fr; justify-content: center; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  .values-grid { grid-template-columns: 1fr; }
  .trust-card { padding: 30px 24px; }
}