:root {
  --bg: #f2f6fb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-solid: #ffffff;
  --surface-soft: #eef4ff;
  --surface-alt: #f7faff;
  --surface-dark: #0f1728;
  --surface-dark-soft: #15213a;
  --ink: #112038;
  --muted: #60708a;
  --line: #d8e1ef;
  --line-strong: #bcc8db;
  --primary: #1b66ff;
  --primary-dark: #123f9d;
  --accent: #09b2d9;
  --highlight: #ffb44a;
  --success: #129268;
  --warning: #d87a12;
  --danger: #d93e61;
  --shadow-xl: 0 34px 84px rgba(17, 32, 56, 0.13);
  --shadow-lg: 0 24px 60px rgba(17, 32, 56, 0.1);
  --shadow-md: 0 18px 42px rgba(17, 32, 56, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(27, 102, 255, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(9, 178, 217, 0.14), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #f3f6fb 40%, #eef3fb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(17, 32, 56, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 32, 56, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 88%);
}

main {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

#home,
#services,
#order,
#contact,
#uploadForm {
  scroll-margin-top: 110px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(248, 251, 255, 0.78);
  border-bottom: 1px solid rgba(216, 225, 239, 0.8);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27, 102, 255, 0.22), transparent);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.35), transparent 42%),
    linear-gradient(145deg, var(--primary), var(--accent));
  box-shadow: 0 20px 38px rgba(27, 102, 255, 0.24);
}

.brand-copy {
  display: block;
}

.brand strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
}

.brand small,
.brand-status {
  display: block;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
}

.brand-status {
  margin-top: 6px;
  color: var(--primary-dark);
  font-style: normal;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-nav {
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(216, 225, 239, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.top-nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.top-nav a:hover {
  transform: translateY(-1px);
  background: rgba(27, 102, 255, 0.08);
  color: var(--primary-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(27, 102, 255, 0.24);
}

.hero {
  position: relative;
  padding: 92px 0 76px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 48px;
  right: -160px;
  width: min(520px, 50vw);
  height: min(520px, 50vw);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(9, 178, 217, 0.18), rgba(9, 178, 217, 0) 68%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.hero-copy,
.hero-panel,
.service-card,
.proof-card,
.journey-card,
.info-card,
.panel,
.analysis-card,
.contact-card,
.final-cta-card {
  animation: rise-in 0.7s ease both;
}

.hero-panel {
  animation-delay: 0.08s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(27, 102, 255, 0.09);
  border: 1px solid rgba(27, 102, 255, 0.12);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-copy h1,
.section-heading h2 {
  margin: 18px 0;
  font-family: "Sora", sans-serif;
  line-height: 1.03;
}

.hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2.9rem, 5vw, 5rem);
  letter-spacing: -0.05em;
}

.hero-copy p,
.section-copy {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.82;
}

.hero-copy p {
  max-width: 60ch;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(216, 225, 239, 0.92);
  box-shadow: 0 14px 28px rgba(17, 32, 56, 0.06);
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-points i,
.service-card i,
.contact-card i,
.proof-card i {
  color: var(--primary);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.hero-stat-card {
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 255, 0.96)),
    var(--surface-solid);
  border: 1px solid rgba(216, 225, 239, 0.92);
  box-shadow: 0 18px 32px rgba(17, 32, 56, 0.07);
}

.hero-stat-card strong,
.service-card h3,
.contact-card h3,
.proof-card h3,
.journey-card strong,
.info-card h3,
.panel-head h3,
.analysis-head h3,
.hero-card h2,
.confirm-card h4,
.cod-card h4,
.success-card h3,
.receipt-highlight strong,
.receipt-overview-card strong,
.receipt-section h4,
.receipt-verification h5 {
  font-family: "Sora", sans-serif;
}

.hero-stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.hero-stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.hero-panel,
.panel,
.info-card,
.analysis-card,
.service-card,
.contact-card,
.hero-card,
.summary-card,
.qr-card,
.confirm-card,
.cod-card,
.success-card,
.proof-card {
  background: var(--surface);
  border: 1px solid rgba(216, 225, 239, 0.86);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.hero-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(27, 102, 255, 0.3), transparent);
}

.hero-preview-card {
  background:
    radial-gradient(circle at top right, rgba(9, 178, 217, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.98)),
    var(--surface-solid);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.hero-card-label {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.hero-card h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  line-height: 1.18;
}

.hero-badge {
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(27, 102, 255, 0.08);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-status-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(216, 225, 239, 0.92);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-status-strip i {
  color: var(--highlight);
}

.hero-flow-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.hero-flow-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 17px;
  border-radius: 20px;
  background: rgba(248, 251, 255, 0.92);
  border: 1px solid rgba(226, 235, 255, 0.94);
}

.hero-flow-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
}

.hero-flow-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.hero-flow-step {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.35), transparent 42%),
    linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.hero-metric {
  padding: 17px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 225, 239, 0.95);
}

.hero-metric span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.hero-metric strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.45;
}

.section {
  position: relative;
  padding: 80px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(235, 243, 255, 0.74), rgba(255, 255, 255, 0.68));
}

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

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
}

.service-grid,
.contact-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.contact-card,
.proof-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card::before,
.contact-card::before,
.proof-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.service-card:hover,
.contact-card:hover,
.info-card:hover,
.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 102, 255, 0.2);
  box-shadow: var(--shadow-xl);
}

.service-card i,
.contact-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(27, 102, 255, 0.08);
  font-size: 1.3rem;
}

.service-card h3,
.contact-card h3,
.proof-card h3 {
  margin: 18px 0 10px;
  font-size: 1.18rem;
}

.service-card p,
.contact-card p,
.info-card p,
.proof-card p {
  color: var(--muted);
  line-height: 1.75;
}

.studio-proof {
  padding-top: 18px;
}

.proof-shell {
  position: relative;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 255, 0.96)),
    var(--surface-solid);
  border: 1px solid rgba(216, 225, 239, 0.95);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.proof-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 102, 255, 0.12), transparent 72%);
  transform: translate(-30%, -40%);
}

.proof-heading {
  position: relative;
}

.proof-grid {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-card {
  min-height: 100%;
  padding-top: 24px;
}

.proof-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(27, 102, 255, 0.1);
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.order-brief {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 22px 24px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(15, 23, 40, 0.98), rgba(21, 33, 58, 0.98));
  color: #ffffff;
  box-shadow: var(--shadow-xl);
}

.order-brief-copy strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.order-brief-copy p {
  margin: 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.order-brief-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.order-brief-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  font-weight: 700;
}

.order-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.journey-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.journey-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.98)),
    var(--surface-solid);
  border: 1px solid rgba(216, 225, 239, 0.92);
}

.journey-step {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(27, 102, 255, 0.08);
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-card strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 1.08rem;
}

.journey-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.info-column {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 102px;
}

.info-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.info-card:first-child {
  background:
    linear-gradient(160deg, rgba(15, 23, 40, 0.98), rgba(22, 36, 63, 0.96));
  color: #ffffff;
  border-color: rgba(30, 47, 78, 0.95);
}

.info-card:first-child .info-card-head i {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.info-card:first-child .price-row span,
.info-card:first-child .price-row strong {
  color: rgba(255, 255, 255, 0.94);
}

.info-card:first-child .price-row {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.info-card h3 {
  margin-top: 0;
}

.info-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.info-card-head i {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: rgba(27, 102, 255, 0.08);
}

.info-card-head h3 {
  margin: 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.info-list {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.inline-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 800;
}

.form-column {
  display: grid;
  gap: 18px;
}

.analysis-card {
  border-radius: var(--radius-lg);
  padding: 20px 22px;
}

.analysis-card.is-analyzing {
  border-color: rgba(27, 102, 255, 0.18);
  background: linear-gradient(180deg, rgba(27, 102, 255, 0.04), rgba(255, 255, 255, 0.98));
}

.analysis-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.analysis-head h3 {
  margin: 0;
}

.analysis-head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.66;
}

.analysis-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(27, 102, 255, 0.08);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.analysis-badge.is-working::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: badge-pulse 1.1s ease-in-out infinite;
}

.analysis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
}

.analysis-grid > div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(248, 251, 255, 0.9);
  border: 1px solid rgba(216, 225, 239, 0.9);
}

.analysis-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.analysis-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.32rem;
}

.analysis-breakdown {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f7fbff;
  border: 1px solid var(--line);
}

.breakdown-row span {
  color: var(--muted);
}

.breakdown-row strong {
  text-align: right;
}

.total-row {
  background: #eef5ff;
}

.panel {
  border-radius: var(--radius-xl);
  padding: 30px;
}

.panel-head {
  margin-bottom: 20px;
}

.panel-head h3,
.summary-card strong {
  margin: 0;
}

.panel-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.panel-kicker,
.receipt-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field {
  display: block;
  margin-bottom: 18px;
}

.field span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(216, 225, 239, 0.98);
  background: rgba(251, 253, 255, 0.98);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  background: #ffffff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27, 102, 255, 0.12);
}

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

.field-copies {
  min-width: 0;
}

.number-stepper {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(216, 225, 239, 0.98);
  background: rgba(251, 253, 255, 0.98);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.number-stepper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27, 102, 255, 0.12);
  background: #ffffff;
}

.number-stepper input {
  text-align: center;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 10px 6px;
  font-size: 1.15rem;
  font-weight: 700;
  appearance: textfield;
  -moz-appearance: textfield;
}

.number-stepper input:hover,
.number-stepper input:focus {
  background: transparent;
  box-shadow: none;
}

.number-stepper input::-webkit-outer-spin-button,
.number-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.stepper-button {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(27, 102, 255, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #eef4ff);
  color: var(--primary-dark);
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(17, 32, 56, 0.08);
  touch-action: manipulation;
}

.stepper-button:hover {
  background: linear-gradient(180deg, #ffffff, #e6efff);
}

.stepper-button:active {
  transform: translateY(1px);
}

.stepper-button:focus-visible {
  outline: 2px solid rgba(27, 102, 255, 0.28);
  outline-offset: 2px;
}

.field-note {
  color: var(--muted);
}

.upload-box {
  position: relative;
  border: 1.5px dashed rgba(27, 102, 255, 0.32);
  background:
    linear-gradient(180deg, rgba(27, 102, 255, 0.05), rgba(9, 178, 217, 0.03));
  border-radius: 20px;
  overflow: hidden;
}

.upload-box::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.upload-box input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-box-copy {
  min-height: 170px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 6px;
  padding: 30px;
}

.upload-box-copy i {
  font-size: 1.9rem;
  color: var(--primary);
}

.scroll-target-glow {
  animation: target-glow 1.15s ease;
}

.print-mode-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fbfdff, #f3f8ff);
  border: 1px solid rgba(216, 225, 239, 0.92);
}

.print-mode-copy {
  flex: 1;
}

.print-mode-copy h4 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.print-mode-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.mode-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  min-width: 255px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(216, 225, 239, 0.92);
  cursor: pointer;
}

.mode-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mode-switch-ui {
  position: relative;
  width: 58px;
  height: 32px;
  border-radius: 999px;
  background: #d8e3f7;
  box-shadow: inset 0 0 0 1px rgba(17, 32, 56, 0.06);
  transition: background 0.2s ease;
  flex: 0 0 auto;
}

.mode-switch-ui::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 6px 12px rgba(17, 32, 56, 0.18);
  transition: transform 0.2s ease;
}

.mode-switch input:checked + .mode-switch-ui {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.mode-switch input:checked + .mode-switch-ui::after {
  transform: translateX(26px);
}

.mode-switch input:disabled + .mode-switch-ui {
  opacity: 0.6;
}

.mode-switch-copy strong,
.mode-switch-copy small {
  display: block;
}

.mode-switch-copy strong {
  color: var(--ink);
}

.mode-switch-copy small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.bw-savings {
  display: flex;
  align-items: start;
  gap: 12px;
  margin: 0 0 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid #dbe7ff;
  color: var(--muted);
}

.bw-savings i {
  margin-top: 2px;
  color: var(--success);
  font-size: 1.1rem;
}

.bw-savings strong,
.bw-savings span {
  display: block;
}

.bw-savings strong {
  color: var(--ink);
  margin-bottom: 4px;
}

.bw-savings.is-active {
  background: linear-gradient(180deg, rgba(18, 146, 104, 0.08), rgba(255, 255, 255, 0.92));
  border-color: rgba(18, 146, 104, 0.2);
}

.form-footnote {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.66;
}

.form-footnote i {
  color: var(--primary);
  margin-top: 2px;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background:
    radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.26), transparent 30%),
    linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  box-shadow: 0 20px 34px rgba(27, 102, 255, 0.24);
}

.btn-secondary {
  background: #eff4ff;
  color: var(--primary-dark);
  border: 1px solid rgba(27, 102, 255, 0.12);
}

.btn-full {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn.is-loading {
  transform: none;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-right-color: transparent;
  display: inline-block;
  animation: button-spin 0.75s linear infinite;
}

.payment-panel-shell {
  position: relative;
}

#paymentSection,
#paymentSuccess {
  scroll-margin-top: 94px;
}

.payment-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.payment-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.payment-progress-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid var(--line);
}

.payment-progress-item span {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(27, 102, 255, 0.08);
  color: var(--primary-dark);
  font-weight: 800;
}

.payment-progress-item strong {
  font-size: 0.95rem;
  line-height: 1.45;
}

.payment-progress-item.is-active {
  background: linear-gradient(180deg, rgba(27, 102, 255, 0.08), rgba(9, 178, 217, 0.04));
  border-color: rgba(27, 102, 255, 0.18);
}

.payment-progress-item.is-complete {
  background: linear-gradient(180deg, rgba(18, 146, 104, 0.08), rgba(255, 255, 255, 0.98));
  border-color: rgba(18, 146, 104, 0.18);
}

.payment-progress-item.is-complete span {
  background: rgba(18, 146, 104, 0.14);
  color: var(--success);
}

.timer-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(216, 122, 18, 0.12);
  color: #af5d00;
  font-weight: 800;
}

.timer-chip.is-expired {
  background: rgba(217, 62, 97, 0.12);
  color: var(--danger);
}

.summary-card {
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(135deg, #ffffff, #f4f8ff);
}

.summary-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.summary-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.35rem;
}

.method-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.method-tab {
  flex: 1;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fbfdff;
  color: var(--muted);
  font-weight: 800;
}

.method-tab.is-active {
  border-color: rgba(27, 102, 255, 0.18);
  background: rgba(27, 102, 255, 0.08);
  color: var(--primary-dark);
}

.payment-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
}

.qr-card,
.confirm-card,
.cod-card,
.success-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.qr-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.98));
}

.qr-title {
  margin-top: 0;
  font-weight: 800;
}

.qr-code {
  min-height: 278px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #f6f9ff, #ffffff);
  border: 1px solid var(--line);
  padding: 18px;
}

.qr-code img {
  display: block;
}

.upi-meta {
  color: var(--muted);
  text-align: center;
}

.action-stack {
  display: grid;
  gap: 12px;
}

.mobile-upi-apps {
  display: none;
}

.mobile-upi-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-upi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.upi-app-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 15px;
  border-radius: 18px;
  border: 1px solid rgba(216, 225, 239, 0.95);
  background: linear-gradient(180deg, #ffffff, #f7faff);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 14px 28px rgba(17, 32, 56, 0.08);
  touch-action: manipulation;
}

.upi-app-button:disabled {
  opacity: 0.6;
  box-shadow: none;
}

.upi-app-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(17, 32, 56, 0.06);
}

.upi-app-logo {
  display: block;
  width: 28px;
  height: 28px;
}

.upi-app-copy {
  display: block;
  min-width: 0;
}

.upi-app-copy strong,
.upi-app-copy small {
  display: block;
}

.upi-app-copy strong {
  font-size: 0.94rem;
  font-weight: 800;
}

.upi-app-copy small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.45;
}

.status-note {
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff8ee;
  color: #8a5300;
  border: 1px solid rgba(216, 122, 18, 0.16);
  margin-bottom: 16px;
}

.steps-list {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.82;
}

.payment-feedback {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 18px;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #f7fbff;
  color: var(--primary-dark);
  line-height: 1.66;
}

.payment-feedback i {
  margin-top: 4px;
  font-size: 1rem;
}

.payment-feedback.is-info {
  background: #f6faff;
  border-color: rgba(27, 102, 255, 0.12);
}

.payment-feedback.is-working {
  background: linear-gradient(180deg, rgba(27, 102, 255, 0.08), rgba(255, 255, 255, 0.96));
  border-color: rgba(27, 102, 255, 0.18);
}

.payment-feedback.is-error {
  background: #fff2f4;
  border-color: rgba(217, 62, 97, 0.18);
  color: #a32747;
}

.payment-feedback.is-success {
  background: #eefaf4;
  border-color: rgba(18, 146, 104, 0.2);
  color: #0b7a4f;
}

.confirm-form {
  margin-top: 8px;
}

.verification-note {
  padding: 14px 16px;
  border-radius: 14px;
  background: #f7fbff;
  color: var(--muted);
  border: 1px solid var(--line);
  margin-bottom: 16px;
  line-height: 1.66;
}

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

.success-card {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  outline: none;
}

.success-hero {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.success-copy {
  flex: 1;
}

.success-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 146, 104, 0.12);
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.success-mark {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(18, 146, 104, 0.12);
  color: var(--success);
  font-size: 2rem;
  flex: 0 0 auto;
}

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

.success-copy h3 {
  margin: 12px 0 8px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.success-copy p {
  margin: 0;
  max-width: 720px;
  line-height: 1.72;
}

.delivery-status {
  color: var(--muted);
}

.receipt-overview {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.receipt-highlight,
.receipt-overview-card {
  min-height: 118px;
  border-radius: 20px;
  padding: 20px;
}

.receipt-highlight {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(18, 63, 157, 0.18);
}

.receipt-overview-card {
  background: #ffffff;
  border: 1px solid rgba(216, 225, 239, 0.92);
}

.receipt-highlight span,
.receipt-overview-card span {
  display: block;
  font-size: 0.84rem;
  margin-bottom: 10px;
}

.receipt-highlight span,
.receipt-highlight small {
  color: rgba(255, 255, 255, 0.82);
}

.receipt-highlight strong,
.receipt-overview-card strong {
  display: block;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.receipt-highlight small,
.receipt-overview-card small {
  display: block;
  margin-top: 10px;
  line-height: 1.5;
}

.receipt-overview-card small {
  color: var(--muted);
}

.receipt-section {
  margin-top: 18px;
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(216, 225, 239, 0.92);
}

.receipt-section-soft {
  background: linear-gradient(180deg, #fbfdff, #f5f9ff);
}

.receipt-section-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(18, 146, 104, 0.12);
  color: var(--success);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

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

.receipt-item {
  min-height: 92px;
  padding: 16px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid #e3ecfb;
}

.receipt-item span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.receipt-item strong {
  display: block;
  color: var(--ink);
  line-height: 1.5;
}

.receipt-notifications {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.receipt-note {
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e3ecfb;
  border-left: 4px solid rgba(27, 102, 255, 0.35);
  line-height: 1.7;
}

.receipt-alert {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(216, 122, 18, 0.18);
  background: linear-gradient(180deg, rgba(255, 248, 238, 0.98), rgba(255, 252, 247, 0.96));
  color: #7c5410;
}

.receipt-alert strong {
  display: block;
  margin-bottom: 10px;
}

.receipt-alert-list {
  margin: 0;
  padding-left: 18px;
}

.receipt-alert-list li + li {
  margin-top: 6px;
}

.receipt-verification {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e3ecfb;
}

.receipt-verification h5 {
  margin-bottom: 12px;
}

.receipt-checks {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.delivery-status strong {
  color: var(--ink);
}

.site-footer {
  border-top: 1px solid rgba(216, 225, 239, 0.88);
  padding: 26px 0 42px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.65);
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer-shell p:first-child {
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.mobile-order-bar {
  position: fixed;
  left: 50%;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 35;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(calc(100% - 24px), 480px);
  padding: 15px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  box-shadow: 0 24px 36px rgba(18, 63, 157, 0.28);
  transform: translateX(-50%);
  font-weight: 800;
}

body.has-active-payment-session .mobile-order-bar {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  min-width: 240px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(17, 32, 56, 0.97);
  color: #ffffff;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.toast.is-error {
  background: rgba(217, 62, 97, 0.97);
}

.is-hidden {
  display: none !important;
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes badge-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes target-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(27, 102, 255, 0);
    transform: translateY(0);
  }

  30% {
    box-shadow: 0 0 0 8px rgba(27, 102, 255, 0.1);
    transform: translateY(-2px);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(27, 102, 255, 0);
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .order-grid,
  .payment-layout,
  .service-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 78px;
  }

  .hero-stats,
  .journey-strip,
  .hero-metrics,
  .receipt-overview,
  .receipt-notifications {
    grid-template-columns: 1fr 1fr;
  }

  .order-brief {
    flex-direction: column;
  }

  .order-brief-tags {
    justify-content: flex-start;
  }

  .info-column {
    position: static;
  }
}

@media (max-width: 720px) {
  body::before {
    opacity: 0.26;
    background-size: 34px 34px;
  }

  .site-header {
    backdrop-filter: blur(10px);
  }

  .header-shell,
  .header-actions,
  .payment-head,
  .summary-card,
  .footer-shell {
    flex-direction: column;
    align-items: stretch;
  }

  .header-shell {
    min-height: auto;
    padding: 14px 0 12px;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand-status {
    font-size: 0.68rem;
    line-height: 1.45;
    letter-spacing: 0.08em;
  }

  .top-nav {
    justify-content: space-between;
    width: 100%;
  }

  .field-grid,
  .analysis-grid,
  .journey-strip,
  .hero-metrics,
  .payment-progress,
  .hero-stats,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .number-stepper {
    gap: 8px;
    padding: 6px;
  }

  .stepper-button {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .analysis-head,
  .breakdown-row,
  .hero-card-top,
  .print-mode-card,
  .hero-status-strip {
    flex-direction: column;
  }

  .method-tabs {
    flex-direction: column;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: 2.72rem;
  }

  .panel,
  .hero-card,
  .info-card,
  .qr-card,
  .confirm-card,
  .cod-card,
  .success-card,
  .proof-shell {
    padding: 20px;
  }

  .success-hero,
  .receipt-section-head {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-chip,
  .header-cta {
    justify-content: center;
  }

  .mode-switch {
    width: 100%;
    min-width: 0;
  }

  .hero-chips {
    display: grid;
    grid-template-columns: 1fr;
  }

  .header-cta {
    display: none;
  }

  .receipt-overview,
  .receipt-grid,
  .receipt-notifications {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(100% - 24px, 1220px);
  }

  .mobile-order-bar {
    display: inline-flex;
  }

  #paymentSection,
  #paymentSuccess {
    scroll-margin-top: 176px;
  }

  .payment-panel-shell {
    margin-top: 6px;
  }

  .payment-layout {
    gap: 16px;
  }

  .qr-code {
    min-height: 220px;
  }

  .qr-code img {
    max-width: 100%;
    height: auto;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .mobile-upi-apps {
    display: block;
  }

  .mobile-upi-grid {
    grid-template-columns: 1fr;
  }

  .upi-app-button {
    padding: 13px 14px;
  }

  .upi-app-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .upi-app-logo {
    width: 25px;
    height: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
