@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #1f2328;
  --muted: #687076;
  --line: #dde3ea;
  --soft: #f6f8fb;
  --paper: #ffffff;
  --brand: #294f60;
  --brand-strong: #1d3f4d;
  --accent: #c08a4a;
  --ok: #147c48;
  --bad: #b42318;
  --shadow: 0 18px 45px rgba(31, 35, 40, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

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

.app-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: white;
  font-weight: 900;
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

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

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  padding-top: 24px;
}

.hero-panel {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(41, 79, 96, 0.08), rgba(192, 138, 74, 0.14)),
    linear-gradient(135deg, #ffffff 0%, #eef5f4 45%, #fbf2e7 100%);
  padding: 36px;
  box-shadow: var(--shadow);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 18px 0 0;
  color: #405057;
  font-size: 18px;
  line-height: 1.6;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.card-pad {
  padding: 22px;
}

.stack {
  display: grid;
  gap: 16px;
}

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

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

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

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

.section-head h1,
.section-head h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: 0;
}

.section-head p,
.muted {
  color: var(--muted);
}

.form {
  display: grid;
  gap: 13px;
}

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

.field span {
  color: #3b4348;
  font-size: 13px;
  font-weight: 700;
}

.input,
.textarea,
.select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}

.textarea {
  min-height: 92px;
  resize: vertical;
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(23, 111, 107, 0.14);
}

.btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 9px 14px;
  cursor: pointer;
  font-weight: 750;
  text-decoration: none;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.btn-primary {
  background: var(--brand);
  color: white;
}

.btn-primary:hover {
  background: var(--brand-strong);
}

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

.btn-danger {
  border-color: rgba(180, 35, 24, 0.24);
  background: #fff2f0;
  color: var(--bad);
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #ecf4f2;
  color: var(--brand-strong);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.pill-warm {
  background: #fff0e8;
  color: var(--accent);
}

.pill-ok {
  background: #edf8ef;
  color: var(--ok);
}

.notice {
  border: 1px solid #f1d1c6;
  border-radius: 8px;
  background: #fff7f4;
  color: #7c2d12;
  padding: 12px 14px;
  font-size: 14px;
}

.notice-ok {
  border-color: #badbcc;
  background: #f0fbf5;
  color: var(--ok);
}

.payment-result .card {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 40px auto;
}

.payment-result h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

table {
  width: 100%;
  border-collapse: collapse;
}

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

th {
  background: #f8fafc;
  color: #52606a;
  font-size: 12px;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.event-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.event-row:first-child {
  border-top: 0;
}

.dropzone {
  display: grid;
  min-height: 180px;
  place-items: center;
  border: 2px dashed #b8c3cb;
  border-radius: 8px;
  background: #fbfcfd;
  padding: 18px;
  text-align: center;
}

.qr {
  width: 220px;
  height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tiny {
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 820px) {
  .hero,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 340px;
    padding: 24px;
  }

  .topbar-inner,
  .container {
    width: min(100% - 20px, 1180px);
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Landing page components */
.topbar {
  border-bottom: 1px solid #e5ecec;
  background: #fff;
  backdrop-filter: none;
}

.topbar-inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 250px;
  gap: 18px;
  width: min(1440px, calc(100% - 78px));
  min-height: 74px;
  padding: 0;
}

.brand {
  gap: 2px;
  text-decoration: none;
}

.brand-logo,
.footer-logo {
  color: var(--brand);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -1.4px;
  line-height: 1;
}

.brand sup {
  color: var(--brand);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
  transform: translateY(-8px);
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.3vw, 45px);
}

.main-menu a {
  color: #28252c;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nav-actions {
  flex-wrap: nowrap;
  gap: 8px;
  min-width: 0;
}

.nav-login {
  min-width: 132px;
  min-height: 48px;
  border-radius: 18px;
  font-size: 16px;
}

.cart-button {
  position: relative;
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 18px;
  background: var(--brand);
  color: #fff;
  font-size: 0;
  font-weight: 900;
  line-height: 0;
  text-decoration: none;
}

.cart-icon {
  width: 22px;
  height: 22px;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -7px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #e94459;
  color: #fff;
  font-size: 12px;
}

.header-plan,
.header-panel-btn,
.header-logout-btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.header-plan {
  min-width: 126px;
  background: #edf5f3;
  color: var(--brand);
}

.header-panel-btn {
  border: 1px solid #d8e0e8;
  background: #fff;
  color: #24242a;
  text-decoration: none;
}

.header-logout-btn {
  border: 1px solid #ffc8c1;
  background: #fff7f6;
  color: #c92314;
  cursor: pointer;
}

.landing-page {
  overflow: hidden;
  background: #fff;
  color: #073a3a;
}

.landing-page h1,
.landing-page h2,
.landing-page h3 {
  color: var(--brand);
  font-family: "DM Serif Display", Georgia, serif;
  letter-spacing: 0;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(520px, 1fr);
  gap: 56px;
  width: min(1324px, calc(100% - 112px));
  min-height: 690px;
  margin: 0 auto;
  padding: 42px 0 68px;
  align-items: center;
}

.landing-copy {
  padding-left: 4px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--brand);
  font-size: 18px;
  font-weight: 800;
}

.landing-copy h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(50px, 4.6vw, 74px);
  line-height: 0.98;
}

.lead {
  max-width: 660px;
  margin: 18px 0 0;
  color: #073a3a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.landing-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.pill-button {
  min-width: 138px;
  min-height: 52px;
  border-radius: 16px;
}

.landing-page .btn-secondary {
  border-color: var(--brand);
  color: var(--brand);
}

.hero-media {
  position: relative;
  min-height: 612px;
}

.hero-photo-main {
  position: absolute;
  top: 0;
  right: 0;
  width: min(595px, 88%);
  height: 594px;
  object-fit: cover;
}

.video-card {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: min(380px, 58%);
  height: 252px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.16);
}

.video-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.28);
}

.video-card img,
.image-stage img,
.phone-stage img,
.faq-image img,
.use-case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  transform: translate(-50%, -50%);
}

.split-section,
.experience-section,
.faq-section {
  display: grid;
  grid-template-columns: minmax(440px, 1fr) minmax(440px, 0.92fr);
  gap: 64px;
  width: min(1380px, calc(100% - 112px));
  margin: 0 auto;
  padding: 34px 0 76px;
  align-items: center;
}

.image-stage,
.phone-stage,
.faq-image {
  position: relative;
  height: 595px;
}

.image-stage img,
.phone-stage img,
.faq-image img {
  border-radius: 0;
}

.floating-label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  min-width: 198px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  padding: 15px 28px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.qr-card-preview {
  position: absolute;
  top: 126px;
  left: 50%;
  display: grid;
  width: 304px;
  min-height: 390px;
  place-items: center;
  border: 1px solid #eee7dc;
  background: rgba(255, 255, 255, 0.92);
  color: #c69a55;
  font-family: Georgia, serif;
  font-size: 35px;
  font-weight: 700;
  transform: translateX(-50%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
}

.qr-card-preview small {
  margin: -34px 0;
  font-size: 28px;
}

.qr-card-preview i {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 8px solid #2b2b2b;
  color: #2b2b2b;
  font-size: 18px;
  font-style: normal;
}

.split-copy h2,
.experience-copy h2 {
  max-width: 620px;
  margin: 0 0 38px;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 0.98;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  margin-bottom: 30px;
}

.feature-row h3,
.feature-list h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 23px;
  font-weight: 800;
}

.feature-row p,
.feature-list p,
.use-case-card p,
.how-step p,
.faq-copy p {
  color: #0a3f3f;
  font-size: 15px;
  line-height: 1.55;
}

.star-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 22px;
  font-family: Georgia, serif;
}

.experience-section {
  grid-template-columns: minmax(480px, 0.95fr) minmax(520px, 1fr);
  padding-top: 26px;
}

.experience-copy h2 {
  max-width: 640px;
}

.feature-list {
  display: grid;
  gap: 34px;
}

.feature-list-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0;
  align-items: start;
}

.feature-list-item h3 {
  margin-bottom: 2px;
}

.phone-stage {
  height: 594px;
}

.phone-stage .floating-label {
  left: 0;
  top: -9px;
}

.use-cases-section,
.how-section {
  width: min(1268px, calc(100% - 112px));
  margin: 0 auto;
  padding: 54px 0 70px;
}

.use-cases-section h2,
.how-section h2 {
  margin: 0 0 82px;
  text-align: center;
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 28px;
}

.use-case-card {
  overflow: hidden;
  border-radius: 8px;
}

.use-case-card img {
  height: 230px;
  border-radius: 6px 6px 0 0;
}

.use-case-card > div {
  min-height: 234px;
  margin: -1px 0 0;
  border-radius: 6px;
  background: #fff;
  padding: 20px 34px 30px;
  text-align: center;
  box-shadow: 0 2px 11px rgba(0, 0, 0, 0.08);
}

.use-case-card h3 {
  margin: 0 0 17px;
  font-size: 30px;
  line-height: 1.05;
}

.how-section {
  padding-top: 40px;
}

.how-section h2 {
  margin-bottom: 50px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px;
  align-items: end;
}

.how-carousel {
  min-height: 654px;
}

.how-step {
  display: grid;
  justify-items: center;
  text-align: center;
  animation: howSlideIn 0.58s ease both;
}

.how-step:nth-child(2) {
  animation-delay: 0.06s;
}

.how-step:nth-child(3) {
  animation-delay: 0.12s;
}

.phone-mock {
  position: relative;
  display: grid;
  width: 210px;
  height: 448px;
  place-items: center;
  border: 8px solid #050505;
  border-radius: 34px;
  background: #f7f8fb;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 82px;
  height: 20px;
  border-radius: 0 0 13px 13px;
  background: #050505;
  transform: translateX(-50%);
}

.phone-screen {
  display: grid;
  width: 148px;
  height: 240px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #eef4f4);
  color: var(--brand);
  font-size: 28px;
  font-weight: 900;
}

.how-step strong {
  margin: 22px 0 8px;
  color: var(--brand);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 76px;
  line-height: 0.85;
}

.how-step p {
  max-width: 360px;
  margin: 0;
  color: var(--brand);
  font-size: 19px;
  font-weight: 800;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: #d7d7d7;
  cursor: pointer;
  padding: 0;
}

.slider-dots button.active {
  background: #8ea4a4;
}

@keyframes howSlideIn {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

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

.faq-section {
  grid-template-columns: minmax(420px, 0.88fr) minmax(560px, 1fr);
  align-items: start;
  padding-top: 30px;
}

.faq-image {
  height: 543px;
}

.faq-image img {
  border-radius: 6px;
}

.faq-image .floating-label {
  top: 58px;
  left: auto;
  right: 24px;
}

.faq-copy h2 {
  margin: 0 0 10px;
  font-size: 38px;
  line-height: 1.05;
}

.faq-copy h3 {
  margin: 0 0 20px;
  color: #111827;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.accordion {
  display: grid;
  gap: 13px;
}

.accordion-item {
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.11);
}

.accordion-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-left: 7px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: #071b45;
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.accordion-item:first-child button {
  border-left-color: var(--brand);
}

.accordion-item button span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #081b50;
  color: #fff;
  font-size: 12px;
}

.accordion-item p {
  margin: 0;
  padding: 0 18px 22px 25px;
  color: #071b45;
}

.landing-footer {
  margin-top: 10px;
  background: #061d55;
  color: #fff;
  padding: 88px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.9fr 1.1fr;
  gap: 58px;
  width: min(1316px, calc(100% - 112px));
  margin: 0 auto;
}

.footer-logo {
  color: #fff;
  font-size: 48px;
  margin-bottom: 24px;
}

.landing-footer p {
  max-width: 410px;
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

.landing-footer h3 {
  margin: 0 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  padding-bottom: 9px;
}

.landing-footer a {
  display: block;
  margin: 13px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.socials {
  display: flex;
  gap: 22px;
  margin-top: 24px;
  font-weight: 900;
}

.footer-bottom {
  width: min(1370px, calc(100% - 112px));
  margin: 78px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  padding-top: 18px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}

/* Pricing, product and cart pages */
.commerce-page {
  background: #fff;
  color: var(--brand);
}

.page-hero {
  position: relative;
  display: flex;
  height: 405px;
  align-items: center;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 63, 77, 0.84), rgba(41, 79, 96, 0.24), rgba(255, 255, 255, 0.08));
}

.page-hero h1 {
  position: relative;
  width: min(1180px, calc(100% - 112px));
  margin: 0 auto;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 42px;
  font-weight: 800;
}

.pricing-intro {
  display: grid;
  justify-items: center;
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 80px 0 88px;
  text-align: center;
}

.pricing-intro h2 {
  max-width: 720px;
  margin: 0 0 20px;
  font-size: clamp(48px, 5vw, 67px);
  line-height: 0.98;
}

.pricing-intro > p {
  max-width: 680px;
  margin: 0 0 38px;
  color: var(--brand);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.price-card {
  display: grid;
  width: min(405px, 100%);
  justify-items: center;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  padding: 44px 50px 34px;
  box-shadow: 0 14px 35px rgba(29, 63, 77, 0.24);
}

.price-card h3 {
  margin: 0 0 24px;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
}

.price-badge {
  display: inline-flex;
  min-width: 178px;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffe8a8, #daf6ed);
  color: var(--brand);
  font-size: 42px;
  font-weight: 800;
}

.price-card ul,
.product-summary ul {
  width: 100%;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  border-top: 1px solid rgba(255, 255, 255, 0.75);
  padding: 11px 0;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.price-card li:first-child {
  border-top: 0;
}

.btn-light {
  margin-top: 24px;
  min-width: 150px;
  border-radius: 12px;
  background: #fff;
  color: var(--brand);
}

.pricing-help {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  width: min(1296px, calc(100% - 40px));
  min-height: 270px;
  margin: 42px auto 0;
  align-items: center;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  padding: 48px 58px;
}

.pricing-help h2 {
  max-width: 620px;
  margin: 0 0 30px;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 45px;
  line-height: 1.16;
}

.help-logo {
  position: absolute;
  right: 180px;
  bottom: -30px;
  display: grid;
  width: 455px;
  height: 455px;
  place-items: center;
  border: 4px solid var(--brand);
  border-radius: 18px;
  background: #fff;
  color: var(--brand);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

.help-logo span {
  font-size: 210px;
  font-weight: 800;
  line-height: 1;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(430px, 540px) minmax(430px, 540px);
  gap: 100px;
  width: min(1180px, calc(100% - 112px));
  margin: 0 auto;
  padding: 96px 0 44px;
  align-items: center;
}

.product-image {
  position: relative;
  height: 540px;
}

.product-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-preview {
  width: 270px;
  min-height: 240px;
  top: auto;
  bottom: 84px;
}

.product-summary h1 {
  margin: 0 0 10px;
  color: var(--brand);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.12;
}

.product-summary .price-badge {
  min-width: 174px;
  min-height: 60px;
  font-size: 40px;
}

.product-summary hr {
  margin: 14px 0;
  border: 0;
  border-top: 1px solid #c8d7d7;
}

.product-summary h2 {
  margin: 0 0 8px;
  color: var(--brand);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 23px;
}

.product-summary li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 7px 0;
  color: var(--brand);
  font-size: 16px;
  font-weight: 600;
}

.product-summary .star-icon,
.welcome-board .star-icon {
  width: 18px;
  height: 18px;
  background: transparent;
  color: var(--brand);
  font-size: 18px;
}

.product-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(1268px, calc(100% - 112px));
  margin: 0 auto;
  border-top: 1px solid #c8d7d7;
  padding: 78px 0 54px;
}

.product-steps article {
  text-align: center;
}

.product-steps img {
  width: 100%;
  height: 214px;
  border-radius: 6px 6px 0 0;
  object-fit: cover;
}

.product-steps article > div {
  min-height: 224px;
  margin-top: -1px;
  border-radius: 6px;
  background: #fff;
  padding: 24px 45px;
  box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);
}

.product-steps strong {
  display: block;
  color: var(--brand);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 64px;
}

.product-steps p {
  margin: 18px 0 0;
  color: var(--brand);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
}

.product-description {
  width: min(1120px, calc(100% - 48px));
  margin: 20px auto 80px;
  color: #123f3f;
}

.product-description h2 {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 1.05;
}

.product-description h3 {
  margin: 36px 0 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
}

.product-description h4 {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 18px;
}

.product-description p {
  margin: 0 0 14px;
  color: #123f3f;
  font-size: 16px;
  line-height: 1.7;
}

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

.cart-page {
  background: #f2f2f2;
  color: var(--brand);
  padding: 84px 0 64px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 432px;
  gap: 44px;
  width: min(1220px, calc(100% - 56px));
  margin: 0 auto;
  align-items: start;
}

.cart-main h1 {
  margin: 0 0 10px;
  color: var(--brand);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  font-weight: 500;
}

.cart-note {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--brand);
  font-size: 17px;
  line-height: 1.55;
}

.cart-note a {
  color: #006dff;
  text-decoration: none;
}

.cart-box,
.cart-summary {
  background: #fff;
  padding: 42px;
}

.cart-box {
  margin-top: 22px;
}

.cart-box h2,
.cart-summary h2 {
  margin: 0 0 16px;
  color: var(--brand);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 23px;
  font-weight: 800;
}

.cart-content {
  min-height: 218px;
}

.cart-product {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 10px;
  align-items: start;
}

.cart-product img {
  width: 84px;
  height: 84px;
  object-fit: cover;
}

.cart-product h3 {
  margin: 0 0 8px;
  color: var(--brand);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
}

.cart-product p,
.cart-product a {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 18px;
}

.option-row {
  display: flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid #d4dddd;
  border-radius: 18px;
  margin: 13px 0;
  padding: 0 12px;
  color: var(--brand);
  font-size: 18px;
  cursor: pointer;
}

.option-row input {
  margin: 0 7px 0 0;
}

.red-note {
  margin: 8px 0 0;
  color: var(--brand);
  font-size: 15px;
}

.red-note::first-letter {
  color: var(--brand);
}

.subhead {
  margin-top: 22px !important;
}

.inline-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.welcome-board {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 34px;
}

.welcome-board h2 span {
  display: inline-block;
  border-radius: 6px;
  background: #148b53;
  color: #fff;
  padding: 4px 10px;
  font-size: 14px;
}

.welcome-board img {
  width: 190px;
  height: 150px;
  object-fit: cover;
}

.welcome-board strong {
  display: block;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 30px;
}

.welcome-board ul {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.welcome-board li {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0;
  color: var(--brand);
  font-size: 18px;
}

.welcome-board .red-note {
  grid-column: 1 / -1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-wide {
  grid-column: 1 / -1;
}

.add-event-btn {
  width: 100%;
  margin-top: 22px;
  border-color: var(--brand);
  border-radius: 18px;
  color: var(--brand);
}

.cart-info {
  margin: 18px 0 0;
  color: var(--brand);
  font-size: 16px;
}

.check-row {
  display: block;
  margin-top: 16px;
  color: var(--brand);
  font-size: 14px;
  line-height: 1.45;
}

.cart-summary {
  position: sticky;
  top: 104px;
  min-height: 560px;
  padding: 44px;
}

.cart-summary h3 {
  margin: 28px 0 10px;
  color: var(--brand);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
}

.cart-summary p {
  margin: 5px 0;
  color: var(--brand);
  font-size: 15px;
}

.cart-summary .star-icon {
  width: 14px;
  height: 14px;
  background: transparent;
  color: var(--brand);
  font-size: 14px;
}

.summary-total {
  margin: 24px 0;
}

.summary-total span,
.summary-total strong {
  display: block;
}

.summary-total strong {
  margin-top: 6px;
  color: var(--brand);
  font-size: 30px;
  font-weight: 500;
}

.promo-row {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 10px;
  margin-bottom: 18px;
}

.promo-row .input {
  border-color: var(--brand);
  border-radius: 18px;
}

.promo-row .btn,
.checkout-btn {
  border-radius: 18px;
}

.checkout-btn {
  width: 100%;
  min-height: 54px;
}

/* Contact and login pages */
.contact-page {
  background: #fff;
  color: var(--brand);
}

.contact-wrap {
  width: min(1296px, calc(100% - 48px));
  margin: 0 auto;
  padding: 16px 0 70px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 12px;
}

.contact-card {
  display: grid;
  min-height: 164px;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  align-items: center;
  border-radius: 6px;
  background: #fff;
  padding: 36px 44px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
}

.contact-icon.whatsapp {
  background: #25d366;
}

.contact-icon.mail {
  background: var(--brand);
}

.contact-card h2 {
  margin: 0 0 3px;
  color: #4b4d56;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 23px;
  font-weight: 800;
}

.contact-card p {
  margin: 0;
  color: var(--brand);
  font-size: 20px;
  line-height: 1.2;
}

.contact-card small {
  color: var(--brand);
}

.contact-heading {
  max-width: 690px;
  margin: 12px auto 30px;
  text-align: center;
}

.contact-heading h1 {
  margin: 0 0 6px;
  color: var(--brand);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 50px;
  line-height: 1;
}

.contact-heading p {
  margin: 0;
  color: var(--brand);
  font-size: 14px;
  line-height: 1.5;
}

.contact-form {
  border-radius: 6px;
  background: #fff;
  padding: 42px 44px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.08);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}

.contact-form .input,
.contact-form .textarea {
  min-height: 54px;
  border-color: var(--brand);
  border-radius: 8px;
  color: var(--brand);
}

.contact-message {
  grid-column: 1 / -1;
  min-height: 138px;
}

.contact-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 16px;
  border-radius: 4px;
}

.login-page {
  display: grid;
  min-height: calc(100vh - 78px);
  grid-template-rows: 1fr auto;
  justify-items: center;
  background: #f4f9fb;
  color: var(--brand);
  padding: 44px 18px 28px;
}

.login-panel {
  width: min(504px, 100%);
}

.login-heading {
  margin-bottom: 48px;
  text-align: center;
}

.login-heading h1,
.login-heading p {
  margin: 0;
  color: var(--brand);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
}

.login-form {
  display: grid;
  gap: 22px;
}

.login-field {
  display: grid;
  gap: 8px;
  color: var(--brand);
  font-size: 16px;
}

.login-input-wrap {
  display: grid;
  min-height: 62px;
  grid-template-columns: 36px 1fr 42px;
  align-items: center;
  border-radius: 18px;
  background: #e9eeee;
  padding: 0 18px;
}

.login-input-wrap i {
  color: #cbd2d2;
  font-style: normal;
  font-size: 22px;
}

.login-input-wrap input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--brand);
  font-size: 16px;
  outline: none;
}

.login-input-wrap input::placeholder {
  color: #cbd2d2;
}

.login-input-wrap button {
  border: 0;
  background: transparent;
  color: #c1c9c9;
  cursor: pointer;
  font-size: 24px;
}

.login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: -2px;
  color: var(--brand);
  font-size: 16px;
}

.login-row a {
  color: var(--brand);
  text-decoration: none;
}

.login-submit {
  width: 226px;
  min-height: 58px;
  margin: 12px auto 0;
  border-radius: 18px;
  font-size: 16px;
}

.login-footer {
  color: var(--brand);
  font-size: 16px;
  text-align: center;
}

.experience-section {
  grid-template-columns: minmax(500px, 0.9fr) minmax(560px, 1fr);
  gap: 72px;
  align-items: center;
  padding-top: 58px;
}

.experience-copy {
  max-width: 650px;
}

.experience-copy h2 {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(44px, 3.45vw, 58px);
  line-height: 1.02;
}

.experience-section .feature-list {
  gap: 24px;
}

.experience-section .feature-list-item {
  grid-template-columns: 42px 1fr;
  gap: 2px;
}

.experience-section .star-icon {
  width: 36px;
  height: 36px;
  margin-top: 3px;
}

.experience-section .feature-list h3 {
  margin-bottom: 7px;
  font-size: 23px;
  line-height: 1.2;
}

.experience-section .feature-list p {
  max-width: 585px;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.experience-copy > .pill-button {
  margin-top: 24px;
  min-width: 138px;
  min-height: 50px;
}

@media (max-width: 1100px) {
  .main-menu {
    display: none;
  }

  .topbar-inner {
    grid-template-columns: 1fr auto;
    width: min(100% - 28px, 760px);
  }

  .landing-hero,
  .split-section,
  .experience-section,
  .faq-section,
  .use-cases-section,
  .how-section {
    width: min(100% - 32px, 760px);
    grid-template-columns: 1fr;
  }

  .landing-hero {
    min-height: auto;
    gap: 28px;
    padding-top: 26px;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-photo-main {
    width: 86%;
    height: 500px;
  }

  .video-card {
    width: 62%;
  }

  .use-case-grid,
  .how-grid,
  .footer-grid,
  .product-hero,
  .product-steps,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .how-carousel {
    min-height: auto;
  }

  .faq-image .floating-label {
    right: 16px;
  }

  .pricing-help {
    grid-template-columns: 1fr;
    padding-bottom: 260px;
  }

  .help-logo {
    right: 50%;
    bottom: -80px;
    width: 330px;
    height: 330px;
    transform: translateX(50%);
  }

  .product-hero,
  .product-steps {
    width: min(100% - 32px, 760px);
  }

  .cart-summary {
    position: static;
  }

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

  .experience-section {
    gap: 34px;
  }

  .experience-copy {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    grid-template-columns: 1fr auto;
    width: calc(100% - 22px);
  }

  .brand-logo {
    font-size: 24px;
  }

  .nav-actions {
    gap: 6px;
  }

  .header-plan {
    display: none;
  }

  .header-panel-btn,
  .header-logout-btn {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }

  .nav-login {
    min-width: 98px;
    min-height: 42px;
    font-size: 14px;
  }

  .cart-button {
    width: 43px;
    height: 43px;
  }

  .landing-copy h1 {
    font-size: 46px;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-photo-main {
    width: 100%;
    height: 390px;
  }

  .video-card {
    left: 20px;
    bottom: 0;
    width: 76%;
    height: 190px;
  }

  .image-stage,
  .phone-stage,
  .faq-image {
    height: 430px;
  }

  .qr-card-preview {
    width: 236px;
    min-height: 304px;
    font-size: 28px;
  }

  .split-copy h2,
  .experience-copy h2,
  .use-cases-section h2,
  .how-section h2 {
    font-size: 42px;
  }

  .experience-section .feature-list-item {
    grid-template-columns: 38px 1fr;
  }

  .experience-section .feature-list h3 {
    font-size: 20px;
  }

  .phone-mock {
    width: 178px;
    height: 360px;
  }

  .footer-grid,
  .footer-bottom {
    width: calc(100% - 32px);
  }

  .page-hero {
    height: 290px;
  }

  .page-hero h1,
  .cart-layout,
  .product-description {
    width: calc(100% - 32px);
  }

  .pricing-help {
    width: calc(100% - 32px);
    padding: 32px 24px 210px;
  }

  .pricing-help h2 {
    font-size: 32px;
  }

  .help-logo {
    width: 250px;
    height: 250px;
  }

  .product-image {
    height: 390px;
  }

  .copy-grid,
  .form-grid,
  .inline-options,
  .welcome-board,
  .promo-row {
    grid-template-columns: 1fr;
  }

  .cart-box,
  .cart-summary {
    padding: 26px 20px;
  }

  .contact-wrap {
    width: calc(100% - 28px);
  }

  .contact-card {
    grid-template-columns: 56px 1fr;
    padding: 24px 22px;
  }

  .contact-icon {
    width: 56px;
    height: 56px;
    font-size: 26px;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .login-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
