:root {
  --ink: #25221f;
  --muted: #82766b;
  --line: #d8cfc1;
  --paper: #f3ece2;
  --white: #ffffff;
  --panel: #faf7f2;
  --data-panel: #f7fafd;
  --green: #327c58;
  --green-dark: #286746;
  --olive: #40885c;
  --brown: #82776c;
  --shadow: 0 18px 45px rgba(86, 70, 52, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(250, 247, 242, 0.94);
  border-bottom: 1px solid rgba(216, 207, 193, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  overflow: hidden;
}

.brand-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #4d453e;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 73px);
  padding: clamp(48px, 8vw, 92px) clamp(18px, 4vw, 56px) 40px;
  background:
    linear-gradient(115deg, rgba(64, 136, 92, 0.12), transparent 46%),
    linear-gradient(180deg, #fbf8f2 0%, #f3ece2 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.download-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
}

.download-icon::before {
  position: absolute;
  left: 8px;
  top: 1px;
  width: 2px;
  height: 10px;
  content: "";
  background: currentColor;
}

.download-icon::after {
  position: absolute;
  left: 4px;
  top: 7px;
  width: 8px;
  height: 8px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.button.with-icon {
  color: var(--white);
}

.button.with-icon .download-icon {
  border-bottom: 2px solid currentColor;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.trust-row {
  margin-top: 26px;
  color: #5d5147;
  font-size: 13px;
  font-weight: 800;
}

.trust-row span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.product-stage {
  min-width: 0;
}

.app-window {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: #f0e7da;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b96d5e;
}

.window-bar span:nth-child(2) {
  background: #c9a453;
}

.window-bar span:nth-child(3) {
  background: var(--green);
}

.window-bar strong {
  margin-left: 8px;
  font-size: 13px;
}

.toolbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.toolbar button {
  height: 38px;
  color: #4d453e;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.cheque-card {
  position: relative;
  margin: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 2.55 / 1;
}

.cheque-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.print-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.print-panel div {
  padding: 16px;
  background: var(--panel);
}

.print-panel small,
.print-panel strong {
  display: block;
}

.print-panel small {
  color: var(--muted);
  font-size: 12px;
}

.print-panel strong {
  margin-top: 4px;
  font-size: 14px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: var(--white);
  color: #5d5147;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.section,
.split-section,
.cta,
.download-band {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.download-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.download-band p {
  max-width: 760px;
  color: var(--muted);
}

.trial-note {
  display: grid;
  gap: 4px;
  max-width: 760px;
  margin-top: 18px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
}

.trial-note strong {
  color: var(--green-dark);
}

.trial-note span {
  color: #4d453e;
  font-weight: 700;
}

.download-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.download-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.download-card strong {
  font-size: 18px;
}

.download-card p {
  margin: 0 0 8px;
  color: var(--muted);
  text-align: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card {
  padding: 24px;
}

.feature-card p,
.split-section p,
.step p,
.cta p {
  color: var(--muted);
}

.icon {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--green);
  background: #e7efe7;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: #ffffff;
}

.split-section > div:first-child {
  max-width: 620px;
}

.text-link {
  color: var(--green-dark);
  font-weight: 900;
}

.bank-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bank-gallery img {
  width: 100%;
  aspect-ratio: 2.55 / 1;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(86, 70, 52, 0.12);
}

.bank-gallery img:first-child {
  grid-column: 1 / -1;
}

.bank-list-panel {
  grid-column: 1 / -1;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.bank-list-panel p {
  max-width: 860px;
}

.bank-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.bank-list button {
  min-height: 46px;
  padding: 10px 12px;
  color: #4d453e;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.bank-list button:hover,
.bank-list button:focus {
  color: var(--green-dark);
  background: #eef5ee;
  border-color: var(--green);
  outline: none;
}

.bank-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  padding: 22px;
}

.bank-modal.is-open {
  display: grid;
  place-items: center;
}

.bank-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 34, 31, 0.58);
}

.bank-modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(37, 34, 31, 0.32);
}

.bank-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 36px;
  padding: 0 12px;
  color: #4d453e;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.bank-modal-head {
  padding-right: 88px;
}

.bank-modal-head h2 {
  margin-bottom: 8px;
}

.bank-modal-head p:last-child {
  color: var(--muted);
}

.bank-modal-image {
  margin-top: 18px;
  padding: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.bank-modal-image img {
  width: 100%;
  max-height: 62vh;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.muted {
  background: #faf7f2;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pricing-section {
  background: #ffffff;
}

.pricing-section .section-heading p {
  color: var(--muted);
}

.pricing-tool {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
  gap: 22px;
  align-items: stretch;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
}

.price-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.discount-badge {
  width: fit-content;
  padding: 7px 10px;
  color: #ffffff;
  background: var(--green);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.price-card h3 {
  margin: 0;
  font-size: 24px;
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
  margin: 0;
}

.price-line del {
  color: var(--muted);
  font-size: 22px;
  font-weight: 800;
}

.price-line strong {
  color: var(--ink);
  font-size: clamp(42px, 6vw, 62px);
  line-height: 1;
}

.price-card > p:not(.price-line) {
  color: var(--muted);
}

.pricing-controls,
.pricing-result {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pricing-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-controls label {
  display: grid;
  gap: 8px;
  color: #4d453e;
  font-size: 13px;
  font-weight: 900;
}

.pricing-controls select,
.pricing-controls input[type="number"] {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.pricing-controls select:focus,
.pricing-controls input:focus {
  outline: 3px solid rgba(50, 124, 88, 0.18);
  border-color: var(--green);
}

.check-row {
  grid-column: 1 / -1;
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 10px !important;
  min-height: 44px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.pricing-result {
  display: grid;
  align-content: center;
  gap: 12px;
}

.pricing-result span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-result strong {
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
}

.pricing-result p {
  color: var(--muted);
}

.pricing-result .pricing-trial {
  padding: 12px;
  color: #4d453e;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.step {
  min-height: 360px;
  padding: 22px;
}

.step span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.step-media {
  display: grid;
  height: 150px;
  margin-bottom: 18px;
  place-items: center;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-media img[src*="hdfc-imperia-preview"] {
  padding: 8px;
  background: #ffffff;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  color: var(--ink);
  background: #e8ddcf;
}

.cta .eyebrow {
  color: var(--green);
}

.cta p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #4d453e;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #faf8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(50, 124, 88, 0.18);
  border-color: var(--green);
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--brown);
  background: #faf7f2;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.activation-hero {
  padding: clamp(48px, 7vw, 86px) clamp(18px, 4vw, 56px) 34px;
  background:
    linear-gradient(115deg, rgba(64, 136, 92, 0.12), transparent 46%),
    linear-gradient(180deg, #fbf8f2 0%, #f3ece2 100%);
}

.activation-hero h1 {
  max-width: 920px;
}

.activation-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  padding: 32px clamp(18px, 4vw, 56px) clamp(58px, 8vw, 96px);
}

.payment-panel,
.activation-form {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.payment-qr {
  width: min(100%, 360px);
  margin: 18px auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.upi-box {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.upi-box span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.upi-box strong {
  font-size: 20px;
}

.payment-plan-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.payment-plan-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.payment-plan-list span {
  color: var(--green-dark);
  font-weight: 900;
}

.activation-form {
  display: grid;
  gap: 14px;
}

.activation-form label {
  display: grid;
  gap: 7px;
  color: #4d453e;
  font-size: 13px;
  font-weight: 900;
}

.activation-form input,
.activation-form select,
.activation-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #faf8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.activation-form input:focus,
.activation-form select:focus,
.activation-form textarea:focus {
  outline: 3px solid rgba(50, 124, 88, 0.18);
  border-color: var(--green);
}

.upload-note,
.activation-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.activation-note {
  min-height: 20px;
  color: var(--green-dark);
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .cta,
  .download-band,
  .pricing-tool,
  .pricing-cards,
  .activation-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .product-stage {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 73px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(86, 70, 52, 0.16);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: 38px;
  }

  .feature-grid,
  .timeline,
  .logo-strip,
  .print-panel,
  .pricing-controls {
    grid-template-columns: 1fr;
  }

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

  .cheque-card {
    margin: 12px;
  }

  .bank-gallery {
    grid-template-columns: 1fr;
  }

  .bank-modal {
    padding: 12px;
  }

  .bank-modal-panel {
    padding: 16px;
  }

  .bank-modal-head {
    padding-right: 0;
  }

  .bank-modal-close {
    position: static;
    margin-bottom: 14px;
  }

  .site-footer {
    flex-direction: column;
  }
}
