:root {
  --ink: #172033;
  --muted: #5d6878;
  --saffron: #f47b20;
  --green: #15935b;
  --blue: #214e9f;
  --bengal-red: #b8322a;
  --bengal-gold: #f5b24c;
  --cream: #fff8ed;
  --line: rgba(23, 32, 51, 0.11);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  background: #fffdf9;
}

a {
  text-decoration: none;
}

.site-nav {
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 35px rgba(23, 32, 51, 0.06);
}

.navbar-brand,
.nav-link {
  color: var(--ink);
}

.navbar-brand:hover,
.nav-link:hover {
  color: var(--saffron);
}

.navbar-toggler {
  border-color: rgba(23, 32, 51, 0.22);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2823, 32, 51, 0.78%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  place-items: center;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(135deg, var(--bengal-red) 0%, var(--saffron) 48%, var(--green) 100%);
  box-shadow: 0 8px 18px rgba(23, 32, 51, 0.14);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  line-height: 1.05;
}

.brand-lockup small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.nav-pill {
  margin-left: 10px;
  padding: 10px 18px !important;
  color: #fff !important;
  border-radius: 999px;
  background: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  padding: 70px 0 88px;
  background:
    radial-gradient(circle at 18% 16%, rgba(244, 123, 32, 0.18), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(21, 147, 91, 0.14), transparent 32%),
    linear-gradient(135deg, #fff7ea 0%, #f6fbff 52%, #ffffff 100%);
}

.flag-ribbon {
  position: absolute;
  left: -8%;
  width: 116%;
  height: 62px;
  transform: rotate(-4deg);
  opacity: 0.82;
  background: linear-gradient(90deg, var(--saffron) 0 33%, #fff 33% 66%, var(--green) 66% 100%);
}

.flag-ribbon-one {
  top: 84px;
}

.flag-ribbon-two {
  right: -10%;
  bottom: 66px;
  left: auto;
  transform: rotate(3deg);
  opacity: 0.5;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: var(--saffron);
}

.hero h1 {
  max-width: 760px;
  margin: 18px 0;
  font-size: clamp(2.4rem, 6vw, 4.75rem);
  font-weight: 850;
  line-height: 0.98;
}

.lead {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.16rem;
}

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

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.btn-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.btn {
  border-radius: 8px;
  font-weight: 750;
}

.btn-primary {
  border-color: var(--saffron);
  background: var(--saffron);
  box-shadow: 0 14px 24px rgba(244, 123, 32, 0.25);
}

.btn-primary:hover {
  border-color: #d86512;
  background: #d86512;
}

.btn-light {
  color: var(--ink);
  border-color: rgba(23, 32, 51, 0.14);
  background: #fff;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  min-width: 145px;
  padding: 13px 16px;
  color: var(--muted);
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.07);
}

.trust-strip strong {
  display: block;
  color: var(--ink);
  font-size: 1.15rem;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.campaign-img {
  width: 100%;
  filter: drop-shadow(0 26px 40px rgba(23, 32, 51, 0.17));
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 54px rgba(23, 32, 51, 0.2);
}

.photo-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, rgba(23, 32, 51, 0.04), rgba(23, 32, 51, 0.46));
  pointer-events: none;
}

.campaign-photo {
  display: block;
  width: 100%;
  min-height: 390px;
  object-fit: cover;
}

.photo-overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 36px);
  padding: 12px 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(23, 32, 51, 0.72);
  font-weight: 800;
}

.floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  color: var(--ink);
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(23, 32, 51, 0.14);
  font-weight: 800;
}

.badge-top {
  top: 32px;
  right: -8px;
}

.badge-bottom {
  bottom: 36px;
  left: -8px;
}

.mini-flag {
  width: 28px;
  height: 18px;
  border: 1px solid rgba(23, 32, 51, 0.15);
  background: linear-gradient(#f47b20 0 33%, #fff 33% 66%, #15935b 66%);
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(21, 147, 91, 0.16);
}

.section-band {
  padding: 78px 0;
  background: #ffffff;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 30px;
}

.section-heading h2,
.qualification-panel h2,
.cta-inner h2 {
  margin-top: 12px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 830;
}

.role-card {
  height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fffaf3);
  box-shadow: 0 18px 34px rgba(23, 32, 51, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.role-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 40px rgba(23, 32, 51, 0.12);
}

.role-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: var(--blue);
  font-weight: 850;
}

.role-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.role-card h3 {
  font-size: 1.22rem;
  font-weight: 800;
}

.role-card p {
  min-height: 72px;
  color: var(--muted);
}

.role-card a {
  color: var(--saffron);
  font-weight: 800;
}

.info-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding-top: 24px;
  padding-bottom: 84px;
}

.qualification-panel,
.process-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(23, 32, 51, 0.07);
}

.qualification-panel {
  padding: 32px;
}

.qualification-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.qualification-grid span {
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(23, 32, 51, 0.11);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(244, 123, 32, 0.1), rgba(21, 147, 91, 0.08));
  font-weight: 850;
}

.process-panel {
  overflow: hidden;
}

.process-step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: center;
  padding: 28px 30px;
  border-bottom: 1px solid var(--line);
}

.process-step:last-child {
  border-bottom: 0;
}

.process-step span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: var(--green);
  font-weight: 850;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-band {
  padding: 56px 0;
  background:
    linear-gradient(90deg, rgba(244, 123, 32, 0.92), rgba(21, 147, 91, 0.9)),
    #15935b;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #fff;
}

.cta-inner .eyebrow {
  color: #fff;
}

.cta-inner .eyebrow::before {
  background: #fff;
}

.cta-inner h2 {
  margin-bottom: 0;
}

.site-footer {
  padding: 22px 0;
  color: #fff;
  background: #172033;
}

.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 10%, rgba(184, 50, 42, 0.12), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(21, 147, 91, 0.13), transparent 30%),
    linear-gradient(180deg, #fffaf0, #fffdf9 36%, #f7fff8);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 34px;
  background: linear-gradient(135deg, #fff7ea, #eef8ff 58%, #f1fff7);
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  right: -8%;
  bottom: 18px;
  width: 48%;
  height: 32px;
  content: "";
  transform: rotate(-5deg);
  opacity: 0.58;
  background: linear-gradient(90deg, var(--saffron) 0 33%, #fff 33% 66%, var(--green) 66%);
}

.page-title {
  max-width: 760px;
}

.page-title h1 {
  margin: 10px 0 8px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 850;
  line-height: 1;
}

.page-title p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.bengal-hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.bengal-hero-note span {
  padding: 8px 11px;
  color: #6f211b;
  border: 1px solid rgba(184, 50, 42, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 42px 0 70px;
}

.job-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(23, 32, 51, 0.08);
}

.job-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, var(--saffron), #fff, var(--green));
}

.job-card h2 {
  margin: 18px 0 12px;
  font-size: 1.35rem;
  font-weight: 830;
}

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

.job-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}

.job-chip-row span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(33, 78, 159, 0.09);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  padding: 42px 0 74px;
}

.form-card,
.side-card,
.success-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(23, 32, 51, 0.08);
}

.form-card {
  padding: 30px;
}

.form-control {
  min-height: 48px;
  border-color: rgba(23, 32, 51, 0.14);
  border-radius: 8px;
}

textarea.form-control {
  min-height: 92px;
}

.side-card {
  overflow: hidden;
}

.side-card img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.side-card-content {
  padding: 22px;
}

.side-card-content h2 {
  font-size: 1.35rem;
  font-weight: 830;
}

.side-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.side-list li {
  padding: 12px;
  border-radius: 8px;
  background: #fff8ed;
  color: var(--muted);
  font-weight: 700;
}

.success-wrap {
  display: grid;
  min-height: calc(100vh - 132px);
  place-items: center;
  padding: 46px 0;
}

.success-card {
  width: min(100%, 720px);
  padding: 34px;
}

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

.barcode-box {
  display: inline-block;
  max-width: 100%;
  margin: 14px 0 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

form .form-label {
  font-weight: 600;
}

.application-wrap {
  padding: 42px 0 78px;
}

.application-form-card {
  width: min(100%, 980px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(184, 50, 42, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(184, 50, 42, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 147, 91, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, #fff7e7, #f3fff0 58%, #fffaf2);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: 0 22px 48px rgba(23, 32, 51, 0.14);
}

.form-topper {
  display: grid;
  gap: 4px;
  padding: 18px clamp(24px, 5vw, 52px);
  color: #fff;
  border-bottom: 5px solid var(--bengal-gold);
  background: linear-gradient(90deg, var(--bengal-red), #0f7d4d);
}

.form-topper span {
  font-size: 0.9rem;
  font-weight: 850;
}

.form-topper strong {
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.1;
}

.form-topper em {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-weight: 700;
}

.application-form {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 5vw, 52px);
}

.form-section,
.two-field-grid,
.fee-panel,
.form-note {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 26px rgba(23, 32, 51, 0.05);
}

.application-form h2 {
  margin: 0 0 14px;
  color: #6f211b;
  font-size: 1.12rem;
  font-weight: 850;
}

.section-hint {
  margin: -8px 0 16px;
  color: #347190;
  font-weight: 800;
}

.application-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.application-form label span {
  color: rgba(23, 32, 51, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.application-form label strong {
  color: #6f211b;
  font-size: 1.02rem;
  font-weight: 850;
}

.application-form .form-control,
.application-form .form-select {
  min-height: 50px;
  border: 1px solid rgba(23, 32, 51, 0.13);
  border-radius: 8px;
  background-color: #fff;
  box-shadow: inset 0 1px 2px rgba(23, 32, 51, 0.04), 0 1px 0 rgba(255, 255, 255, 0.9);
}

.application-form .form-control:focus,
.application-form .form-select:focus {
  border-color: rgba(184, 50, 42, 0.48);
  box-shadow: 0 0 0 4px rgba(184, 50, 42, 0.1);
}

.three-field-grid,
.two-field-grid {
  display: grid;
  gap: 14px;
}

.three-field-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dob-grid {
  display: grid;
  max-width: 430px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wide-field {
  margin-bottom: 14px;
}

.wide-field:last-child {
  margin-bottom: 0;
}

.fee-panel {
  border-left: 5px solid var(--bengal-red);
  background: #fff9ea;
}

.fee-panel h2 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.fee-panel p {
  margin: 0 0 6px;
  color: #347190;
  font-weight: 850;
}

.fee-panel span {
  color: #6f211b;
  font-weight: 900;
}

.form-note {
  margin: 0;
  color: #6f211b;
  background: #fff;
  font-weight: 800;
}

.submit-now {
  position: relative;
  display: inline-grid;
  width: min(100%, 380px);
  min-height: 66px;
  padding: 12px 58px 12px 24px;
  overflow: hidden;
  place-items: center start;
  color: #fff;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(135deg, #a82721 0%, #d94d25 48%, #f08a24 100%);
  box-shadow: 0 18px 30px rgba(184, 50, 42, 0.28), inset 0 -3px 0 rgba(91, 25, 19, 0.26);
  font-weight: 900;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

.submit-now::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-110%);
  transition: transform 450ms ease;
}

.submit-now::after {
  position: absolute;
  right: 18px;
  top: 50%;
  display: grid;
  width: 34px;
  height: 34px;
  content: ">";
  transform: translateY(-50%);
  place-items: center;
  color: #7a211b;
  border-radius: 50%;
  background: #fff6d9;
  box-shadow: inset 0 -2px 0 rgba(122, 33, 27, 0.14);
  font-size: 1.25rem;
  font-weight: 950;
}

.submit-now span,
.submit-now small {
  position: relative;
  z-index: 1;
}

.submit-now span {
  font-size: 1.12rem;
  letter-spacing: 0;
}

.submit-now small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: none;
}

.submit-now:hover {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 36%),
    linear-gradient(135deg, #91231d 0%, #c83f20 48%, #e9781d 100%);
  box-shadow: 0 20px 34px rgba(184, 50, 42, 0.34), inset 0 -3px 0 rgba(91, 25, 19, 0.3);
}

.submit-now:hover::before {
  transform: translateX(110%);
}

.submit-now:active {
  transform: translateY(1px);
  box-shadow: 0 12px 20px rgba(184, 50, 42, 0.24), inset 0 -2px 0 rgba(91, 25, 19, 0.3);
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 52px 0 64px;
  }

  .hero-grid,
  .info-layout {
    grid-template-columns: 1fr;
  }

  .jobs-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 0;
  }

  .badge-top {
    right: 10px;
  }

  .badge-bottom {
    left: 10px;
  }
}

@media (max-width: 767px) {
  .site-nav .container {
    align-items: center;
    gap: 10px;
  }

  .page-shell .site-nav .container {
    flex-wrap: nowrap;
  }

  .page-shell .navbar-brand {
    min-width: 0;
    font-size: 1rem;
    white-space: nowrap;
  }

  .page-shell .site-nav .ms-auto {
    align-items: center;
    gap: 8px !important;
  }

  .page-shell .nav-link:not(.nav-pill) {
    display: none;
  }

  .page-shell .nav-pill {
    min-width: 112px;
    margin: 0;
    padding: 10px 14px !important;
    text-align: center;
  }

  .nav-pill {
    display: inline-block;
    margin: 8px 0 0;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .trust-strip span,
  .hero-actions .btn {
    width: 100%;
  }

  .flag-ribbon {
    height: 42px;
  }

  .floating-badge {
    position: static;
    margin: 10px 6px 0 0;
  }

  .campaign-photo {
    min-height: 260px;
  }

  .info-layout {
    padding-bottom: 54px;
  }

  .process-step {
    grid-template-columns: 54px 1fr;
    padding: 22px 20px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 38px 0 26px;
  }

  .page-title h1 {
    font-size: 1.82rem;
    line-height: 1.08;
  }

  .page-title p {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .bengal-hero-note {
    gap: 6px;
  }

  .bengal-hero-note span {
    padding: 7px 9px;
    font-size: 0.76rem;
  }

  .application-wrap {
    padding: 18px 8px 42px;
  }

  .application-form-card {
    border-radius: 8px;
  }

  .form-topper {
    padding: 16px;
  }

  .application-form {
    gap: 14px;
    padding: 14px;
  }

  .form-section,
  .two-field-grid,
  .fee-panel,
  .form-note {
    padding: 14px;
  }

  .application-form h2 {
    margin-bottom: 12px;
    font-size: 1.08rem;
    line-height: 1.18;
  }

  .three-field-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .two-field-grid {
    gap: 10px;
  }

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

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

  .dob-grid {
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .application-form label {
    gap: 5px;
  }

  .application-form label strong,
  .application-form label span {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .application-form .form-control,
  .application-form .form-select {
    min-height: 44px;
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .form-section .wide-field {
    margin-bottom: 10px;
  }

  .fee-panel h2 {
    font-size: 1.22rem;
  }

  .fee-panel p,
  .fee-panel span,
  .form-note {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .submit-now {
    width: 100%;
    min-height: 60px;
    padding: 11px 56px 11px 18px;
  }

  .submit-now span {
    font-size: 1.02rem;
  }

  .submit-now small {
    font-size: 0.7rem;
  }
}

@media (max-width: 390px) {
  .two-field-grid {
    grid-template-columns: 1fr;
  }
}
