@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --blue: #0f5ea8;
  --blue-dark: #073b73;
  --blue-soft: #eaf4ff;
  --green: #19a56f;
  --green-dark: #08794f;
  --ink: #172033;
  --muted: #5e6b7f;
  --line: #d9e4ef;
  --bg: #f7fbff;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(10, 58, 112, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  max-width: 100%;
}

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

.topbar {
  background: var(--blue-dark);
  color: #dcecff;
  font-size: 0.9rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(9, 48, 88, 0.08);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--blue-dark);
  letter-spacing: 0;
}

.brand-logo {
  width: 72px;
  height: 42px;
  object-fit: contain;
  border: 1px solid rgba(15, 94, 168, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(15, 94, 168, 0.12);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 10px 22px rgba(15, 94, 168, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  color: #314258;
}

.nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
  color: var(--blue);
  border-color: var(--green);
}

.btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 18px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
button:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 14px 24px rgba(15, 94, 168, 0.22);
}

.btn-green {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 14px 24px rgba(25, 165, 111, 0.22);
}

.btn-light {
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  width: 44px;
  padding: 0;
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(25, 165, 111, 0.34), transparent 28%),
    linear-gradient(135deg, #073b73 0%, #0f5ea8 58%, #12835f 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 42px;
  min-height: 610px;
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.55rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--blue-dark);
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.hero p {
  max-width: 640px;
  color: #e8f4ff;
  font-size: 1.12rem;
}

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

.phone-panel {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.app-card {
  padding: 20px;
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.app-card .amount {
  display: block;
  margin: 12px 0 8px;
  color: var(--green-dark);
  font-size: 2rem;
  font-weight: 800;
}

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

.status-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: #f1f7fc;
  color: #324358;
  font-size: 0.95rem;
}

.section {
  padding: 82px 0;
}

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

.section-head {
  max-width: 740px;
  margin-bottom: 34px;
}

.center {
  margin-inline: auto;
  text-align: center;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.card,
.service-card,
.step,
.benefit,
.faq-item,
.form-shell,
.receipt,
.info-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(12, 64, 118, 0.07);
}

.card,
.service-card,
.benefit,
.info-box {
  padding: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 255px;
}

.learn {
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
}

.icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 1.25rem;
}

.step {
  position: relative;
  padding: 28px 24px 24px;
}

.step-number {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 42px;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-list i {
  margin-top: 4px;
  color: var(--green);
}

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

.stat {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--blue-soft);
}

.stat strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1.65rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  justify-content: space-between;
  padding: 18px 20px;
  color: var(--ink);
  background: var(--white);
  text-align: left;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
}

.faq-item.open .faq-answer {
  display: block;
}

.page-hero {
  padding: 76px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 59, 115, 0.96), rgba(15, 94, 168, 0.92)),
    linear-gradient(90deg, var(--blue-dark), var(--green));
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.page-hero p {
  max-width: 760px;
  color: #eaf5ff;
}

.form-shell {
  padding: 28px;
}

.app-tax-form {
  max-width: 430px;
  margin: 0 auto;
  padding: 22px 20px 24px;
  background: #ffffff;
}

.app-tax-form.is-hidden {
  display: none;
}

.requires-state:not(.state-ready) .state-dependent {
  display: none;
}

.state-dependent {
  animation: revealField 0.22s ease both;
}

.app-forms-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 430px));
  justify-content: center;
  align-items: start;
  gap: 24px;
}

.payment-grid {
  grid-template-columns: repeat(2, minmax(0, 430px));
}

.receipt-layout {
  margin-top: 24px;
  grid-template-columns: minmax(0, 430px);
}

.app-payment-menu {
  max-width: 1080px;
  margin: 0 auto 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(12, 64, 118, 0.07);
}

.tax-button-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.app-payment-menu a {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 13px 14px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  text-align: center;
  font-weight: 800;
  background: #079584;
  box-shadow: 0 12px 20px rgba(7, 149, 132, 0.2);
}

.app-payment-menu a:hover,
.app-payment-menu a.active {
  background: #057c70;
  box-shadow: 0 16px 26px rgba(7, 149, 132, 0.3);
}

.menu-title {
  justify-content: flex-start;
  margin-bottom: 0;
}

.receipt-search-form {
  min-height: 306px;
}

.app-form-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: #263342;
}

.app-tax-form .app-form-title i {
  cursor: pointer;
}

.app-form-title h2 {
  margin: 0;
  color: #263342;
  font-size: 1.5rem;
  font-weight: 500;
}

.app-form-grid {
  display: grid;
  gap: 20px;
}

.app-tax-form label {
  color: #2f3b4f;
  font-size: 0.96rem;
  font-weight: 500;
}

.app-tax-form input,
.app-tax-form select {
  min-height: 56px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #e8eeee;
  color: #253345;
  font-size: 0.95rem;
}

.app-tax-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #5d6878 50%), linear-gradient(135deg, #5d6878 50%, transparent 50%);
  background-position: calc(100% - 17px) 21px, calc(100% - 12px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.app-tax-form input:focus,
.app-tax-form select:focus {
  border-color: #008a7a;
  outline: 2px solid rgba(0, 138, 122, 0.2);
}

.app-submit {
  width: 100%;
  min-height: 68px;
  margin-top: 34px;
  border-radius: 18px;
  background: #079584;
  box-shadow: 0 18px 28px rgba(7, 149, 132, 0.28);
  font-size: 1rem;
}

.date-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  text-align: center;
}

.date-row.single-date {
  grid-template-columns: minmax(160px, 220px);
  justify-content: center;
}

.date-field {
  display: grid;
  gap: 10px;
}

.date-field label {
  color: #172033;
  font-size: 1.04rem;
  font-weight: 700;
}

.app-tax-form .date-field input {
  min-height: 58px;
  border: 1px solid #a9a9a9;
  background: #ffffff;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}

.app-tax-form .date-field input::placeholder {
  color: #9a9a9a;
}

.amount-card {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(7, 149, 132, 0.18);
  border-radius: 10px;
  background: #f1fbf8;
  color: #172033;
}

.amount-card span {
  font-weight: 700;
}

.amount-card strong {
  color: #057c70;
  font-size: 1.2rem;
}

@keyframes revealField {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.field {
  display: grid;
  gap: 8px;
}

label {
  color: #27364a;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cbd9e8;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(25, 165, 111, 0.18);
  border-color: var(--green);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  font-weight: 700;
}

.success-panel {
  display: none;
  margin-top: 26px;
}

.success-panel.show {
  display: block;
}

.receipt {
  max-width: 760px;
  padding: 28px;
  background: var(--white);
}

.receipt-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px dashed #bdd0e4;
}

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

.receipt-grid div {
  padding: 12px;
  border-radius: var(--radius);
  background: #f4f9fd;
}

.map {
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.orders-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.orders-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.orders-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid #d7e4ee;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #f8fbfc;
  font-size: 0.9rem;
  font-weight: 800;
}

.orders-tabs a.active {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.admin-user-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--text);
}

.admin-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-dark);
  font-weight: 900;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.admin-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6fbf9;
  box-shadow: var(--shadow-soft);
}

.admin-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 6px;
}

.admin-stats strong {
  color: var(--blue-dark);
  font-size: 1.65rem;
}

.admin-filter {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 0.85fr 0.85fr auto auto;
  gap: 10px;
  align-items: end;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  margin-bottom: 18px;
}

.admin-filter input,
.admin-filter select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--text);
  background: #f8fbfc;
}

.order-list {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.order-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f1f9f6;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.order-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(17, 84, 102, 0.12);
}

.order-card-head h3 {
  margin: 0 0 4px;
  color: var(--blue-dark);
  font-size: 1rem;
  text-transform: uppercase;
}

.order-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.status-badge {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
}

.order-meta {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 16px 18px 18px;
}

.order-meta span {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(17, 84, 102, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.order-meta b {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.order-meta .wide {
  grid-column: span 2;
}

.order-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 18px 18px;
}

.whatsapp-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #eef8f1;
  color: var(--muted);
  font-size: 0.88rem;
}

.whatsapp-state i {
  color: var(--green);
  font-size: 1.15rem;
}

.whatsapp-state b {
  color: var(--text);
}

.admin-note {
  padding: 14px 16px;
  border: 1px solid #bdd7ed;
  border-radius: var(--radius);
  background: #eef7ff;
  color: #314258;
}

.admin-login {
  max-width: 460px;
  margin: 0 auto;
}

.admin-error {
  padding: 12px 14px;
  border: 1px solid #f0b8b8;
  border-radius: var(--radius);
  background: #fff1f1;
  color: #9b1c1c;
}

.admin-warning {
  padding: 14px 16px;
  margin-bottom: 18px;
  border: 1px solid #f1d596;
  border-radius: 8px;
  background: #fff8e5;
  color: #74550c;
  font-weight: 700;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(12, 64, 118, 0.07);
}

.admin-table {
  width: 100%;
  min-width: 1400px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  position: sticky;
  top: 0;
  background: var(--blue-dark);
  color: var(--white);
  font-weight: 800;
}

.policy {
  max-width: 920px;
}

.policy h2 {
  margin-top: 34px;
  font-size: 1.65rem;
}

.site-footer {
  color: #dbe9f7;
  background: #062f5c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  gap: 28px;
  padding: 56px 0 34px;
}

.site-footer h3 {
  color: var(--white);
}

.site-footer .brand {
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: #dbe9f7;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.copyright {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  color: #c9d9e9;
}

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

.reveal {
  animation: rise 0.7s ease both;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    background: var(--white);
    box-shadow: 0 18px 26px rgba(9, 48, 88, 0.11);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
  }

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

  .app-forms-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-grid {
    min-height: auto;
  }

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

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

  .admin-filter,
  .order-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .topbar .container,
  .stats,
  .form-grid,
  .receipt-grid,
  .grid-4,
  .grid-3,
  .footer-grid,
  .payment-methods {
    grid-template-columns: 1fr;
  }

  .admin-toolbar,
  .orders-topbar,
  .order-card-head {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-filter,
  .admin-stats,
  .order-meta {
    grid-template-columns: 1fr;
  }

  .order-meta .wide {
    grid-column: auto;
  }

  .topbar .container {
    display: grid;
  }

  .section {
    padding: 58px 0;
  }

  .hero-grid {
    padding: 48px 0;
  }

  .hero-actions,
  .receipt-head {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .brand span:last-child {
    max-width: 150px;
  }

  .brand-logo {
    width: 58px;
    height: 34px;
  }

  .app-payment-menu {
    padding: 18px;
  }

  .tax-button-row {
    grid-template-columns: 1fr;
  }
}
