@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@700;800&family=Dancing+Script:wght@700&family=Inter:wght@400;500;600;700;800;900&family=Montserrat:wght@500;700;900&family=Playfair+Display:wght@700;900&family=Poppins:wght@400;600;700;900&display=swap");

:root {
  --bg: #f5f7f4;
  --surface: #ffffff;
  --ink: #17201b;
  --muted: #66736d;
  --line: #dde5df;
  --primary: #0f766e;
  --secondary: #f7c948;
  --danger: #b42318;
  --shadow: 0 18px 50px rgba(19, 35, 30, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(245, 247, 244, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: white;
  background: #0f766e;
  letter-spacing: 0;
  font-size: 13px;
}
.nav { display: flex; align-items: center; gap: 18px; color: var(--muted); font-weight: 600; }
.nav a:hover { color: var(--primary); }

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 48px;
  align-items: center;
  padding: 48px clamp(18px, 5vw, 72px);
}
.home-hero {
  background:
    linear-gradient(115deg, rgba(15, 118, 110, .16), rgba(247, 201, 72, .12)),
    url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1800&q=80") center/cover;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  display: block;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(38px, 5.5vw, 76px); line-height: .98; letter-spacing: 0; margin-bottom: 20px; }
h2 { font-size: clamp(26px, 3vw, 42px); line-height: 1.08; letter-spacing: 0; }
h3 { font-size: 20px; }
p { color: var(--muted); line-height: 1.65; }
.hero-copy p { max-width: 650px; font-size: 18px; }
.hero-actions, .form-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-1px); }
.btn.primary { color: white; background: var(--primary); box-shadow: 0 14px 30px rgba(15, 118, 110, .22); }
.btn.secondary { color: var(--ink); background: white; border-color: var(--line); }
.btn.ghost { color: var(--ink); background: rgba(255,255,255,.68); border-color: rgba(255,255,255,.5); }
.btn.danger { color: white; background: var(--danger); }
.hero-showcase { display: grid; place-items: center; }
.hero-showcase h2 {
  max-width: 420px;
  margin-bottom: 14px;
  text-align: center;
  color: #111827;
}

.demo-card {
  position: relative;
  width: min(100%, 360px);
  min-height: 610px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  padding: 30px 28px;
  border: 1px solid rgba(214, 168, 79, .58);
  border-radius: 24px;
  color: #fff7df;
  background:
    radial-gradient(circle at 50% 31%, rgba(214, 168, 79, .25), transparent 18%),
    linear-gradient(145deg, #030303, #16110a 62%, #030303);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .3);
}
.demo-card-lines {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(214, 168, 79, .55);
  border-radius: 18px;
  pointer-events: none;
}
.demo-card-lines::before,
.demo-card-lines::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d6a84f);
}
.demo-card-lines::before { top: 36px; right: 0; transform: rotate(-36deg); }
.demo-card-lines::after { left: 0; bottom: 44px; transform: rotate(-36deg); }
.demo-logo {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(214, 168, 79, .62);
  border-radius: 999px;
  color: #f8e3ae;
  font-family: Cinzel, serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
}
.demo-photo {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  margin-top: 14px;
  border: 3px solid #d6a84f;
  border-radius: 999px;
  color: #111;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, .2), transparent),
    radial-gradient(circle at 50% 38%, #f7e3bd 0 15%, #9a7140 16% 24%, #1c1712 25% 100%);
  box-shadow: 0 0 0 7px rgba(214, 168, 79, .12), 0 18px 35px rgba(0, 0, 0, .45);
  font-family: Cinzel, serif;
  font-size: 32px;
  font-weight: 800;
}
.demo-card h3 {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  color: #ffffff;
  font-family: Cinzel, serif;
  font-size: 27px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .7);
  -webkit-text-stroke: 1px rgba(214, 168, 79, .65);
}
.demo-role {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: #d6a84f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.demo-links {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
}
.demo-links button {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(214, 168, 79, .55);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: #fff7df;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}
.demo-links svg { width: 18px; height: 18px; color: #d6a84f; }
.demo-card small {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: #e8d7b2;
  line-height: 1.45;
  text-align: center;
}
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(3, 7, 18, .68);
}
.demo-modal-card {
  position: relative;
  width: min(100%, 430px);
  padding: 26px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.demo-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 28px;
}
.landing-body .demo-modal {
  background: rgba(0, 0, 0, .76);
  backdrop-filter: blur(10px);
}
.landing-body .demo-modal-card {
  border: 1px solid rgba(214, 168, 79, .36);
  color: #fff8e7;
  background:
    radial-gradient(circle at top right, rgba(214, 168, 79, .2), transparent 36%),
    #080706;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .58), 0 0 50px rgba(214, 168, 79, .18);
}
.landing-body .demo-modal-card h2 {
  color: #ffffff;
}
.landing-body .demo-modal-card p {
  color: rgba(255, 248, 231, .68);
}
.landing-body .demo-modal-card .eyebrow {
  color: #d6a84f;
}
.landing-body .demo-modal-close {
  color: #f8e4ad;
}

.phone-card, .digital-card {
  width: min(100%, 390px);
  min-height: 620px;
  overflow: hidden;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}
.phone-card {
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: rotate(2deg);
}
.cover { width: 100%; height: 155px; border-radius: 22px; background: linear-gradient(135deg, #0f766e, #f7c948); }
.avatar, .card-photo {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  margin-top: -52px;
  border: var(--photo-border-width, 5px) solid var(--photo-border-color, white);
  border-radius: 999px;
  background: #ecfdf5;
  color: #0f766e;
  font-weight: 900;
  object-fit: cover;
  cursor: pointer;
}
.quick-links { display: flex; justify-content: center; gap: 10px; margin: 20px 0; }
.quick-links span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #edf7f5;
  color: var(--primary);
}
.card-button {
  width: 100%;
  display: block;
  padding: 14px;
  border-radius: var(--radius);
  color: white;
  background: var(--ink);
  font-weight: 800;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 72px clamp(18px, 5vw, 72px);
}
.section-heading { grid-column: 1 / -1; max-width: 680px; }
.info-card, .checkout-card, .builder-panel, .preview-panel, .admin-tools, .table-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(19, 35, 30, .06);
}
.info-card { padding: 24px; }
.info-card > svg { color: var(--primary); width: 28px; height: 28px; margin-bottom: 18px; }
.info-card strong { font-size: 22px; color: var(--ink); }
.wide-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(18px, 5vw, 72px) 70px;
  padding: 38px;
  border-radius: var(--radius);
  background: #10231f;
  color: white;
}
.wide-band p { max-width: 780px; color: #dbe7e3; }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.hidden { display: none !important; }
.admin-login {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: 32px clamp(18px, 5vw, 72px);
}
.login-card {
  width: min(100%, 440px);
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.login-card form {
  display: grid;
  gap: 12px;
}
.login-card label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}
.login-error {
  min-height: 20px;
  margin: 0;
  color: var(--danger);
  font-weight: 800;
}
.admin-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.builder-layout, .checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  gap: 24px;
  padding: 28px clamp(16px, 4vw, 56px) 56px;
}
.builder-panel, .preview-panel, .checkout-card, .checkout-preview { padding: 22px; }
.panel-head h1, .checkout-card h1, .admin-head h1 { font-size: clamp(30px, 3vw, 46px); }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.editor-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
}
.editor-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 9px 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}
.editor-tabs button.active {
  color: white;
  background: var(--primary);
}
.editor-tabs svg { width: 17px; height: 17px; }
.full { grid-column: 1 / -1; }
.form-section h2 { font-size: 20px; padding-top: 12px; margin-bottom: 0; }
label { display: grid; gap: 8px; color: var(--ink); font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--ink);
  background: #fbfcfb;
  outline: none;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15, 118, 110, .14); }
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}
.background-options,
.top-options,
.pattern-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}
.background-options legend,
.top-options legend,
.pattern-options legend {
  padding: 0 8px;
  font-weight: 800;
}
.background-options label,
.top-options label,
.pattern-options label {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--muted);
}
.background-options input,
.top-options input,
.pattern-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.background-options label:has(input:checked),
.top-options label:has(input:checked),
.pattern-options label:has(input:checked) {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, .14);
  color: var(--ink);
}
.bg-thumb {
  min-height: 82px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}
.bg-thumb.no-bg {
  background:
    linear-gradient(45deg, #eef2f7 25%, transparent 25%),
    linear-gradient(-45deg, #eef2f7 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #eef2f7 75%),
    linear-gradient(-45deg, transparent 75%, #eef2f7 75%);
  background-size: 18px 18px;
  background-position: 0 0, 0 9px, 9px -9px, -9px 0;
}
.pattern-thumb {
  background-color: #f7fbf8;
  background-size: cover;
  filter: opacity(.7);
}
.checkbox-grid legend { padding: 0 8px; font-weight: 800; }
.checkbox-grid label, .toggle-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}
.checkbox-grid input, .toggle-row input { width: auto; }
.sticky-preview { position: sticky; top: 96px; }
.preview-toolbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 800;
}
.preview-toolbar a { color: var(--primary); }

.digital-card {
  --card-primary: #0f766e;
  --card-secondary: #f7c948;
  --card-button: #0f172a;
  --card-text: #111827;
  --card-font: Inter;
  --card-size: 16px;
  --card-bg-opacity: .78;
  --card-bg-overlay: .14;
  --logo-initials-outline-color: transparent;
  --logo-initials-outline-width: 0px;
  --logo-initials-font-style: normal;
  --logo-initials-font-weight: 900;
  --logo-initials-letter-spacing: 0;
  --logo-size: 1;
  --logo-opacity: 1;
  position: relative;
  padding: 24px;
  color: var(--card-text);
  font-family: var(--card-font), sans-serif;
  font-size: var(--card-size);
  background: var(--card-bg-color);
}
.digital-card .card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: var(--card-bg-opacity);
}
.digital-card .card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, var(--card-bg-overlay));
}
.digital-card .card-pattern {
  position: absolute;
  inset: 0;
  background: var(--pattern-color);
  opacity: var(--pattern-opacity);
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}
.digital-card .card-inner { position: relative; z-index: 1; min-height: 570px; display: flex; flex-direction: column; }
.card-top {
  min-height: 160px;
  border-radius: 22px;
  padding: 18px;
  color: white;
  background: linear-gradient(135deg, var(--card-top-1), var(--card-top-2));
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.card-logo {
  max-width: calc(86px * var(--logo-size));
  max-height: calc(48px * var(--logo-size));
  object-fit: contain;
  margin-left: auto;
  cursor: pointer;
  opacity: var(--logo-opacity);
}
.card-logo-initials {
  display: grid;
  place-items: center;
  width: auto;
  min-width: 0;
  min-height: 58px;
  margin-left: auto;
  color: var(--logo-initials-color);
  background: transparent;
  font-family: var(--logo-initials-font), sans-serif;
  font-size: calc(36px * var(--logo-size));
  font-style: var(--logo-initials-font-style);
  font-weight: var(--logo-initials-font-weight);
  letter-spacing: var(--logo-initials-letter-spacing);
  -webkit-text-stroke: var(--logo-initials-outline-width) var(--logo-initials-outline-color);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .18);
  box-shadow: none;
  cursor: pointer;
  opacity: var(--logo-opacity);
}
.logo-effect-soft { filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .3)); }
.logo-effect-neon-cyan { filter: drop-shadow(0 0 6px #22d3ee) drop-shadow(0 0 14px #22d3ee); }
.logo-effect-neon-pink { filter: drop-shadow(0 0 6px #f0abfc) drop-shadow(0 0 14px #ec4899); }
.logo-effect-gold { filter: drop-shadow(0 0 5px #facc15) drop-shadow(0 0 13px rgba(250, 204, 21, .8)); }
.logo-effect-white-glow { filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 13px rgba(255, 255, 255, .8)); }
.digital-card [data-edit-target]:hover {
  outline: 2px solid rgba(15, 118, 110, .55);
  outline-offset: 3px;
}
.card-photo.rounded { border-radius: 24px; }
.card-photo.square { border-radius: 8px; }
.digital-card h2 { margin: 18px 0 4px; font-size: 30px; color: var(--card-text); }
.digital-card .role { color: var(--card-primary); font-weight: 800; margin-bottom: 4px; }
.digital-card .bio { margin: 18px 0; color: var(--card-text); opacity: .74; }
.contact-list { display: grid; gap: 10px; margin-top: auto; }
.contact-list a, .contact-list button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 0;
  border-radius: var(--radius);
  color: white;
  background: var(--card-button);
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}
.contact-list svg { width: 18px; height: 18px; flex: 0 0 auto; }
.qr-box {
  display: grid;
  place-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
  text-align: center;
}
.qr-box p { margin: 0; font-size: 14px; }

.template-premium { background: #fffdf7; }
.template-store .card-top { background: linear-gradient(135deg, var(--card-top-1), var(--card-top-2)); }
.template-store .contact-list a, .template-store .contact-list button { border-radius: 999px; }
.template-minimal { box-shadow: none; border: 1px solid var(--line); }
.template-minimal .card-top { min-height: 100px; background: linear-gradient(135deg, var(--card-top-1), var(--card-top-2)); color: var(--ink); }
.template-minimal .card-photo { margin-top: -30px; width: 92px; height: 92px; }
.template-dark { background: #111111; color: #f8fafc; }
.template-dark .card-bg::after { background: rgba(0, 0, 0, .18); }
.template-dark h2, .template-dark .bio { color: #f8fafc; }
.template-dark .card-top { background: linear-gradient(135deg, var(--card-top-1), var(--card-top-2)); }
.template-dark .avatar, .template-dark .card-photo { border-color: #111111; }

.checkout-layout { align-items: start; }
.summary-box { display: grid; gap: 12px; margin: 22px 0; }
.summary-line { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.summary-total { font-size: 24px; font-weight: 900; }
.payment-note {
  display: flex;
  gap: 12px;
  margin: 18px 0;
  padding: 14px;
  border-radius: var(--radius);
  background: #eefbf8;
}
.payment-note p { margin: 0; }
.hidden { display: none !important; }
.export-note {
  width: 100%;
  margin: 0 0 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
  font-size: 14px;
}

.public-body { min-height: 100vh; background: radial-gradient(circle at top, #dceeea, var(--bg)); }
.public-card-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 26px;
}
.public-privacy { text-align: center; font-size: 13px; }

.admin-layout { padding: 28px clamp(16px, 4vw, 56px) 56px; }
.admin-head { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 22px; }
.admin-tools { display: flex; align-items: end; justify-content: space-between; gap: 18px; padding: 18px; margin-bottom: 18px; }
.admin-tools label { min-width: min(420px, 100%); }
.demo-storage-warning {
  margin: 0;
  max-width: 420px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.stats { display: flex; flex-wrap: wrap; gap: 10px; }
.stat { padding: 10px 12px; border-radius: var(--radius); background: #eefbf8; font-weight: 800; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 980px; }
th, td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.status-pill { display: inline-flex; padding: 6px 9px; border-radius: 999px; background: #eefbf8; color: #0f766e; font-weight: 800; font-size: 12px; }
.row-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.mini-btn {
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius);
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 800;
}
.mini-btn:hover { border-color: var(--primary); color: var(--primary); }
.media-cleanup {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 0 8px;
}
.ai-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
}
.ai-panel p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero, .builder-layout, .checkout-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .section-grid { grid-template-columns: 1fr; }
  .wide-band, .footer, .admin-head, .admin-tools { flex-direction: column; align-items: flex-start; }
  .sticky-preview { position: static; }
}
@media (max-width: 680px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .form-grid, .checkbox-grid, .background-options, .top-options, .pattern-options { grid-template-columns: 1fr; }
  .hero-actions .btn, .form-actions .btn { width: 100%; }
  .digital-card, .phone-card { min-height: 560px; }
  h1 { font-size: 38px; }
}

.editor-body { background: #eef2f1; }
.nfc-editor {
  display: grid;
  grid-template-columns: 280px minmax(360px, 1fr) 320px;
  gap: 14px;
  height: calc(100vh - 76px);
  padding: 14px;
}
.editor-sidebar,
.properties-panel,
.editor-workspace {
  min-height: 0;
  overflow: auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.editor-section {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}
.template-list,
.layer-list,
.property-controls {
  display: grid;
  gap: 8px;
}
.template-list button,
.layer-list button,
.tool-grid button,
.property-controls button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
  padding: 10px;
  text-align: left;
  cursor: pointer;
  font-weight: 800;
}
.template-list button:hover,
.layer-list button:hover,
.layer-list button.active {
  border-color: var(--primary);
  color: var(--primary);
}
.layer-list button {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.layer-list small { color: var(--muted); font-weight: 700; }
.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.tool-grid button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
}
.tool-grid svg { width: 16px; height: 16px; }
.editor-workspace {
  display: grid;
  grid-template-rows: auto 1fr;
}
.editor-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}
.editor-topbar input { max-width: 250px; }
.guide-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.guide-toggle input { width: auto; }
.stage-wrap {
  display: grid;
  place-items: center;
  overflow: auto;
  padding: 22px;
  background:
    linear-gradient(45deg, rgba(15, 23, 42, .04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(15, 23, 42, .04) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(15, 23, 42, .04) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(15, 23, 42, .04) 75%);
  background-size: 28px 28px;
  background-position: 0 0, 0 14px, 14px -14px, -14px 0;
}
.card-stage {
  position: relative;
  width: 360px;
  height: 640px;
  overflow: visible;
  border-radius: 24px;
  background: white;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .18);
}
.smart-guides {
  position: absolute;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}
.guide-line {
  position: absolute;
  background: #14b8a6;
  box-shadow: 0 0 0 1px rgba(20, 184, 166, .18);
}
.guide-line.vertical {
  top: -200px;
  bottom: -200px;
  width: 1px;
}
.guide-line.horizontal {
  left: -200px;
  right: -200px;
  height: 1px;
}
.guide-distance {
  position: absolute;
  padding: 3px 6px;
  border-radius: 999px;
  color: #0f766e;
  background: #ecfdf5;
  border: 1px solid rgba(20, 184, 166, .28);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}
.canvas-layer {
  position: absolute;
  user-select: none;
  cursor: move;
  display: grid;
  place-items: center;
  transform-origin: center;
  white-space: pre-wrap;
  overflow: visible;
  overflow-wrap: anywhere;
  word-break: normal;
  line-height: 1.15;
  padding: 12px;
}
.canvas-layer.selected {
  outline: 2px solid #14b8a6;
  outline-offset: 2px;
}
.layer-text { line-height: 1.15; }
.layer-photo,
.layer-logo {
  color: #64748b;
  font-weight: 900;
  background-size: cover;
  background-position: center;
}
.layer-inner-image {
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: center;
  pointer-events: none;
  user-select: none;
}
.canvas-layer.image-adjusting {
  cursor: grab;
  outline: 2px dashed #f2c35b;
  outline-offset: 4px;
}
.canvas-layer.image-adjusting:active {
  cursor: grabbing;
}
.image-mode-actions,
.image-adjust-panel {
  display: grid;
  gap: 10px;
}
.image-mode-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.image-mode-actions button.active {
  color: #050505;
  background: linear-gradient(135deg, #f2c35b, #d4a63a);
  border-color: #f2c35b;
}
.image-adjust-panel {
  padding: 12px;
  border: 1px solid rgba(212, 166, 58, .28);
  border-radius: 8px;
  background: rgba(212, 166, 58, .08);
}
.layer-icon {
  padding: 8px;
  aspect-ratio: 1;
}
.layer-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.8;
}
.resize-handle {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #14b8a6;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .2);
  cursor: nwse-resize;
  z-index: 5;
}
.resize-handle.handle-se { right: -7px; bottom: -7px; cursor: nwse-resize; }
.resize-handle.handle-ne { right: -7px; top: -7px; cursor: nesw-resize; }
.resize-handle.handle-sw { left: -7px; bottom: -7px; cursor: nesw-resize; }
.resize-handle.handle-nw { left: -7px; top: -7px; cursor: nwse-resize; }
.resize-handle.handle-n { top: -7px; left: calc(50% - 7px); cursor: ns-resize; }
.resize-handle.handle-e { right: -7px; top: calc(50% - 7px); cursor: ew-resize; }
.resize-handle.handle-s { bottom: -7px; left: calc(50% - 7px); cursor: ns-resize; }
.resize-handle.handle-w { left: -7px; top: calc(50% - 7px); cursor: ew-resize; }
.layer-qr {
  display: grid;
  place-items: center;
  gap: 4px;
  text-align: center;
  border: 1px solid rgba(15, 23, 42, .14);
}
.qr-editor-render,
.qr-render {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.qr-editor-render canvas,
.qr-editor-render img,
.qr-render canvas,
.qr-render img {
  width: 100% !important;
  height: 100% !important;
}
.qr-center-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 30%;
  height: 30%;
  border-radius: 999px;
  color: #050505;
  background: #ffffff;
  border: 1px solid rgba(212, 166, 58, .6);
  font-size: 9px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}
.qr-center-logo svg {
  width: 62%;
  height: 62%;
}
.qr-missing {
  padding: 10px;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #d4a63a;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}
.layer-qr svg {
  width: 52%;
  height: 52%;
}
.layer-qr span {
  font-size: 10px;
  font-weight: 900;
}
.layer-line {
  min-height: 1px;
  padding: 0;
}
.layer-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.12;
  min-width: max-content;
}
.layer-button svg { width: 17px; height: 17px; flex: 0 0 auto; }
.canvas-layer.near-limit {
  outline: 2px dashed #f59e0b;
  outline-offset: 3px;
}
.text-warning {
  display: block;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 8px;
}
.editor-render-card {
  display: grid;
  place-items: center;
  min-height: 690px;
  padding: 0;
  background: transparent;
}
.editor-render-card .render-stage {
  box-shadow: none;
  transform-origin: top center;
}
.editor-render-card .canvas-layer {
  cursor: default;
}
.property-controls label,
.properties-panel label {
  display: grid;
  gap: 7px;
  font-size: 13px;
}
.property-controls textarea {
  min-height: 80px;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.preset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.preset-grid button {
  min-height: 36px;
}
#selectionHint,
.properties-panel small {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .nfc-editor {
    grid-template-columns: 1fr;
    height: auto;
  }
  .editor-sidebar,
  .properties-panel,
  .editor-workspace {
    max-height: none;
  }
}

@media (max-width: 460px) {
  .stage-wrap { padding: 12px; }
  .card-stage {
    width: min(360px, calc(100vw - 32px));
    height: auto;
    aspect-ratio: 9 / 16;
  }
}

.landing-body {
  min-height: 100vh;
  color: #fff8e7;
  background:
    radial-gradient(circle at 78% 18%, rgba(214, 168, 79, .22), transparent 28%),
    radial-gradient(circle at 14% 12%, rgba(255, 215, 128, .12), transparent 24%),
    linear-gradient(135deg, #030303 0%, #0b0907 48%, #020202 100%);
}
.landing-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at top, #000 0 34%, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at top, #000 0 34%, transparent 76%);
}
.landing-header {
  background: rgba(3, 3, 3, .72);
  border-bottom-color: rgba(214, 168, 79, .18);
  backdrop-filter: blur(20px);
}
.landing-brand,
.landing-nav a {
  color: #fff8e7;
}
.landing-brand-mark {
  color: #171009;
  background: linear-gradient(135deg, #f8e4ad, #d6a84f 48%, #a87321);
  box-shadow: 0 0 28px rgba(214, 168, 79, .28);
}
.landing-nav {
  color: rgba(255, 248, 231, .72);
}
.landing-nav a:hover {
  color: #f8e4ad;
}
.landing-nav .nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(214, 168, 79, .45);
  border-radius: 999px;
  color: #0a0704;
  background: linear-gradient(135deg, #f8e4ad, #d6a84f);
  box-shadow: 0 10px 30px rgba(214, 168, 79, .18);
}
.premium-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, .98fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  overflow: hidden;
  padding: clamp(42px, 6vw, 82px) clamp(18px, 6vw, 86px) clamp(44px, 6vw, 76px);
}
.premium-copy,
.premium-showcase,
.how-section {
  animation: premiumIn .75s ease both;
}
.premium-showcase {
  animation-delay: .14s;
}
.premium-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #f8e4ad;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.premium-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, #d6a84f, transparent);
}
.premium-copy h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(43px, 6.2vw, 86px);
  line-height: .96;
  text-shadow: 0 18px 52px rgba(0, 0, 0, .58);
}
.premium-subtitle {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 248, 231, .78);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.72;
}
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 710px;
  margin-bottom: 28px;
}
.feature-item {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(214, 168, 79, .2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}
.feature-item span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: #f8e4ad;
  background: rgba(214, 168, 79, .12);
  box-shadow: 0 0 24px rgba(214, 168, 79, .18);
}
.feature-item svg {
  width: 18px;
  height: 18px;
}
.feature-item strong,
.feature-item small {
  display: block;
}
.feature-item strong {
  margin-bottom: 4px;
  color: #fff8e7;
  font-size: 14px;
}
.feature-item small {
  color: rgba(255, 248, 231, .58);
  line-height: 1.35;
}
.premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.gold-primary {
  color: #130d06;
  background: linear-gradient(135deg, #fff1bd, #d6a84f 52%, #9b681d);
  border-color: rgba(255, 230, 166, .5);
  box-shadow: 0 16px 40px rgba(214, 168, 79, .24), 0 0 0 1px rgba(255, 255, 255, .06) inset;
}
.gold-secondary {
  color: #f8e4ad;
  background: rgba(255, 255, 255, .055);
  border-color: rgba(214, 168, 79, .34);
}
.gold-primary:hover,
.gold-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(214, 168, 79, .3);
}
.security-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 248, 231, .66);
  font-size: 14px;
}
.security-note svg {
  width: 17px;
  height: 17px;
  color: #d6a84f;
}
.premium-showcase {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 680px;
  perspective: 1200px;
}
.premium-showcase::before {
  content: "";
  position: absolute;
  width: min(84vw, 560px);
  height: min(84vw, 560px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(214, 168, 79, .28), rgba(214, 168, 79, .08) 35%, transparent 66%);
  filter: blur(8px);
}
.premium-card {
  position: relative;
  width: min(100%, 392px);
  min-height: 666px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 12px;
  overflow: hidden;
  padding: 24px 22px 22px;
  border: 1px solid rgba(248, 228, 173, .54);
  border-radius: 30px;
  color: #fff8e7;
  cursor: pointer;
  transform: rotate(8deg) translateY(0);
  transform-style: preserve-3d;
  background:
    radial-gradient(circle at 22% 10%, rgba(248, 228, 173, .2), transparent 22%),
    radial-gradient(circle at 78% 26%, rgba(214, 168, 79, .22), transparent 24%),
    linear-gradient(152deg, #070605, #17110b 48%, #050403);
  box-shadow:
    0 38px 90px rgba(0, 0, 0, .62),
    0 0 58px rgba(214, 168, 79, .26),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  animation: cardFloat 5.6s ease-in-out infinite;
}
.premium-card:hover {
  border-color: rgba(255, 241, 189, .82);
  transform: rotate(5deg) translateY(-8px) scale(1.015);
  box-shadow:
    0 46px 110px rgba(0, 0, 0, .7),
    0 0 86px rgba(214, 168, 79, .36),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}
.card-shine {
  position: absolute;
  inset: -34% -54% auto auto;
  width: 70%;
  height: 62%;
  background: linear-gradient(135deg, transparent, rgba(255, 241, 189, .2), transparent);
  transform: rotate(18deg);
  pointer-events: none;
}
.premium-card-frame {
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(214, 168, 79, .34);
  border-radius: 24px;
  pointer-events: none;
}
.premium-card-frame::before,
.premium-card-frame::after {
  content: "";
  position: absolute;
  width: 132px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 228, 173, .95), transparent);
}
.premium-card-frame::before {
  top: 42px;
  right: -14px;
  transform: rotate(-28deg);
}
.premium-card-frame::after {
  left: -12px;
  bottom: 54px;
  transform: rotate(-28deg);
}
.demo-badge {
  position: relative;
  z-index: 1;
  justify-self: end;
  padding: 6px 10px;
  border: 1px solid rgba(214, 168, 79, .42);
  border-radius: 999px;
  color: rgba(255, 248, 231, .72);
  background: rgba(0, 0, 0, .28);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.profile-photo {
  position: relative;
  z-index: 1;
  width: 126px;
  height: 126px;
  margin-top: -4px;
  border: 3px solid #d6a84f;
  border-radius: 999px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .08), transparent),
    url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=320&q=80") center/cover,
    linear-gradient(135deg, #f5d6bb, #3b2a24);
  box-shadow: 0 0 0 7px rgba(214, 168, 79, .12), 0 18px 35px rgba(0, 0, 0, .46);
}
.premium-card h2 {
  position: relative;
  z-index: 1;
  margin: 4px 0 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 31px;
  line-height: 1.05;
  text-align: center;
}
.premium-card .demo-role {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #d6a84f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}
.contact-strip span {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px;
  border: 1px solid rgba(214, 168, 79, .22);
  border-radius: 8px;
  color: rgba(255, 248, 231, .78);
  background: rgba(255, 255, 255, .045);
  font-size: 11px;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.contact-strip svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: #d6a84f;
}
.demo-button-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  width: 100%;
}
.demo-button-grid button,
.appointment-button {
  border: 1px solid rgba(214, 168, 79, .38);
  border-radius: 8px;
  color: #fff8e7;
  background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035));
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.demo-button-grid button {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 8px;
  font-size: 12px;
  font-weight: 900;
}
.demo-button-grid svg {
  width: 16px;
  height: 16px;
  color: #d6a84f;
}
.demo-button-grid button:hover,
.appointment-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 241, 189, .72);
  background: rgba(214, 168, 79, .14);
}
.appointment-button {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 62px;
  display: grid;
  gap: 2px;
  padding: 11px 14px;
  text-align: left;
  background: linear-gradient(135deg, rgba(214, 168, 79, .96), rgba(125, 80, 19, .9));
  box-shadow: 0 14px 36px rgba(214, 168, 79, .22);
}
.appointment-button span,
.appointment-button strong {
  color: #100b05;
}
.appointment-button span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.appointment-button strong {
  font-size: 16px;
}
.premium-card-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin-top: 2px;
}
.premium-card-footer div {
  min-height: 66px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 9px 7px;
  border-top: 1px solid rgba(214, 168, 79, .28);
  text-align: center;
}
.premium-card-footer strong {
  color: #f8e4ad;
  font-size: 12px;
}
.premium-card-footer span {
  color: rgba(255, 248, 231, .6);
  font-size: 11px;
  line-height: 1.25;
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(214, 168, 79, .14);
  border-radius: 999px;
  pointer-events: none;
}
.hero-orbit-one {
  right: -180px;
  top: 80px;
  width: 520px;
  height: 520px;
}
.hero-orbit-two {
  left: -220px;
  bottom: -260px;
  width: 620px;
  height: 620px;
}
.how-section {
  position: relative;
  padding: clamp(54px, 7vw, 86px) clamp(18px, 6vw, 86px) clamp(68px, 7vw, 96px);
  border-top: 1px solid rgba(214, 168, 79, .16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .015)),
    #050505;
}
.how-heading {
  max-width: 780px;
  margin-bottom: 28px;
}
.how-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 3.4vw, 48px);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.step-card {
  min-height: 218px;
  padding: 24px;
  border: 1px solid rgba(214, 168, 79, .2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .026)),
    #080706;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .24);
  transition: transform .25s ease, border-color .25s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 168, 79, .48);
}
.step-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: #151009;
  background: linear-gradient(135deg, #f8e4ad, #d6a84f);
  font-weight: 900;
}
.step-card h3 {
  margin-bottom: 10px;
  color: #fff8e7;
}
.step-card p {
  margin: 0;
  color: rgba(255, 248, 231, .62);
}
.final-cta {
  min-width: min(100%, 260px);
}
.landing-footer {
  color: rgba(255, 248, 231, .56);
  border-top-color: rgba(214, 168, 79, .16);
  background: #030303;
}

@keyframes premiumIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cardFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@media (max-width: 1080px) {
  .premium-hero {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }
  .premium-copy {
    max-width: 840px;
  }
  .premium-showcase {
    min-height: 710px;
  }
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .landing-header {
    position: sticky;
    align-items: center;
    flex-direction: row;
  }
  .landing-brand span:last-child {
    display: none;
  }
  .landing-nav {
    gap: 8px;
    justify-content: flex-end;
    width: auto;
    overflow: visible;
    padding-bottom: 0;
    font-size: 0;
  }
  .landing-nav a {
    display: none;
  }
  .landing-nav .nav-cta {
    display: inline-flex;
    font-size: 12px;
    white-space: nowrap;
  }
  .premium-hero {
    gap: 26px;
    padding-inline: 16px;
  }
  .premium-copy h1 {
    font-size: clamp(39px, 12vw, 58px);
  }
  .feature-row {
    grid-template-columns: 1fr;
  }
  .premium-actions .btn {
    width: 100%;
  }
  .premium-showcase {
    min-height: 690px;
    place-items: start center;
    padding-top: 10px;
  }
  .premium-card {
    width: min(94vw, 370px);
    min-height: 642px;
    padding-inline: 18px;
    transform: rotate(5deg);
  }
  .premium-card:hover {
    transform: rotate(3deg) translateY(-6px);
  }
  .contact-strip,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .premium-card-footer {
    grid-template-columns: 1fr;
  }
  .premium-card-footer div {
    min-height: auto;
  }
}
@media (max-width: 420px) {
  .premium-card {
    min-height: 670px;
  }
  .demo-button-grid {
    grid-template-columns: 1fr;
  }
}

/* Reference-style premium landing refinements */
.landing-body {
  background:
    radial-gradient(circle at 88% 84%, rgba(162, 103, 24, .36), transparent 25%),
    radial-gradient(circle at 76% 36%, rgba(214, 168, 79, .14), transparent 30%),
    linear-gradient(115deg, #080909 0%, #050505 48%, #0c0a07 100%);
}
.landing-header {
  min-height: 108px;
  padding: 20px clamp(28px, 4.6vw, 72px);
  border-bottom-color: rgba(255, 255, 255, .13);
}
.landing-brand {
  gap: 14px;
}
.landing-logo-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 66px;
  height: 48px;
  color: #f7bd3d;
}
.landing-logo-icon::before,
.landing-logo-icon::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border: 2px solid #f7bd3d;
  border-radius: 8px;
  transform: rotate(-8deg);
}
.landing-logo-icon::before {
  left: 4px;
}
.landing-logo-icon::after {
  right: 2px;
  opacity: .7;
  transform: rotate(8deg);
}
.landing-logo-icon svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}
.landing-logo-text {
  display: grid;
  gap: 2px;
  line-height: 1;
}
.landing-logo-text strong {
  color: #f7bd3d;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: 0;
}
.landing-logo-text small {
  color: #ffffff;
  font-size: 15px;
  letter-spacing: .32em;
}
.landing-nav {
  gap: clamp(18px, 2.7vw, 44px);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.landing-nav a {
  position: relative;
  color: #ffffff;
}
.landing-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -29px;
  height: 2px;
  background: #f7bd3d;
  box-shadow: 0 0 18px rgba(247, 189, 61, .72);
}
.landing-nav .nav-cta {
  min-width: 206px;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 16px;
  color: #0a0704;
  background: linear-gradient(135deg, #ffd56c 0%, #e7aa35 100%);
  box-shadow: 0 18px 38px rgba(214, 168, 79, .18);
}
.premium-hero {
  min-height: calc(100vh - 108px);
  grid-template-columns: minmax(420px, .78fr) minmax(660px, 1.22fr);
  gap: clamp(22px, 4vw, 64px);
  padding: clamp(44px, 6vh, 76px) clamp(24px, 4.6vw, 72px) 0;
}
.premium-copy {
  align-self: center;
  padding-bottom: 30px;
}
.premium-eyebrow {
  color: #ffd84e;
  font-size: 16px;
  letter-spacing: .02em;
}
.hero-badge {
  padding: 9px 14px;
  border: 1px solid rgba(247, 189, 61, .42);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(247, 189, 61, .16), rgba(255, 255, 255, .035));
  box-shadow: 0 0 28px rgba(247, 189, 61, .12), inset 0 1px 0 rgba(255, 255, 255, .08);
  font-size: 12px;
  letter-spacing: .1em;
}
.premium-eyebrow::before {
  display: none;
}
.premium-copy h1 {
  margin-bottom: 18px;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(48px, 4.8vw, 72px);
  font-weight: 900;
  line-height: .98;
  text-shadow: 0 12px 34px rgba(0, 0, 0, .8);
}
.premium-copy h1 span {
  display: inline-block;
  color: #f1b73f;
}
.premium-copy h1::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 22px;
  background: #f1b73f;
}
.premium-subtitle {
  max-width: 545px;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.45;
}
.premium-subtitle-secondary {
  max-width: 650px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.58;
}
.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  max-width: 650px;
  margin-bottom: 30px;
}
.hero-benefits span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  color: #fff8e7;
  font-size: 15px;
  font-weight: 800;
}
.hero-benefits svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  padding: 3px;
  border-radius: 999px;
  color: #080808;
  background: linear-gradient(135deg, #ffd76f, #e3a432);
  box-shadow: 0 0 18px rgba(247, 189, 61, .22);
}
.feature-row {
  grid-template-columns: repeat(3, 1fr);
  max-width: 570px;
  gap: 0;
  margin-bottom: 48px;
}
.feature-item {
  min-height: 104px;
  padding: 0 20px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}
.feature-item:last-child {
  border-right: 0;
}
.feature-item span {
  margin: 0 auto 14px;
  color: #f7bd3d;
  background: transparent;
  box-shadow: none;
}
.feature-item svg {
  width: 32px;
  height: 32px;
}
.feature-item strong {
  color: #ffffff;
  font-size: 16px;
}
.feature-item small {
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
}
.premium-actions {
  gap: 14px;
  margin-bottom: 20px;
}
.gold-primary {
  min-width: min(100%, 430px);
  min-height: 68px;
  justify-content: space-between;
  padding: 17px 30px 17px 42px;
  border-radius: 8px;
  color: #060606;
  font-size: 21px;
  letter-spacing: .02em;
  background: linear-gradient(135deg, #ffd76f 0%, #e3a432 56%, #f4c45c 100%);
  box-shadow: 0 20px 44px rgba(227, 164, 50, .25), inset 0 1px 0 rgba(255, 255, 255, .34);
}
.gold-primary svg {
  width: 25px;
  height: 25px;
}
.gold-secondary {
  min-height: 68px;
  padding: 17px 28px;
  border-radius: 8px;
  color: #f7bd3d;
  background: rgba(255, 255, 255, .04);
  border-color: rgba(247, 189, 61, .42);
  font-size: 17px;
  letter-spacing: .02em;
}
.gold-secondary:hover {
  color: #080808;
  background: linear-gradient(135deg, #ffd76f, #e3a432);
}
.hero-closing {
  max-width: 620px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  line-height: 1.5;
}
.security-note {
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
}
.security-note svg {
  color: #ffd84e;
}
.trust-row {
  position: absolute;
  left: clamp(24px, 4.6vw, 72px);
  right: clamp(24px, 4.6vw, 72px);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: clamp(32px, 7vw, 108px);
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.trust-row div {
  display: grid;
  grid-template-columns: 28px auto;
  column-gap: 10px;
  align-items: center;
}
.trust-row svg {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  color: #f7bd3d;
}
.trust-row strong {
  color: #ffffff;
  font-size: 13px;
  text-transform: uppercase;
}
.trust-row small {
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
}
.premium-showcase {
  min-height: 760px;
  align-self: end;
  place-items: start center;
}
.premium-showcase::before {
  width: min(60vw, 760px);
  height: min(60vw, 760px);
  background: radial-gradient(circle, rgba(247, 189, 61, .18), transparent 62%);
}
.premium-card {
  width: min(100%, 650px);
  min-height: 790px;
  padding: 34px 56px 28px;
  border-radius: 28px;
  transform: rotate(8deg) translateY(0);
  background:
    radial-gradient(circle at 50% 18%, rgba(247, 189, 61, .16), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(247, 189, 61, .08), transparent 22%),
    linear-gradient(145deg, #101111, #060606 62%, #11100d);
}
.premium-card:hover {
  transform: rotate(6deg) translateY(-9px) scale(1.01);
}
.premium-card-frame {
  inset: 14px;
  border-radius: 24px;
  border-color: rgba(247, 189, 61, .76);
}
.card-topline {
  position: absolute;
  top: 0;
  left: 110px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 235, 160, .95), transparent);
  box-shadow: 0 0 20px rgba(255, 217, 101, .82);
}
.law-brand,
.nfc-mark {
  position: absolute;
  z-index: 2;
  top: 42px;
  display: grid;
  justify-items: center;
  color: #f7bd3d;
  text-align: center;
}
.law-brand {
  left: 80px;
}
.law-brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 62px;
  line-height: .88;
  font-style: italic;
}
.law-brand span {
  margin-top: 8px;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.law-brand small {
  color: #f7bd3d;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.nfc-mark {
  right: 78px;
  top: 70px;
}
.nfc-mark svg {
  width: 48px;
  height: 48px;
  color: #f7bd3d;
}
.nfc-mark strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: 15px;
}
.nfc-mark span {
  margin-top: 12px;
  color: #ffffff;
  font-size: 12px;
  font-style: italic;
  line-height: 1.35;
  text-transform: uppercase;
}
.profile-photo {
  width: 236px;
  height: 236px;
  margin-top: 10px;
  border-width: 4px;
  box-shadow: 0 0 0 11px rgba(247, 189, 61, .14), 0 0 34px rgba(247, 189, 61, .72), 0 20px 42px rgba(0, 0, 0, .64);
}
.premium-card h2 {
  margin-top: 26px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 43px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: skew(-8deg);
}
.premium-card h2 span {
  color: #c9912e;
}
.premium-card .demo-role {
  color: #ffffff;
  font-size: 21px;
  letter-spacing: .28em;
  font-weight: 500;
}
.premium-card .demo-role::before,
.premium-card .demo-role::after {
  content: "";
  display: inline-block;
  width: 52px;
  height: 1px;
  margin: 0 18px 6px;
  background: #c9912e;
}
.card-main-actions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  margin-top: 2px;
}
.card-main-actions button {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(247, 189, 61, .82);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease;
}
.card-main-actions button:first-child {
  color: #080808;
  background: linear-gradient(135deg, #ffd76f, #dda032);
}
.card-main-actions button:last-child {
  color: #ffffff;
  background: rgba(0, 0, 0, .25);
}
.card-main-actions button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(247, 189, 61, .2);
}
.demo-button-grid {
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 0;
}
.demo-button-grid button {
  position: relative;
  justify-content: flex-start;
  min-height: 59px;
  padding: 9px 52px 9px 14px;
  border-color: rgba(255, 255, 255, .22);
  border-radius: 9px;
  background: rgba(0, 0, 0, .34);
  font-size: 0;
}
.demo-button-grid button::after,
.appointment-button::after {
  content: ">";
  position: absolute;
  right: 22px;
  top: 50%;
  color: #f7bd3d;
  font-size: 35px;
  font-weight: 300;
  transform: translateY(-50%);
}
.demo-button-grid button svg {
  width: 38px;
  height: 38px;
  padding: 7px;
  border-radius: 8px;
  color: white;
  background: #0fb25b;
}
.demo-button-grid button:nth-child(2) svg {
  background: linear-gradient(135deg, #7d32c8, #ff7b38);
}
.demo-button-grid button:nth-child(3) svg {
  background: #2672b9;
}
.demo-button-grid button:nth-child(4) svg {
  color: #f7bd3d;
  background: transparent;
  border: 1px solid rgba(247, 189, 61, .7);
}
.demo-button-grid button:nth-child(1)::before {
  content: "WHATSAPP\aATENDIMENTO";
}
.demo-button-grid button:nth-child(2)::before {
  content: "INSTAGRAM\a@luizasouza.adv";
}
.demo-button-grid button:nth-child(3)::before {
  content: "LINKEDIN\aLuiza de Souza";
}
.demo-button-grid button:nth-child(4)::before {
  content: "LOJA\a@LS.AdvStore";
}
.demo-button-grid button::before {
  white-space: pre;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: .06em;
}
.demo-button-grid button:nth-child(n)::first-line {
  color: #ffffff;
}
.appointment-button {
  min-height: 70px;
  padding: 11px 64px 11px 150px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8c65c, #dc9e30);
}
.appointment-button::before {
  content: "";
  position: absolute;
  left: 94px;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 2px solid #111;
  border-radius: 999px;
  transform: translateY(-50%);
}
.appointment-button span {
  font-size: 18px;
  letter-spacing: .06em;
}
.appointment-button strong {
  font-size: 15px;
  font-weight: 500;
}
.premium-card-footer {
  margin-top: 0;
  gap: 0;
}
.premium-card-footer div {
  min-height: 58px;
  border-top: 0;
  border-right: 1px solid rgba(247, 189, 61, .35);
  text-align: left;
  padding: 6px 12px;
}
.premium-card-footer div:last-child {
  border-right: 0;
}
.premium-card-footer strong {
  color: #ffffff;
  font-size: 11px;
  text-transform: uppercase;
}
.premium-card-footer span {
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-style: italic;
}
.hero-orbit {
  display: none;
}

@media (max-width: 1280px) {
  .landing-nav {
    gap: 18px;
  }
  .premium-hero {
    grid-template-columns: minmax(380px, .85fr) minmax(520px, 1.15fr);
  }
  .premium-card {
    width: min(100%, 560px);
    min-height: 730px;
    padding-inline: 42px;
  }
  .profile-photo {
    width: 198px;
    height: 198px;
  }
  .law-brand {
    left: 56px;
  }
  .nfc-mark {
    right: 54px;
  }
}
@media (max-width: 1080px) {
  .landing-header {
    min-height: auto;
  }
  .landing-nav a:not(.nav-cta) {
    display: none;
  }
  .premium-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }
  .trust-row {
    position: static;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 36px;
  }
  .premium-showcase {
    min-height: 760px;
    place-items: center;
  }
}
@media (max-width: 720px) {
  .landing-header {
    padding-inline: 16px;
  }
  .landing-logo-icon {
    width: 48px;
  }
  .landing-logo-text strong {
    font-size: 18px;
  }
  .landing-logo-text small {
    font-size: 10px;
  }
  .landing-nav .nav-cta {
    min-width: auto;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 11px;
  }
  .premium-copy h1 {
    font-size: clamp(42px, 12vw, 56px);
  }
  .premium-subtitle {
    font-size: 18px;
  }
  .premium-subtitle-secondary,
  .hero-closing {
    font-size: 13px;
  }
  .hero-benefits {
    grid-template-columns: 1fr;
  }
  .feature-row,
  .trust-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .feature-item {
    border-right: 0;
    min-height: auto;
  }
  .gold-primary {
    min-width: 100%;
    font-size: 17px;
    padding-inline: 22px;
  }
  .gold-secondary {
    width: 100%;
    min-height: 58px;
  }
  .premium-showcase {
    min-height: 710px;
    overflow: visible;
  }
  .premium-card {
    width: min(94vw, 390px);
    min-height: 650px;
    padding: 24px 22px 20px;
    transform: rotate(5deg);
  }
  .premium-card:hover {
    transform: rotate(3deg) translateY(-6px);
  }
  .law-brand {
    left: 34px;
    top: 35px;
  }
  .law-brand strong {
    font-size: 38px;
  }
  .law-brand span,
  .law-brand small {
    display: none;
  }
  .nfc-mark {
    right: 34px;
    top: 38px;
  }
  .nfc-mark svg {
    width: 34px;
    height: 34px;
  }
  .nfc-mark span {
    display: none;
  }
  .profile-photo {
    width: 152px;
    height: 152px;
    margin-top: 22px;
  }
  .premium-card h2 {
    font-size: 27px;
    letter-spacing: .05em;
  }
  .premium-card .demo-role {
    font-size: 15px;
    letter-spacing: .2em;
  }
  .premium-card .demo-role::before,
  .premium-card .demo-role::after {
    width: 24px;
    margin-inline: 8px;
  }
  .card-main-actions {
    gap: 8px;
  }
  .card-main-actions button {
    min-height: 44px;
    font-size: 11px;
  }
  .demo-button-grid button {
    min-height: 50px;
  }
  .demo-button-grid button svg {
    width: 32px;
    height: 32px;
  }
  .demo-button-grid button::before {
    font-size: 12px;
  }
  .appointment-button {
    min-height: 58px;
    padding-left: 72px;
  }
  .appointment-button::before {
    left: 24px;
  }
  .appointment-button span {
    font-size: 14px;
  }
  .appointment-button strong {
    font-size: 13px;
  }
  .premium-card-footer {
    grid-template-columns: 1fr;
  }
  .premium-card-footer div {
    min-height: auto;
    border-right: 0;
    text-align: center;
  }
}

/* Site-wide premium identity */
:root {
  --bg: #050505;
  --surface: #0b0b0b;
  --ink: #ffffff;
  --muted: #d7d7d7;
  --line: rgba(212,166,58,0.35);
  --primary: #d4a63a;
  --secondary: #f2c35b;
  --shadow: 0 22px 70px rgba(0, 0, 0, .38), 0 0 36px rgba(212, 166, 58, .08);
}
body:not(.landing-body) {
  background:
    radial-gradient(circle at 78% 12%, rgba(212, 166, 58, .13), transparent 26%),
    radial-gradient(circle at 15% 90%, rgba(242, 195, 91, .08), transparent 28%),
    #050505;
  color: #ffffff;
}
body:not(.landing-body) .site-header {
  background: rgba(5, 5, 5, .88);
  border-bottom-color: rgba(212, 166, 58, .28);
  backdrop-filter: blur(18px);
}
body:not(.landing-body) .brand,
body:not(.landing-body) .nav a {
  color: #ffffff;
}
body:not(.landing-body) .brand-mark {
  color: #050505;
  background: linear-gradient(135deg, #f2c35b, #d4a63a);
  box-shadow: 0 0 28px rgba(212, 166, 58, .24);
}
body:not(.landing-body) .nav a:hover,
body:not(.landing-body) .preview-toolbar a {
  color: #f2c35b;
}
body:not(.landing-body) .eyebrow {
  color: #f2c35b;
}
body:not(.landing-body) h1,
body:not(.landing-body) h2,
body:not(.landing-body) h3,
body:not(.landing-body) label,
body:not(.landing-body) .summary-total,
body:not(.landing-body) .info-card strong {
  color: #ffffff;
}
body:not(.landing-body) p,
body:not(.landing-body) small,
body:not(.landing-body) .public-privacy,
body:not(.landing-body) #selectionHint,
body:not(.landing-body) .properties-panel small,
body:not(.landing-body) .layer-list small {
  color: #d7d7d7;
}
body:not(.landing-body) .btn.primary {
  color: #050505;
  background: linear-gradient(135deg, #f2c35b, #d4a63a);
  border-color: rgba(242, 195, 91, .56);
  box-shadow: 0 16px 38px rgba(212, 166, 58, .22);
}
body:not(.landing-body) .btn.secondary,
body:not(.landing-body) .btn.ghost,
body:not(.landing-body) .mini-btn {
  color: #f2c35b;
  background: rgba(255, 255, 255, .045);
  border-color: rgba(212, 166, 58, .35);
}
body:not(.landing-body) .btn:hover,
body:not(.landing-body) .mini-btn:hover,
body:not(.landing-body) .template-list button:hover,
body:not(.landing-body) .tool-grid button:hover,
body:not(.landing-body) .layer-list button:hover,
body:not(.landing-body) .property-controls button:hover {
  box-shadow: 0 0 24px rgba(212, 166, 58, .16);
}
body:not(.landing-body) input,
body:not(.landing-body) select,
body:not(.landing-body) textarea {
  color: #ffffff;
  background: #050505;
  border-color: rgba(212, 166, 58, .35);
}
body:not(.landing-body) optgroup {
  color: #f2c35b;
  background: #050505;
}
body:not(.landing-body) option {
  color: #ffffff;
  background: #050505;
}
body:not(.landing-body) input::placeholder,
body:not(.landing-body) textarea::placeholder {
  color: rgba(215, 215, 215, .62);
}
body:not(.landing-body) input:focus,
body:not(.landing-body) select:focus,
body:not(.landing-body) textarea:focus {
  border-color: #f2c35b;
  box-shadow: 0 0 0 3px rgba(212, 166, 58, .18);
}
body:not(.landing-body) .info-card,
body:not(.landing-body) .checkout-card,
body:not(.landing-body) .builder-panel,
body:not(.landing-body) .preview-panel,
body:not(.landing-body) .admin-tools,
body:not(.landing-body) .table-wrap,
body:not(.landing-body) .login-card,
body:not(.landing-body) .checkout-preview,
body:not(.landing-body) .qr-box,
body:not(.landing-body) .export-note,
body:not(.landing-body) .payment-note,
body:not(.landing-body) .editor-sidebar,
body:not(.landing-body) .properties-panel,
body:not(.landing-body) .editor-workspace {
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018)),
    #0b0b0b;
  border-color: rgba(212, 166, 58, .35);
  box-shadow: var(--shadow);
}
body:not(.landing-body) .editor-body {
  background: #050505;
}
body:not(.landing-body).editor-body {
  background:
    radial-gradient(circle at 50% 0, rgba(212, 166, 58, .11), transparent 30%),
    #050505;
}
body:not(.landing-body) .editor-section {
  border-bottom-color: rgba(212, 166, 58, .22);
}
body:not(.landing-body) .editor-topbar {
  border-bottom-color: rgba(212, 166, 58, .25);
  background: rgba(5, 5, 5, .28);
}
body:not(.landing-body) .stage-wrap {
  background:
    linear-gradient(45deg, rgba(212, 166, 58, .06) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(212, 166, 58, .06) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(212, 166, 58, .06) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(212, 166, 58, .06) 75%),
    #050505;
  background-size: 28px 28px;
  background-position: 0 0, 0 14px, 14px -14px, -14px 0;
}
body:not(.landing-body) .card-stage {
  background: #0b0b0b;
  border: 1px solid rgba(212, 166, 58, .35);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .56), 0 0 48px rgba(212, 166, 58, .12);
}
body:not(.landing-body) .canvas-layer.selected {
  outline-color: #f2c35b;
}
body:not(.landing-body) .resize-handle,
body:not(.landing-body) .guide-line {
  background: #f2c35b;
}
body:not(.landing-body) .guide-distance {
  color: #050505;
  background: #f2c35b;
  border-color: rgba(212, 166, 58, .55);
}
body:not(.landing-body) .template-list button,
body:not(.landing-body) .layer-list button,
body:not(.landing-body) .tool-grid button,
body:not(.landing-body) .property-controls button,
body:not(.landing-body) .editor-tabs button {
  color: #d7d7d7;
  background: rgba(255, 255, 255, .045);
  border-color: rgba(212, 166, 58, .28);
}
body:not(.landing-body) .template-list button:hover,
body:not(.landing-body) .layer-list button.active,
body:not(.landing-body) .layer-list button:hover,
body:not(.landing-body) .editor-tabs button.active {
  color: #050505;
  background: linear-gradient(135deg, #f2c35b, #d4a63a);
  border-color: #f2c35b;
}
body:not(.landing-body) .guide-toggle,
body:not(.landing-body) .checkbox-grid label,
body:not(.landing-body) .toggle-row {
  color: #d7d7d7;
}
body:not(.landing-body) .background-options,
body:not(.landing-body) .top-options,
body:not(.landing-body) .pattern-options,
body:not(.landing-body) .checkbox-grid,
body:not(.landing-body) .editor-tabs,
body:not(.landing-body) .ai-panel {
  background: #0b0b0b;
  border-color: rgba(212, 166, 58, .35);
}
body:not(.landing-body) .background-options label,
body:not(.landing-body) .top-options label,
body:not(.landing-body) .pattern-options label {
  color: #d7d7d7;
  background: rgba(255, 255, 255, .035);
  border-color: rgba(212, 166, 58, .25);
}
body:not(.landing-body) .background-options label:has(input:checked),
body:not(.landing-body) .top-options label:has(input:checked),
body:not(.landing-body) .pattern-options label:has(input:checked) {
  color: #ffffff;
  border-color: #f2c35b;
  box-shadow: 0 0 0 3px rgba(212, 166, 58, .16);
}
body:not(.landing-body) .payment-note,
body:not(.landing-body) .stat,
body:not(.landing-body) .status-pill {
  color: #f2c35b;
  background: rgba(212, 166, 58, .1);
}
body:not(.landing-body) th {
  color: #f2c35b;
}
body:not(.landing-body) td,
body:not(.landing-body) th,
body:not(.landing-body) .summary-line {
  border-bottom-color: rgba(212, 166, 58, .22);
}
body:not(.landing-body) .footer,
body:not(.landing-body) .wide-band {
  background: #050505;
  border-color: rgba(212, 166, 58, .25);
  color: #d7d7d7;
}
body:not(.landing-body) .public-body {
  background:
    radial-gradient(circle at top, rgba(212, 166, 58, .13), transparent 30%),
    #050505;
}

/* Complete commercial home sections */
.commercial-section {
  position: relative;
  padding: clamp(58px, 7vw, 96px) clamp(18px, 6vw, 86px);
  border-top: 1px solid rgba(212, 166, 58, .16);
  background:
    radial-gradient(circle at 82% 18%, rgba(212, 166, 58, .1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .01)),
    #050505;
}
.commercial-heading {
  max-width: 820px;
  margin-bottom: 32px;
}
.commercial-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3.8vw, 52px);
}
.feature-card-grid,
.model-card-grid,
.plans-grid,
.testimonials-grid {
  display: grid;
  gap: 16px;
}
.feature-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.feature-card-grid article,
.model-card-grid article,
.plan-card,
.testimonials-grid article,
.contact-form,
.contact-actions,
.contact-nfc-demo {
  border: 1px solid rgba(212, 166, 58, .28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .024)),
    #0b0b0b;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .26), 0 0 34px rgba(212, 166, 58, .08);
}
.feature-card-grid article {
  min-height: 210px;
  padding: 24px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.feature-card-grid article:hover,
.model-card-grid article:hover,
.plan-card:hover,
.testimonials-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 195, 91, .58);
  box-shadow: 0 26px 76px rgba(0, 0, 0, .32), 0 0 42px rgba(212, 166, 58, .14);
}
.feature-card-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: #f2c35b;
}
.feature-card-grid h3,
.model-card-grid h3,
.plan-card h3,
.testimonials-grid strong {
  color: #ffffff;
}
.feature-card-grid p,
.model-card-grid p,
.plan-card li,
.testimonials-grid p,
.testimonials-grid small,
.landing-footer-full p,
.landing-footer-full a {
  color: rgba(255, 255, 255, .72);
}
.model-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.model-card-grid article {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.model-card-grid article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #050505;
  background: linear-gradient(135deg, #f2c35b, #d4a63a);
  font-weight: 900;
}
.model-card-grid .btn {
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  padding: 10px 12px;
  font-size: 12px;
}
.plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
}
.plan-card.featured {
  border-color: rgba(242, 195, 91, .78);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34), 0 0 58px rgba(212, 166, 58, .18);
}
.plan-card > strong {
  color: #f2c35b;
  font-size: clamp(27px, 3vw, 38px);
}
.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.plan-card li::before {
  content: "\2713";
  margin-right: 8px;
  color: #f2c35b;
  font-weight: 900;
}
.plan-card .btn {
  margin-top: auto;
  min-width: 100%;
}
.plan-badge {
  width: max-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: #050505;
  background: linear-gradient(135deg, #f2c35b, #d4a63a);
  font-size: 11px;
  font-weight: 900;
}
.plan-badge.premium {
  color: #f2c35b;
  background: rgba(212, 166, 58, .12);
  border: 1px solid rgba(212, 166, 58, .45);
}
.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.testimonials-grid article {
  padding: 26px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.testimonials-grid article > span {
  display: block;
  margin: 16px 0 12px;
  color: #f2c35b;
  letter-spacing: .08em;
}
.testimonial-photo {
  width: 86px;
  height: 86px;
  border: 2px solid #d4a63a;
  border-radius: 999px;
  background-image: url("../assets/testimonials-ai-contact-sheet.png");
  background-size: 300% 200%;
  background-repeat: no-repeat;
  box-shadow: 0 0 28px rgba(212, 166, 58, .2);
}
.photo-one { background-position: 0% 0%; }
.photo-two { background-position: 50% 0%; }
.photo-three { background-position: 100% 0%; }
.photo-four { background-position: 0% 100%; }
.photo-five { background-position: 50% 100%; }
.photo-six { background-position: 100% 100%; }
.demo-disclaimer {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  text-align: center;
}
.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: 22px;
  align-items: stretch;
  pointer-events: auto;
}
.contact-actions,
.contact-form {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 14px;
  padding: 24px;
  pointer-events: auto;
}
.contact-actions {
  align-content: start;
}
.contact-actions .btn,
.contact-form .btn {
  width: 100%;
}
.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-nfc-demo {
  position: relative;
  z-index: 3;
  min-height: 520px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 28px;
  isolation: isolate;
  pointer-events: none;
}
.nfc-demo-glow {
  position: absolute;
  inset: 12%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(242, 195, 91, .26), rgba(212, 166, 58, .08) 34%, transparent 68%);
  filter: blur(14px);
  animation: nfcGlowPulse 6.8s ease-in-out infinite;
}
.nfc-demo-scene {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1.12;
}
.nfc-phone {
  position: absolute;
  top: 8%;
  right: 6%;
  width: 42%;
  min-width: 150px;
  aspect-ratio: 9 / 18.5;
  border: 2px solid rgba(242, 195, 91, .72);
  border-radius: 28px;
  background:
    linear-gradient(145deg, #151515, #050505 58%, #101010);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, .48),
    inset 0 0 0 4px rgba(255, 255, 255, .04),
    0 0 36px rgba(212, 166, 58, .16);
  animation: nfcPhoneReact 6.8s ease-in-out infinite;
}
.nfc-phone::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .08);
  pointer-events: none;
}
.nfc-phone-speaker {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 48px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  transform: translateX(-50%);
}
.nfc-phone-screen {
  position: absolute;
  inset: 30px 12px 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 12%, rgba(242, 195, 91, .12), transparent 34%),
    linear-gradient(180deg, #0d0d0d, #050505);
}
.nfc-ready {
  position: absolute;
  top: 28%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(242, 195, 91, .32);
  border-radius: 999px;
  color: #f2c35b;
  background: rgba(242, 195, 91, .08);
  font-size: 12px;
  font-weight: 900;
  animation: nfcReadyState 6.8s ease-in-out infinite;
}
.nfc-ready svg {
  width: 15px;
  height: 15px;
}
.nfc-digital-card {
  width: 82%;
  min-height: 70%;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 14px;
  border: 1px solid rgba(242, 195, 91, .46);
  border-radius: 16px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(242, 195, 91, .16), rgba(255, 255, 255, .04)),
    #080808;
  box-shadow: 0 0 28px rgba(242, 195, 91, .15);
  opacity: 0;
  transform: translateY(18px) scale(.94);
  animation: nfcDigitalReveal 6.8s ease-in-out infinite;
}
.nfc-digital-card strong {
  color: #f2c35b;
  font-size: 15px;
  letter-spacing: .02em;
}
.nfc-digital-card small {
  color: rgba(255, 255, 255, .66);
  font-size: 11px;
}
.nfc-demo-buttons {
  display: grid;
  gap: 7px;
  margin-top: 8px;
}
.nfc-demo-buttons span {
  display: block;
  min-height: 28px;
  padding: 7px 10px;
  border: 1px solid rgba(242, 195, 91, .22);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, .07);
  font-size: 11px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(10px);
  animation: nfcButtonReveal 6.8s ease-in-out infinite;
}
.nfc-demo-buttons span:nth-child(1) { animation-delay: .18s; }
.nfc-demo-buttons span:nth-child(2) { animation-delay: .32s; }
.nfc-demo-buttons span:nth-child(3) { animation-delay: .46s; }
.nfc-demo-buttons span:nth-child(4) { animation-delay: .6s; }
.nfc-demo-buttons span:nth-child(5) {
  color: #050505;
  background: linear-gradient(135deg, #f2c35b, #d4a63a);
  animation-delay: .74s;
}
.nfc-physical-card {
  position: absolute;
  left: 4%;
  top: 53%;
  width: 48%;
  aspect-ratio: 1.58 / 1;
  overflow: hidden;
  display: grid;
  align-content: end;
  gap: 2px;
  padding: 18px;
  border: 1px solid rgba(242, 195, 91, .72);
  border-radius: 14px;
  color: #ffffff;
  background:
    radial-gradient(circle at 24% 16%, rgba(242, 195, 91, .22), transparent 32%),
    linear-gradient(145deg, #101010, #030303 62%, #16120a);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, .48),
    0 0 26px rgba(212, 166, 58, .18);
  transform-origin: center;
  animation: nfcCardApproach 6.8s ease-in-out infinite;
}
.nfc-physical-card span {
  position: absolute;
  top: 16px;
  left: 18px;
  color: #f2c35b;
  font-size: 12px;
  font-weight: 900;
}
.nfc-physical-card strong {
  color: #f2c35b;
  font-size: clamp(18px, 4vw, 28px);
  line-height: 1;
}
.nfc-physical-card small {
  color: rgba(255, 255, 255, .64);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}
.nfc-card-shine {
  position: absolute;
  inset: -40% auto auto -30%;
  width: 48%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: rotate(18deg);
  animation: nfcCardShine 6.8s ease-in-out infinite;
}
.nfc-wave {
  position: absolute;
  left: 47%;
  top: 44%;
  width: 84px;
  height: 84px;
  border: 2px solid rgba(242, 195, 91, .62);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0;
  transform: rotate(45deg) scale(.45);
  animation: nfcWave 6.8s ease-in-out infinite;
}
.nfc-wave-two {
  width: 112px;
  height: 112px;
  animation-delay: .18s;
}
.nfc-wave-three {
  width: 142px;
  height: 142px;
  animation-delay: .36s;
}
.contact-nfc-demo > p {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  margin: 0;
  color: #f2c35b;
  font-family: "Playfair Display", serif;
  font-size: clamp(23px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  text-shadow: 0 0 24px rgba(242, 195, 91, .22);
  animation: nfcTagline 6.8s ease-in-out infinite;
}
.contact-nfc-demo.is-restarting .nfc-phone,
.contact-nfc-demo.is-restarting .nfc-ready,
.contact-nfc-demo.is-restarting .nfc-digital-card,
.contact-nfc-demo.is-restarting .nfc-demo-buttons span,
.contact-nfc-demo.is-restarting .nfc-physical-card,
.contact-nfc-demo.is-restarting .nfc-card-shine,
.contact-nfc-demo.is-restarting .nfc-wave,
.contact-nfc-demo.is-restarting > p,
.contact-nfc-demo.is-restarting .nfc-demo-glow {
  animation: none;
}
.contact-section,
.contact-section .commercial-heading {
  position: relative;
  z-index: 1;
}
.contact-section::before,
.contact-section::after {
  pointer-events: none;
}
.contact-form label,
.contact-form input,
.contact-form textarea,
.contact-form button {
  position: relative;
  z-index: 4;
  pointer-events: auto;
}
.contact-form label[for="contactMessage"],
.contact-form button {
  grid-column: 1 / -1;
}
.contact-feedback {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  font-weight: 800;
}
.contact-feedback.success {
  color: #f2c35b;
}
.contact-feedback.error {
  color: #fca5a5;
}
@keyframes nfcCardApproach {
  0%, 12% {
    opacity: .92;
    transform: translate(-20px, 26px) rotate(-10deg) scale(.9);
  }
  30%, 42% {
    opacity: 1;
    transform: translate(110px, -86px) rotate(-4deg) scale(.96);
  }
  56%, 74% {
    opacity: 1;
    transform: translate(92px, -72px) rotate(-4deg) scale(.92);
  }
  100% {
    opacity: .92;
    transform: translate(-20px, 26px) rotate(-10deg) scale(.9);
  }
}
@keyframes nfcPhoneReact {
  0%, 29%, 100% {
    transform: translateY(0);
    box-shadow:
      0 26px 60px rgba(0, 0, 0, .48),
      inset 0 0 0 4px rgba(255, 255, 255, .04),
      0 0 36px rgba(212, 166, 58, .16);
  }
  36%, 52% {
    transform: translateY(-6px);
    box-shadow:
      0 30px 72px rgba(0, 0, 0, .52),
      inset 0 0 0 4px rgba(255, 255, 255, .05),
      0 0 54px rgba(242, 195, 91, .34);
  }
}
@keyframes nfcReadyState {
  0%, 30% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  42%, 88% {
    opacity: 0;
    transform: translateY(-12px) scale(.94);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes nfcDigitalReveal {
  0%, 36% {
    opacity: 0;
    transform: translateY(18px) scale(.94);
  }
  48%, 86% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(14px) scale(.96);
  }
}
@keyframes nfcButtonReveal {
  0%, 46% {
    opacity: 0;
    transform: translateY(10px);
  }
  56%, 86% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}
@keyframes nfcWave {
  0%, 28% {
    opacity: 0;
    transform: rotate(45deg) scale(.45);
  }
  38% {
    opacity: .82;
  }
  54%, 100% {
    opacity: 0;
    transform: rotate(45deg) scale(1.18);
  }
}
@keyframes nfcCardShine {
  0%, 24% {
    transform: translateX(0) rotate(18deg);
    opacity: 0;
  }
  34%, 48% {
    opacity: 1;
  }
  62%, 100% {
    transform: translateX(460%) rotate(18deg);
    opacity: 0;
  }
}
@keyframes nfcGlowPulse {
  0%, 100% {
    opacity: .72;
    transform: scale(.94);
  }
  45%, 70% {
    opacity: 1;
    transform: scale(1.08);
  }
}
@keyframes nfcTagline {
  0%, 36% {
    opacity: .56;
    transform: translateY(8px);
  }
  50%, 86% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: .56;
    transform: translateY(8px);
  }
}
.landing-footer-full {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(170px, .4fr));
  gap: 28px;
  padding: 42px clamp(18px, 6vw, 86px);
  border-top: 1px solid rgba(212, 166, 58, .22);
  background: #030303;
}
.landing-footer-full nav {
  display: grid;
  gap: 10px;
  align-content: start;
}
.landing-footer-full strong {
  color: #f2c35b;
}
.landing-footer-full a:hover {
  color: #f2c35b;
}

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

/* Contact form click/focus safety layer */
.contact-section {
  isolation: isolate;
}
.contact-section::before,
.contact-section::after,
.contact-section .hero-orbit,
.contact-section .card-shine {
  z-index: 0 !important;
  pointer-events: none !important;
}
.contact-section .contact-layout,
.contact-section .contact-actions,
.contact-section .contact-form,
.contact-section .contact-nfc-demo {
  position: relative !important;
  z-index: 50 !important;
}
.contact-section .contact-actions,
.contact-section .contact-form {
  pointer-events: auto !important;
}
.contact-section .contact-nfc-demo {
  pointer-events: none !important;
}
.contact-section .contact-form label,
.contact-section .contact-form input,
.contact-section .contact-form textarea,
.contact-section .contact-form button {
  position: relative !important;
  z-index: 60 !important;
  pointer-events: auto !important;
}
.contact-section .contact-form input,
.contact-section .contact-form textarea {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: #111111 !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  caret-color: #d4a63a;
  user-select: text;
  cursor: text;
}
.contact-section .contact-form input::placeholder,
.contact-section .contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .6) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, .6) !important;
  opacity: 1 !important;
}
.contact-section .contact-form input:focus,
.contact-section .contact-form textarea:focus {
  border-color: #d4a63a !important;
  box-shadow: 0 0 0 3px rgba(212, 166, 58, .2), 0 0 24px rgba(212, 166, 58, .14) !important;
}
.contact-section .contact-form button {
  cursor: pointer;
}
@media (max-width: 900px) {
  .plans-grid,
  .testimonials-grid,
  .contact-layout,
  .landing-footer-full {
    grid-template-columns: 1fr;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-nfc-demo {
    min-height: 500px;
  }
}
@media (max-width: 620px) {
  .feature-card-grid,
  .model-card-grid {
    grid-template-columns: 1fr;
  }
  .commercial-section {
    padding-inline: 16px;
  }
  .contact-nfc-demo {
    min-height: 430px;
    padding: 18px;
  }
  .nfc-demo-scene {
    width: min(100%, 340px);
  }
  .nfc-phone {
    right: 2%;
    min-width: 128px;
  }
  .nfc-physical-card {
    left: 0;
    width: 52%;
    padding: 14px;
  }
  .nfc-demo-buttons span {
    min-height: 24px;
    padding: 6px 8px;
    font-size: 10px;
  }
  .contact-nfc-demo > p {
    bottom: 18px;
    font-size: 24px;
  }
}
