/* ==========================================================================
   FiskalPAY Digital Identity — Plain CSS (converted from Tailwind utilities)
   ========================================================================== */

/* ---- Reset & base ---- */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  background: #f8fafc; /* slate-50 */
  color: #1e293b; /* slate-800 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 3rem;
}

/* All titles/headings use Montserrat */
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

::selection {
  background: #F37035;
  color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
}

a {
  text-decoration: none;
}

.hidden {
  display: none !important;
}

/* ---- Shared helpers ---- */
.text-orange { color: #F37035; }
.text-emerald { color: #99c363; }
.text-amber { color: #fbbf24; }

.icon {
  display: inline-block;
  flex-shrink: 0;
}
.icon-12 { width: 12px; height: 12px; }
.icon-13 { width: 13px; height: 13px; }
.icon-14 { width: 14px; height: 14px; }
.icon-16 { width: 16px; height: 16px; }
.icon-18 { width: 18px; height: 18px; }
.icon-20 { width: 20px; height: 20px; }
.icon-22 { width: 22px; height: 22px; }
.icon-28 { width: 28px; height: 28px; }
.icon-32 { width: 32px; height: 32px; }
.icon-120 { width: 120px; height: 120px; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
@keyframes bounce {
  0%, 100% { transform: translateY(-6%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}

.icon-spin { animation: spin 3s linear infinite; }
.icon-pulse { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
.icon-bounce { animation: bounce 1s infinite; }

/* ---- Background ambient shapes ---- */
.bg-shape {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
  z-index: 0;
}
.bg-shape--1 {
  top: 5%; left: -10%; width: 500px; height: 500px;
  background: rgba(243,112,53,.05);
  filter: blur(120px);
}
.bg-shape--2 {
  top: 40%; right: -10%; width: 600px; height: 600px;
  background: rgba(100,116,139,.05);
  filter: blur(150px);
}
.bg-shape--3 {
  bottom: 10%; left: -5%; width: 500px; height: 500px;
  background: rgba(243,112,53,.05);
  filter: blur(130px);
}

/* ---- Top banner ---- */
.top-banner {
  background: linear-gradient(to right, #F37035, #f68f61, #0f172a);
  border-bottom: 1px solid rgba(214,99,47,.2);
  color: #fff;
  padding: 0.625rem 1rem;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 10;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
@media (min-width: 768px) {
  .top-banner { font-size: 12px; }
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(226,232,240,.8);
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.site-header__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo__img { height: 56px; width: auto; display: block; }

.main-nav {
  display: none;
  align-items: center;
  gap: 2.25rem;
}
@media (min-width: 1024px) {
  .main-nav { display: flex; }
}
.main-nav__link {
  font-size: 18px;
  font-weight: 700;
  color: #475569;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.main-nav__link:hover { color: #F37035; }
.main-nav__icon { width: 18px; height: 18px; display: block; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.btn-dark-sm {
  display: none;
  font-size: 16.5px;
  font-weight: 700;
  color: #fff;
  background: #0f172a;
  padding: 0.975rem 1.5rem;
  border-radius: 1.125rem;
  transition: background .2s;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
@media (min-width: 640px) {
  .btn-dark-sm { display: inline-flex; }
}
.btn-dark-sm:hover { background: #1e293b; }

.badge-pilot {
  background: #ebf3e1;
  color: #3b521d;
  border: 1px solid #d7e8c2;
  font-size: 15px;
  font-weight: 900;
  padding: 0.375rem 0.975rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
@media (min-width: 768px) {
  .hero { padding: 6rem 0 3rem; }
}
.hero__inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
}
.hero__badge {
  background: #fef6f3;
  color: #F37035;
  border: 1px solid rgba(251,209,190,.5);
  font-size: 11px;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.hero__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero__title { font-size: 2.75rem; white-space: nowrap; max-width: none; }
}
@media (min-width: 1024px) {
  .hero__title { font-size: 3.75rem; }
}
.hero__title-gradient {
  background: linear-gradient(to right, #F37035, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  color: #475569;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 500;
}
@media (min-width: 768px) {
  .hero__subtitle { font-size: 1.125rem; }
}
.hero__ctas {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero__ctas { flex-direction: row; }
}
.hero__image-wrap {
  margin-top: 3rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1);
  transition: transform .3s;
}
.hero__image-wrap:hover { transform: scale(1.005); }
.hero__image { width: 100%; height: auto; object-fit: cover; }

.hero__info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 4rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .hero__info-grid { grid-template-columns: repeat(3, 1fr); }
}

.info-card {
  background: #fff;
  border: 1px solid rgba(226,232,240,.8);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.05);
}
.info-card__icon {
  padding: 0.6rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  flex-shrink: 0;
}
.info-card__icon--orange { background: #fef6f3; color: #F37035; border-color: #fde8df; }
.info-card__icon--emerald { background: #f8fbf4; color: #73a039; border-color: #ebf3e1; }
.info-card__icon--sky { background: #f0f9ff; color: #0284c7; border-color: #e0f2fe; }
.info-card__title {
  font-size: 12px;
  font-weight: 700;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
.info-card__text {
  font-size: 11px;
  color: #64748b;
  margin: 0.25rem 0 0;
  line-height: 1.6;
}

/* ---- Main content wrapper ---- */
.main-content {
  max-width: 72rem;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: relative;
  z-index: 10;
}

/* ---- Generic section card ---- */
.section-card {
  background: #fff;
  border: 1px solid rgba(226,232,240,.8);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.03);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .section-card { padding: 2.5rem; }
}
.section-card--flat {
  border-color: #f1f5f9;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.section-card--dark {
  background: #0f172a;
  color: #fff;
  border-color: #1e293b;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1);
}

.section-card__glow {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
}
.section-card__glow--top-right {
  top: 0; right: 0; width: 11rem; height: 11rem;
  background: rgba(243,112,53,.05);
  filter: blur(64px);
  margin-right: -5rem; margin-top: -5rem;
}
.section-card__glow--simulator {
  top: 40%; left: -20%; width: 24rem; height: 24rem;
  background: rgba(243,112,53,.05);
  filter: blur(64px);
}
.section-card__glow--eco {
  top: 0; left: 0; width: 16rem; height: 16rem;
  background: rgba(131,182,65,.05);
  filter: blur(64px);
}
.section-card__glow--dark-1 {
  top: 25%; right: 0; width: 20rem; height: 20rem;
  background: rgba(243,112,53,.1);
  filter: blur(64px);
}
.section-card__glow--dark-2 {
  bottom: 25%; left: 0; width: 20rem; height: 20rem;
  background: rgba(14,165,233,.1);
  filter: blur(64px);
}

.section-inner {
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-badge {
  background: #fef6f3;
  color: #F37035;
  border: 1px solid rgba(251,209,190,.5);
  font-size: 12px;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
}
.section-badge--eco {
  background: rgba(131,182,65,.1);
  color: #55762a;
  border: none;
  font-weight: 700;
}
.section-badge--dark {
  background: rgba(243,112,53,.2);
  color: #f68f61;
  border-color: rgba(243,112,53,.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.section-badge--sm {
  font-size: 10px;
  padding: 0.25rem 0.75rem;
  letter-spacing: 0.1em;
}
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0.75rem;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}
.section-title--dark {
  color: #fff;
  font-weight: 900;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .section-title--dark { font-size: 3rem; }
}
.section-subtitle {
  color: #475569;
  margin-top: 0.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 500;
}
.section-subtitle--dark {
  color: #cbd5e1;
  margin-top: 0.75rem;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .section-subtitle--dark { font-size: 1rem; }
}

/* ---- FrictionlessComparison ---- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .comparison-grid { grid-template-columns: 1fr 1fr; }
}
.comparison-col {
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .comparison-col { padding: 2rem; }
}
.comparison-col--slow {
  background: linear-gradient(135deg, rgba(70,146,178,.12), rgba(70,146,178,.04));
  border: 1px solid rgba(70,146,178,.25);
}
.comparison-col--fast {
  background: linear-gradient(135deg, rgba(131,182,65,.12), rgba(131,182,65,.04));
  border: 1px solid rgba(131,182,65,.25);
}
.comparison-col__glow {
  position: absolute; top: 0; right: 0; width: 6rem; height: 6rem;
  border-radius: 9999px; filter: blur(24px);
}
.comparison-col--slow .comparison-col__glow { background: rgba(70,146,178,.08); }
.comparison-col--fast .comparison-col__glow { background: rgba(131,182,65,.08); }

.comparison-col__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.comparison-col__emoji { font-size: 1.5rem; }
.comparison-col__title { font-size: 1rem; font-weight: 700; color: #1e293b; margin: 0; }
.comparison-col__title--fast { color: #55762a; }
.comparison-col__lead { font-size: 11px; color: #64748b; margin: 0; }
.comparison-col__lead--fast { color: #73a039; font-weight: 500; }

.comparison-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}
.comparison-row {
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.comparison-row--slow { border: 1px solid rgba(70,146,178,.2); }
.comparison-row--fast { border: 1px solid rgba(131,182,65,.2); }
.comparison-row__num {
  width: 1.5rem; height: 1.5rem;
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.comparison-row__num--slow { background: rgba(70,146,178,.15); color: #31667d; }
.comparison-row__num--fast { background: rgba(131,182,65,.15); color: #73a039; }
.comparison-row__title { font-size: 12px; font-weight: 700; color: #1e293b; margin: 0; }
.comparison-row__text { font-size: 10px; color: #64748b; margin: 0.15rem 0 0; }

.comparison-col__footer {
  border-top: 1px solid;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: -1.5rem; margin-right: -1.5rem; margin-bottom: -1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 0 0 1rem 1rem;
}
@media (min-width: 768px) {
  .comparison-col__footer { margin-left: -2rem; margin-right: -2rem; margin-bottom: -2rem; padding: 1rem 2rem; }
}
.comparison-col__footer--slow { border-color: rgba(70,146,178,.2); background: rgba(70,146,178,.08); }
.comparison-col__footer--fast { border-color: rgba(131,182,65,.2); background: rgba(131,182,65,.08); }
.comparison-col__footer-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.comparison-col__footer-label--slow { color: #31667d; }
.comparison-col__footer-label--fast { color: #55762a; }
.comparison-col__footer-value {
  font-size: 13px; font-family: 'SF Mono', 'Menlo', monospace; font-weight: 900;
  padding: 0.15rem 0.65rem; border-radius: 0.5rem; border: 1px solid;
}
.comparison-col__footer-value--slow { color: #31667d; background: rgba(70,146,178,.1); border-color: rgba(70,146,178,.3); }
.comparison-col__footer-value--fast { color: #55762a; background: rgba(131,182,65,.1); border-color: rgba(131,182,65,.3); }

.info-box {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 768px) {
  .info-box { padding: 1.5rem; }
}
.info-box__icon {
  width: 2rem; height: 2rem;
  border-radius: 9999px;
  background: rgba(226,232,240,.6);
  color: #334155;
  border: 1px solid #cbd5e1;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 12px; font-weight: 700;
}
.info-box__title { font-size: 12px; font-weight: 700; color: #1e293b; margin: 0; }
@media (min-width: 768px) {
  .info-box__title { font-size: 14px; }
}
.info-box__text { font-size: 11px; color: #64748b; margin: 0.25rem 0 0; line-height: 1.6; }
@media (min-width: 768px) {
  .info-box__text { font-size: 12px; }
}

/* ---- ReceiptSimulator ---- */
.receipt-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.receipt-picker__btn {
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  background: #f8fafc;
  color: #334155;
  border: 1px solid rgba(226,232,240,.8);
}
.receipt-picker__btn:hover { background: #f1f5f9; }
.receipt-picker__btn.is-active {
  background: #F37035;
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(243,112,53,.1);
  border-color: transparent;
}

.simulator-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .simulator-grid { grid-template-columns: repeat(12, 1fr); }
  .pos-terminal { grid-column: span 12; }
  .phone-column { grid-column: span 12; }
}
@media (min-width: 1280px) {
  .pos-terminal { grid-column: span 6; }
  .phone-column { grid-column: span 6; }
}

.pos-terminal {
  background: #0f172a;
  border-radius: 1.5rem;
  padding: 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1);
  border: 1px solid #1e293b;
  position: relative;
  overflow: hidden;
}
.pos-terminal__glow { position: absolute; border-radius: 9999px; }
.pos-terminal__glow--1 { top: 0; right: 0; width: 8rem; height: 8rem; background: rgba(243,112,53,.1); filter: blur(24px); }
.pos-terminal__glow--2 { bottom: 0; left: 0; width: 8rem; height: 8rem; background: rgba(131,182,65,.05); filter: blur(24px); }
.pos-terminal__body { position: relative; z-index: 10; width: 100%; }

.pos-terminal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.pos-terminal__header-left { display: flex; align-items: center; gap: 0.5rem; }
.pos-terminal__dot {
  width: 12px; height: 12px; border-radius: 9999px; background: #F37035;
  animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite;
}
.pos-terminal__label {
  font-size: 11px; font-family: monospace; color: rgba(255,255,255,.5);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}
.pos-terminal__badge {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,.95);
  background: rgba(243,112,53,.2); border: 1px solid rgba(243,112,53,.3);
  padding: 0.15rem 0.65rem; border-radius: 0.5rem;
}

.pos-terminal__screen {
  background: #0c1222;
  border-radius: 1rem;
  padding: 1rem;
  font-family: monospace;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
}
.pos-terminal__screen-label {
  color: rgba(255,255,255,.4);
  font-size: 11px; margin: 0 0 0.5rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding-bottom: 0.25rem;
}
.pos-item-row {
  display: flex; justify-content: space-between; font-size: 11px; font-weight: 500;
  margin-bottom: 0.15rem;
}
.pos-item-row__price { color: rgba(255,255,255,.8); }
.pos-item-row--tip { color: rgba(255,255,255,.45); font-style: italic; }
.pos-terminal__total {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 0.75rem; padding-top: 0.5rem;
  display: flex; justify-content: space-between;
  font-weight: 700; font-size: 16px; color: #F37035;
}

.custom-item-row {
  display: flex; justify-content: space-between; align-items: center; font-size: 11px;
  margin-bottom: 0.5rem;
}
.custom-item-row__left { display: flex; align-items: center; gap: 0.5rem; }
.custom-item-row__price { color: #F37035; font-weight: 700; }
.custom-item-del-btn {
  color: #fb7185; padding: 0.1rem; display: inline-flex;
}
.custom-item-del-btn:hover { color: #fda4af; }

.custom-item-controls {
  display: flex; gap: 0.5rem; margin-top: 0.75rem; padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.custom-item-input {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 0.5rem;
  padding: 0.25rem 0.6rem;
  font-size: 11px;
  color: #fff;
}
.custom-item-input::placeholder { color: rgba(255,255,255,.3); }
.custom-item-input:focus { outline: none; border-color: #F37035; box-shadow: 0 0 0 1px rgba(243,112,53,.2); }
.custom-item-input--name { width: 50%; }
.custom-item-input--price { width: 25%; }
.custom-item-add-btn {
  background: rgba(243,112,53,.3);
  color: #fff;
  border: 1px solid rgba(243,112,53,.4);
  border-radius: 0.5rem;
  font-size: 11px; font-weight: 700;
  padding: 0 0.65rem;
  display: flex; align-items: center; justify-content: center;
}
.custom-item-add-btn:hover { background: rgba(243,112,53,.45); }

.pos-terminal__action-panel {
  background: rgba(255,255,255,.05);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.1);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 220px;
}
.pos-terminal__panel-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #F37035;
  margin: 0 0 1rem;
}
.pos-terminal__panel-text { font-size: 14px; color: #fff; font-weight: 500; margin: 0 0 1rem; }
.pos-terminal__hint { font-size: 11px; color: rgba(255,255,255,.4); margin: 1rem 0 0; }

.qr-wrap {
  background: #fff;
  padding: 0.75rem;
  border-radius: 0.75rem;
  display: inline-block;
  margin: 0 auto;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.1);
  position: relative;
  cursor: pointer;
}
.qr-overlay {
  position: absolute; inset: 0;
  background: rgba(243,112,53,.95);
  border-radius: 0.75rem;
  opacity: 0;
  transition: opacity .3s;
  display: flex; align-items: center; justify-content: center;
  padding: 0.5rem; text-align: center;
  font-size: 11px; font-weight: 700; color: #fff;
}
.qr-wrap:hover .qr-overlay, .qr-wrap:focus .qr-overlay { opacity: 1; }

.pos-terminal__check {
  width: 3rem; height: 3rem; border-radius: 9999px;
  background: rgba(131,182,65,.2); color: #b7d591;
  border: 1px solid rgba(131,182,65,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 20px; font-weight: 700;
}
.pos-terminal__check-label { font-size: 14px; color: #99c363; font-weight: 700; margin: 0 0 0.5rem; }
.pos-terminal__check-text { font-size: 12px; color: rgba(255,255,255,.5); max-width: 280px; margin: 0 auto; line-height: 1.6; }
.pos-terminal__reset-link {
  font-size: 12px; font-weight: 500; color: #F37035;
  text-decoration: underline; margin-top: 1rem; display: block; margin-left: auto; margin-right: auto;
}
.pos-terminal__reset-link:hover { color: #f68f61; }

.pos-terminal__footer {
  margin-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,.4);
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; font-family: monospace;
}
.pos-terminal__footer-brand { color: #F37035; font-weight: 700; }

.phone-column {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.phone-frame {
  width: 100%; max-width: 340px;
  background: #0f172a;
  border-radius: 48px;
  padding: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  position: relative;
  border: 6px solid #334155;
}
.phone-notch {
  position: absolute; top: 1rem; left: 50%; transform: translateX(-50%);
  width: 7rem; height: 1.25rem;
  background: #020617;
  border-radius: 9999px;
  z-index: 20;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.05);
}
.phone-notch__speaker { width: 2.5rem; height: 4px; background: #1e293b; border-radius: 9999px; }
.phone-notch__cam { width: 10px; height: 10px; border-radius: 9999px; background: #0f172a; margin-left: 0.65rem; }

.phone-screen {
  background: #f8fafc;
  border-radius: 38px;
  padding: 1.25rem 1.25rem 1.25rem;
  padding-top: 2.5rem;
  overflow: hidden;
  min-height: 520px;
  max-height: 620px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #1e293b;
  position: relative;
  border: 1px solid #e2e8f0;
}

.phone-step { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; text-align: center; padding: 2.5rem 0; animation: fadein .25s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.phone-step__icon {
  width: 4rem; height: 4rem; border-radius: 9999px;
  background: #fde8df; color: #F37035;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(251,209,190,.5);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.06);
}
.phone-step__title { font-size: 18px; font-weight: 700; color: #1e293b; margin: 0 0 0.5rem; }
.phone-step__text { font-size: 12px; color: #64748b; padding: 0 1rem; margin: 0 0 2rem; line-height: 1.6; }

.phone-step[data-step="email"], .phone-step[data-step="receipt"] {
  display: flex; flex-direction: column; justify-content: space-between; height: 100%;
  text-align: left; padding: 0;
}
.phone-step__inner { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }

.phone-mini-logo {
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.phone-mini-logo__img { height: 22px; width: auto; display: block; }

.promo-banner-mini {
  background: linear-gradient(to bottom right, #fef6f3, rgba(253,232,223,.4));
  border: 1px solid rgba(251,209,190,.3);
  border-radius: 1rem;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.promo-banner-mini__sparkle { position: absolute; top: 0.5rem; right: 0.5rem; color: #f59e0b; }
.promo-banner-mini__label { font-size: 10px; font-weight: 700; color: #F37035; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 0.15rem; }
.promo-banner-mini__text { font-size: 12px; font-weight: 700; color: #334155; line-height: 1.4; margin: 0; }

.form-stack { display: flex; flex-direction: column; gap: 1rem; }
.form-label {
  display: block; font-size: 10px; text-transform: uppercase; font-weight: 700;
  color: #475569; margin-bottom: 0.4rem; padding-left: 0.25rem;
}
.input-icon-wrap { position: relative; }
.input-icon {
  position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%); color: #94a3b8;
}
.input-with-icon {
  width: 100%;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 0.65rem 1rem 0.65rem 2.5rem;
  font-size: 12px;
  color: #1e293b;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.input-with-icon:focus {
  outline: none; border-color: #F37035; box-shadow: 0 0 0 3px rgba(243,112,53,.12);
}
.error-text { font-size: 11px; color: #f43f5e; font-weight: 600; margin: 0.25rem 0 0; padding-left: 0.25rem; }

.consent-row {
  display: flex; align-items: flex-start; gap: 0.5rem;
  background: #f8fafc; padding: 0.65rem; border-radius: 0.75rem; border: 1px solid #e2e8f0;
}
.consent-row input[type="checkbox"] { margin-top: 0.15rem; accent-color: #F37035; }
.consent-row__label { font-size: 9px; color: #64748b; line-height: 1.5; font-weight: 500; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 1rem;
  font-weight: 700;
  transition: all .2s;
  white-space: nowrap;
}
.btn--primary { background: #F37035; color: #fff; box-shadow: 0 10px 15px -3px rgba(243,112,53,.2); }
.btn--primary:hover { background: #f68f61; }
.btn--secondary { background: #fff; color: #334155; border: 1px solid #e2e8f0; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.btn--secondary:hover { background: #f8fafc; color: #0f172a; }
.btn--lg { font-size: 14px; padding: 1rem 2rem; }
.btn--lg:hover { transform: scale(1.01); }
.btn--sm { font-size: 12px; padding: 0.75rem 1.25rem; border-radius: 1rem; }
.btn--block { width: 100%; padding: 0.9rem 0; }
.btn--dark { background: #0f172a; color: #fff; }

/* ---- Thermal receipt ---- */
.receipt-success {
  text-align: center;
  background: rgba(248,251,244,.7);
  border: 1px solid rgba(215,232,194,.7);
  border-radius: 1rem;
  padding: 0.9rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  color: #73a039;
}
.receipt-success__title { font-size: 12px; font-weight: 700; color: #2a3a15; margin: 0.5rem 0 0.15rem; }
.receipt-success__email { font-size: 10px; color: #3b521d; font-weight: 700; margin: 0 0 0.5rem; }
.receipt-success__badge {
  background: #73a039; color: #fff; font-size: 9px; font-weight: 900;
  padding: 0.15rem 0.65rem; border-radius: 9999px; display: inline-block;
  text-transform: uppercase; letter-spacing: 0.1em;
  animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}

.thermal-receipt {
  background: #fff; color: #0f172a;
  border-radius: 0.5rem;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.06);
  overflow: hidden;
  font-family: monospace;
  font-size: 9px;
  line-height: 1.3;
  padding: 1rem;
  position: relative;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
}
.thermal-receipt__edge {
  position: absolute; left: 0; right: 0; height: 6px;
  background-image:
    linear-gradient(45deg, transparent 25%, #fff 25%, #fff 50%, transparent 50%, transparent 75%, #fff 75%),
    linear-gradient(-45deg, transparent 25%, #fff 25%, #fff 50%, transparent 50%, transparent 75%, #fff 75%);
  background-size: 6px 6px;
  background-color: #e2e8f0;
}
.thermal-receipt__edge--top { top: 0; transform: rotate(180deg); }
.thermal-receipt__edge--bottom { bottom: 0; }

.thermal-receipt__center { padding-top: 0.5rem; text-align: center; font-size: 8px; }
.thermal-receipt__merchant { font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #0f172a; margin: 0; }
.thermal-receipt__muted { color: #475569; margin: 0; }
.thermal-receipt__dash { margin: 0.4rem 0; border-top: 1px dashed #cbd5e1; }
.thermal-receipt__dash--thick { border-top-width: 2px; }
.thermal-receipt__row-between { text-align: left; display: flex; justify-content: space-between; }
.thermal-receipt__left { text-align: left; margin: 0; }
.thermal-receipt__bold { font-weight: 700; color: #1e293b; }
.thermal-receipt__type { font-weight: 700; font-size: 13px; margin: 0.25rem 0; color: #0f172a; }

.thermal-receipt__items { display: flex; flex-direction: column; gap: 0.25rem; margin: 0.5rem 0; font-size: 8px; }
.thermal-receipt__item-row { display: flex; justify-content: space-between; gap: 0.4rem; }
.thermal-receipt__item-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 120px; }

.thermal-receipt__totals { display: flex; flex-direction: column; gap: 0.15rem; font-size: 8px; }
.thermal-receipt__totals-row-tip { display: flex; justify-content: space-between; font-style: italic; color: #64748b; }
.thermal-receipt__totals-row-final { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; color: #0f172a; padding: 0.15rem 0; text-transform: uppercase; }

.thermal-receipt__payment { font-size: 7.5px; color: #475569; display: flex; flex-direction: column; gap: 0.1rem; }
.thermal-receipt__payment p { margin: 0; }

.thermal-receipt__meta { font-size: 7px; color: #64748b; line-height: 1.2; display: flex; flex-direction: column; gap: 0.2rem; }
.thermal-receipt__meta p { margin: 0; }
.thermal-receipt__meta .truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.thermal-receipt__meta .breakall { word-break: break-all; white-space: pre-wrap; }

.phone-indicators {
  margin-top: 1rem; padding-top: 0.75rem;
  border-top: 1px solid rgba(226,232,240,.6);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; color: #94a3b8; font-family: monospace;
}
.phone-indicators__brand { font-size: 8px; letter-spacing: 0.1em; color: #F37035; font-weight: 700; }

.phone-step__gdpr { font-size: 9px; color: #94a3b8; text-align: center; margin-top: 1.5rem; font-weight: 500; line-height: 1.6; }

.eco-mini-card {
  margin-top: 1rem; width: 100%; max-width: 340px;
  background: #f8fafc; border: 1px solid rgba(226,232,240,.8);
  border-radius: 1rem; padding: 1rem; text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.eco-mini-card__label {
  color: #55762a; font-weight: 700; font-size: 12px; display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  margin: 0 0 0.5rem;
}
.eco-mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.eco-mini-stat { background: #fff; border: 1px solid #e2e8f0; padding: 0.5rem; border-radius: 0.75rem; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.eco-mini-stat__label { color: #94a3b8; font-size: 10px; display: block; font-weight: 600; }
.eco-mini-stat__value { color: #1e293b; font-size: 12px; font-weight: 700; font-family: monospace; display: block; }
.eco-mini-stat__unit { color: #94a3b8; font-size: 8px; display: block; margin-top: 0.15rem; }

/* ---- EcoCalculator ---- */
.mode-toggle-wrap { display: flex; justify-content: center; margin-bottom: 2.5rem; }
.mode-toggle {
  background: #f1f5f9; padding: 0.4rem; border-radius: 1rem;
  display: flex; align-items: center;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.06);
}
.mode-toggle__btn {
  padding: 0.65rem 1.25rem; border-radius: 0.75rem;
  font-size: 13px; font-weight: 700; transition: all .2s;
  color: #64748b;
}
.mode-toggle__btn:hover { color: #1e293b; }
.mode-toggle__btn.is-active { background: #fff; color: #1e293b; box-shadow: 0 1px 2px rgba(0,0,0,.05); }

.eco-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center;
}
@media (min-width: 1024px) {
  .eco-grid { grid-template-columns: repeat(12, 1fr); }
  .eco-input-col { grid-column: span 4; }
  .eco-results-col { grid-column: span 8; }
}
.eco-input-col {
  background: #f8fafc; border: 1px solid #f1f5f9; border-radius: 1rem; padding: 1.5rem;
}
@media (min-width: 768px) {
  .eco-input-col { padding: 2rem; }
}
.eco-input-col__label { font-size: 11px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 1.5rem; }

.eco-slider-row__head { display: flex; flex-direction: column; align-items: flex-start; gap: 0.35rem; margin-bottom: 0.5rem; }
.eco-slider-row__label { font-size: 14px; font-weight: 700; color: #334155; white-space: nowrap; }
.eco-slider-row__value {
  font-size: 20px; font-family: monospace; font-weight: 900;
  color: #83B641; background: rgba(131,182,65,.1); padding: 0.15rem 0.65rem; border-radius: 0.5rem;
  white-space: nowrap;
}
.range-input {
  width: 100%; height: 8px; background: #e2e8f0; border-radius: 9999px;
  outline: none; -webkit-appearance: none; appearance: none; cursor: pointer;
}
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px; border-radius: 9999px;
  background: #83B641; cursor: pointer; border: 2px solid #fff; box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.range-input::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 9999px; background: #83B641;
  cursor: pointer; border: 2px solid #fff; box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.eco-note { font-size: 10px; color: #94a3b8; margin-top: 0.25rem; display: block; }
.eco-image-wrap { margin-top: 1rem; border-radius: 0.75rem; overflow: hidden; border: 1px solid #e2e8f0; box-shadow: 0 1px 2px rgba(0,0,0,.05); }

.eco-results-col__label { font-size: 11px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 1rem; padding-left: 0.25rem; }
.eco-stats-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) {
  .eco-stats-grid { grid-template-columns: 1fr 1fr; }
}
.eco-stat-card {
  background: #f8fafc; border: 1px solid #f1f5f9; border-radius: 1rem; padding: 1.25rem;
  transition: all .2s; display: flex; align-items: flex-start; gap: 1rem;
}
.eco-stat-card:hover { background: rgba(131,182,65,.05); border-color: rgba(131,182,65,.2); }
.eco-stat-card__icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.eco-stat-card__icon--emerald { background: #ebf3e1; color: #55762a; }
.eco-stat-card__icon--sky { background: #e0f2fe; color: #0369a1; }
.eco-stat-card__icon--blue { background: #deebf1; color: #31667d; }
.eco-stat-card__icon--orange { background: #fde8df; color: #aa4e25; }
.eco-stat-card__label { color: #94a3b8; font-size: 12px; font-weight: 500; display: block; }
.eco-stat-card__value { color: #1e293b; font-size: 24px; font-family: monospace; font-weight: 900; display: block; }
.eco-stat-card__desc { color: #64748b; font-size: 11px; margin: 0.25rem 0 0; }

.bpa-banner {
  margin-top: 1rem; background: #0f172a; color: #fff; border-radius: 1rem;
  padding: 1rem 1.25rem; display: flex; align-items: center; gap: 1rem;
  border: 1px solid #1e293b; box-shadow: 0 1px 2px rgba(0,0,0,.05); position: relative; overflow: hidden;
}
@media (min-width: 768px) {
  .bpa-banner { padding: 1.25rem; }
}
.bpa-banner__icon {
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  background: rgba(131,182,65,.1); color: #99c363;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bpa-banner__title { font-size: 14px; font-weight: 700; color: #fff; margin: 0; line-height: 1.5; }
.bpa-banner__text { font-size: 11px; color: #94a3b8; margin: 0.15rem 0 0; line-height: 1.5; }

/* ---- Competitions ---- */
.prize-poster {
  margin-bottom: 2.5rem; max-width: 36rem; margin-left: auto; margin-right: auto;
  border-radius: 1.5rem; overflow: hidden; border: 1px solid #1e293b;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  transition: transform .3s;
}
.prize-poster:hover { transform: scale(1.005); }
.prize-poster img { max-height: 320px; object-fit: cover; width: 100%; }

.prize-grid { max-width: 36rem; margin: 0 auto 3rem; }
.prize-card {
  background: rgba(2,6,23,.8);
  border-radius: 1rem; padding: 1.5rem;
  border: 1px solid rgba(245,158,11,.3);
  background-image: linear-gradient(135deg, rgba(245,158,11,.1), rgba(243,112,53,.05), rgba(15,23,42,.1));
  box-shadow: 0 0 0 2px rgba(245,158,11,.2);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: all .3s;
}
.prize-card:hover { transform: translateY(-4px) scale(1.01); }
.prize-card__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.prize-card__icon-wrap { padding: 0.75rem; background: #0f172a; border-radius: 1rem; border: 1px solid #1e293b; }
.prize-card__qty {
  background: #0f172a; border: 1px solid #1e293b; font-size: 11px; font-weight: 700;
  color: #cbd5e1; padding: 0.25rem 0.75rem; border-radius: 9999px; text-transform: uppercase; letter-spacing: 0.05em;
}
.prize-card__title { font-size: 20px; font-weight: 700; color: #fff; margin: 0 0 0.5rem; }
.prize-card__desc { font-size: 13px; color: #94a3b8; line-height: 1.6; margin: 0; }
.prize-card__footer {
  border-top: 1px solid #0f172a; margin-top: 1.5rem; padding-top: 1rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: #64748b; font-family: monospace;
}
.prize-card__footer-highlight { color: #99c363; font-weight: 700; }

.how-it-works {
  background: rgba(2,6,23,.6); border-radius: 1rem; padding: 1.5rem;
  border: 1px solid #1e293b; margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .how-it-works { padding: 2rem; }
}
.how-it-works__title {
  font-size: 16px; font-weight: 700; color: #99c363; margin: 0 0 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
@media (min-width: 768px) {
  .how-it-works__title { font-size: 18px; }
}
.how-steps { display: grid; grid-template-columns: 1fr; gap: 1.5rem; font-size: 13px; }
@media (min-width: 768px) {
  .how-steps { grid-template-columns: repeat(3, 1fr); }
}
.how-step { display: flex; flex-direction: column; gap: 0.5rem; }
.how-step__num {
  width: 2rem; height: 2rem; border-radius: 9999px; background: #0f172a;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #e2e8f0; border: 1px solid #1e293b;
}
.how-step__title { font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-weight: 700; color: #fff; margin: 0; }
.how-step__text { color: #94a3b8; font-size: 13px; line-height: 1.6; margin: 0; }

.contest-cta { text-align: center; }
.contest-cta__note { font-size: 13px; font-weight: 700; color: #94a3b8; margin: 0 0 1rem; }

/* ---- Consultation / lead section (single centered column) ---- */
.consultation--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.consultation__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}
.consultation__heading { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; color: #0f172a; line-height: 1.3; margin: 0; }
@media (min-width: 768px) {
  .consultation__heading { font-size: 1.875rem; }
}
.consultation__lead { color: #475569; font-size: 14px; line-height: 1.6; margin: 0; }

.lead-form-panel__title, .consultation__form-panel h4 { font-size: 20px; font-weight: 700; color: #0f172a; margin: 0 0 0.5rem; text-align: center; }
.lead-form-panel__subtitle, .consultation__form-panel > p { font-size: 13px; color: #64748b; margin: 0 0 2rem; font-weight: 500; text-align: center; }
.consultation__form-panel {
  width: 100%;
  max-width: 56rem;
}

.lead-form { display: flex; flex-direction: column; gap: 1rem; }
.cf-turnstile { margin-top: 0.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.lead-form__textarea {
  width: 100%; background: #fff; border: 1px solid #e2e8f0; border-radius: 1rem;
  padding: 0.75rem; font-size: 12px; color: #1e293b; resize: none; box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.lead-form__textarea:focus { outline: none; border-color: #F37035; box-shadow: 0 0 0 3px rgba(243,112,53,.12); }

.lead-form-success { text-align: center; padding: 1.5rem 0; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.lead-form-success__icon {
  width: 3rem; height: 3rem; border-radius: 9999px; background: #ebf3e1; color: #3b521d;
  display: flex; align-items: center; justify-content: center; font-size: 20px; border: 1px solid #d7e8c2;
}
.lead-form-success__title { font-size: 16px; font-weight: 700; color: #0f172a; margin: 0; }
.lead-form-success__text { font-size: 12px; color: #475569; max-width: 24rem; margin: 0 auto; line-height: 1.6; }
.lead-form-success__reset { font-size: 12px; color: #F37035; font-weight: 700; margin-top: 0.5rem; }
.lead-form-success__reset:hover { text-decoration: underline; }

/* ---- Footer ---- */
.site-footer {
  margin-top: 5rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 2rem;
  max-width: 72rem;
  margin-left: auto; margin-right: auto;
  padding-left: 1.5rem; padding-right: 1.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 1rem;
  color: #94a3b8; font-size: 12px;
  position: relative; z-index: 10;
}
@media (min-width: 768px) {
  .site-footer { flex-direction: row; }
}
.footer-brand { display: flex; align-items: center; gap: 0.25rem; }
.footer-brand__name { font-weight: 800; color: #334155; }
.footer-links { display: flex; gap: 1rem; }
.footer-links__link { font-weight: 700; color: #64748b; transition: color .2s; }
.footer-links__link:hover { color: #F37035; }
