/* ============ LANDING PAGE STYLES (lp1, lp2, lp3 share) ============ */

.lp-body {
  background: #fafaf7;
  color: #1a1f1a;
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  min-height: 100vh;
}

.lp-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 720px) {
  .lp-shell { padding: 0 20px; }
}

/* TOP BAR */
.lp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.lp-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
}
.lp-trust-mini {
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 720px) {
  .lp-trust-mini { display: none; }
}

/* HERO */
.lp-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  padding: 48px 0 80px;
}
@media (max-width: 920px) {
  .lp-hero { grid-template-columns: 1fr; gap: 48px; padding: 24px 0 56px; }
}

.lp-fade-in {
  opacity: 1;
}
@keyframes lpFadeUp {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 139, 64, 0.08);
  color: #1f6b3a;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.lp-eyebrow .icon { width: 14px; height: 14px; }

.lp-h1 {
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 24px;
  text-wrap: balance;
}
.lp-h1 em {
  font-style: normal;
  color: var(--accent);
}
.lp-h1 mark {
  background: linear-gradient(180deg, transparent 60%, #ffeb99 60%);
  color: inherit;
  padding: 0 4px;
}
@media (max-width: 920px) {
  .lp-h1 { font-size: 44px; }
}
@media (max-width: 480px) {
  .lp-h1 { font-size: 36px; }
}

.lp-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 32px;
  max-width: 540px;
  text-wrap: pretty;
}

.lp-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  border: none;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 8px 24px -8px rgba(34, 139, 64, 0.5);
  transition: transform 0.15s, box-shadow 0.15s;
}
.lp-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(34, 139, 64, 0.6);
}
.lp-btn-primary .icon { width: 18px; height: 18px; }

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid #e0ddd4;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
}
.lp-btn-ghost:hover { border-color: var(--ink); }

.lp-cta-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-2);
}

/* HERO MOCK PHONE */
.lp-mock {
  position: relative;
  display: flex;
  justify-content: center;
}
.lp-mock-phone {
  width: 320px;
  background: #1a1f1a;
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.3),
    0 0 0 1px rgba(0,0,0,0.05);
  transform: rotate(-2deg);
}
.lp-mock-phone-screen {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  font-size: 13px;
}
.lp-mock-status {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px 6px;
  font-size: 11px;
  font-weight: 600;
}
.lp-mock-cover {
  height: 100px;
  background: linear-gradient(135deg, #4a8b3a, #82b94e);
  position: relative;
}
.lp-mock-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=640&h=200&fit=crop') center/cover;
  opacity: 0.85;
}
.lp-mock-body {
  padding: 14px 18px 20px;
}
.lp-mock-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 2px;
}
.lp-mock-loc {
  font-size: 12px;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.lp-mock-loc .icon { width: 12px; height: 12px; }
.lp-mock-update {
  font-size: 11px;
  color: #16a34a;
  margin-bottom: 12px;
}
.lp-mock-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-mock-item {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid #f1f0eb;
}
.lp-mock-item:last-child { border-bottom: none; }
.lp-mock-thumb {
  width: 32px; height: 32px;
  border-radius: 6px;
  object-fit: cover;
}
.lp-mock-item .name { font-weight: 500; }
.lp-mock-item .price { font-weight: 700; color: var(--accent); }

.lp-mock-tag {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: white;
  border: 1px solid #e0ddd4;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.lp-mock-tag .dot {
  width: 8px; height: 8px;
  background: #16a34a;
  border-radius: 50%;
  animation: lpPulse 2s ease-in-out infinite;
}
@keyframes lpPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* PROOF NUMBERS */
.lp-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid #e8e6df;
  border-bottom: 1px solid #e8e6df;
  margin-bottom: 80px;
}
@media (max-width: 720px) {
  .lp-proof { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.lp-proof-item { text-align: center; }
.lp-proof-num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.lp-proof-num em {
  font-style: normal;
  color: var(--accent);
}
.lp-proof-label {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 4px;
}

/* SECTIONS */
.lp-section {
  padding: 80px 0;
}
.lp-section-alt {
  background: white;
  border-top: 1px solid #e8e6df;
  border-bottom: 1px solid #e8e6df;
}

.lp-eyebrow-c {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.lp-h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-align: center;
  margin: 12px 0 16px;
  text-wrap: balance;
}
.lp-h2-sub {
  font-size: 17px;
  color: var(--ink-2);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .lp-h2 { font-size: 32px; }
}

/* FEATURES */
.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 920px) { .lp-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lp-features { grid-template-columns: 1fr; } }

.lp-feat {
  background: white;
  border: 1px solid #e8e6df;
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.lp-feat:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.lp-feat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: rgba(34, 139, 64, 0.08);
  color: var(--accent);
  border-radius: 10px;
  margin-bottom: 16px;
}
.lp-feat-icon .icon { width: 22px; height: 22px; }
.lp-feat-icon.feat-wa {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}
.lp-feat-icon.feat-grow {
  background: rgba(217, 119, 87, 0.12);
  color: #d97757;
}
.lp-feat-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
}
.lp-feat-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

/* HOW STEPS */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
@media (max-width: 720px) { .lp-steps { grid-template-columns: 1fr; } }

.lp-step {
  text-align: center;
  padding: 24px;
}
.lp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 8px 16px -4px rgba(34, 139, 64, 0.3);
}
.lp-step-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}
.lp-step-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 280px;
  margin-inline: auto;
}

/* CALLOUT */
.lp-callout {
  display: flex;
  gap: 20px;
  background: linear-gradient(135deg, #fef9e7, #fef3c7);
  border: 1px solid #fde68a;
  border-radius: 16px;
  padding: 28px;
  align-items: flex-start;
}
.lp-callout-icon {
  display: inline-flex;
  width: 48px; height: 48px;
  background: #fbbf24;
  color: white;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-callout-icon .icon { width: 22px; height: 22px; }
.lp-callout h3 { margin: 0 0 6px; font-size: 17px; font-weight: 700; }
.lp-callout p { margin: 0; font-size: 14px; line-height: 1.55; color: #78350f; }

/* TESTIMONIALS */
.lp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 920px) { .lp-testimonials { grid-template-columns: 1fr; } }

.lp-testimonial {
  background: #fafaf7;
  border: 1px solid #e8e6df;
  border-radius: 14px;
  padding: 28px;
}
.lp-testimonial-stars {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 12px;
}
.lp-testimonial-text {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 16px;
  text-wrap: pretty;
}
.lp-quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-quote-avatar {
  width: 36px; height: 36px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.lp-quote-name {
  font-weight: 600;
  font-size: 14px;
}
.lp-quote-role {
  font-size: 12px;
  color: var(--ink-2);
}

/* PRICING */
.lp-pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 56px auto 0;
}
@media (max-width: 720px) { .lp-pricing { grid-template-columns: 1fr; } }

.lp-plan {
  background: white;
  border: 1.5px solid #e8e6df;
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.lp-plan.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, white, #f7fbf5);
  box-shadow: 0 16px 40px -16px rgba(34, 139, 64, 0.2);
}
.lp-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.lp-plan-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lp-plan-price {
  font-size: 40px;
  font-weight: 700;
  margin: 8px 0 16px;
  letter-spacing: -0.02em;
}
.lp-plan-price small {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-2);
}
.lp-plan-desc {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.lp-plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-plan-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.45;
}
.lp-plan-list .icon {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ */
.lp-faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-faq-item {
  background: white;
  border: 1px solid #e8e6df;
  border-radius: 12px;
  padding: 20px 24px;
}
.lp-faq-q {
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp-faq-q::-webkit-details-marker { display: none; }
.lp-faq-q::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--ink-2);
  transition: transform 0.2s;
}
.lp-faq-item[open] .lp-faq-q::after { transform: rotate(45deg); }
.lp-faq-a {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* FINAL CTA */
.lp-final {
  text-align: center;
  padding: 80px 32px;
  background: linear-gradient(135deg, #1a3a1a, #2d5a2d);
  border-radius: 24px;
  color: white;
  margin: 80px 0 32px;
}
.lp-final h2 {
  font-size: 44px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.lp-final p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 32px;
  max-width: 540px;
  margin-inline: auto;
  text-wrap: pretty;
}
@media (max-width: 720px) {
  .lp-final { padding: 56px 24px; }
  .lp-final h2 { font-size: 32px; }
}

/* FOOTER */
.lp-foot {
  text-align: center;
  padding: 32px 0 48px;
  font-size: 13px;
  color: var(--ink-2);
}
.lp-foot a {
  color: var(--ink-2);
  margin: 0 8px;
  text-decoration: none;
}
.lp-foot a:hover { color: var(--ink); }


/* ============ LP2: WhatsApp angle ============ */
.lp-body-wa { background: #f4f7f4; }

.lp-eyebrow-wa {
  background: rgba(37, 211, 102, 0.12);
  color: #1a8842;
}

.lp-hero-wa {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
  padding: 64px 0 80px;
}
@media (max-width: 900px) {
  .lp-hero-wa { grid-template-columns: 1fr; gap: 40px; }
}

/* WhatsApp mock */
.lp-wa-mock {
  background: #efeae2;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(0,0,0,0.03) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(0,0,0,0.025) 0 1px, transparent 1px);
  background-size: 22px 22px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(20, 60, 30, 0.25), 0 8px 24px -10px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  max-height: 640px;
}
.lp-wa-bar {
  background: #008069;
  color: white;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-wa-bar strong { font-size: 15px; font-weight: 600; display: block; }
.lp-wa-status { font-size: 12px; opacity: 0.85; }
.lp-wa-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #1a8842;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px;
}
.lp-wa-body {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}
.lp-wa-msg {
  max-width: 78%;
  padding: 8px 12px 6px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
  position: relative;
  word-wrap: break-word;
}
.lp-wa-out {
  align-self: flex-end;
  background: #d9fdd3;
  border-bottom-right-radius: 2px;
}
.lp-wa-in {
  align-self: flex-start;
  background: white;
  border-bottom-left-radius: 2px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}
.lp-wa-time {
  font-size: 10px;
  color: rgba(0,0,0,0.45);
  align-self: flex-start;
  margin: 0 4px 6px;
}
.lp-wa-time-out {
  align-self: flex-end;
  color: rgba(0,0,0,0.45);
  font-size: 10px;
  margin: 0 4px 6px;
}
.lp-wa-photo {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.lp-wa-photo-thumb {
  background: linear-gradient(135deg, #b8d8c0, #6ba87c);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 24px 32px;
  border-radius: 8px;
}
.lp-wa-input-row {
  background: #f0f2f5;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #888;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.lp-wa-mic { font-size: 18px; }

/* WA cards grid */
.lp-wa-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.lp-wa-card {
  background: white;
  border: 1px solid #e8e6df;
  border-radius: 16px;
  padding: 24px;
}
.lp-wa-card-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}
.lp-wa-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}
.lp-wa-card-sample {
  background: #d9fdd3;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-style: italic;
  color: #1a3a1a;
  margin: 8px 0;
}
.lp-wa-card p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}

/* Two col layout */
.lp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .lp-two-col { grid-template-columns: 1fr; gap: 40px; }
}
.lp-tick-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-tick-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.lp-tick-list .icon {
  width: 18px; height: 18px;
  color: #1a8842;
  flex-shrink: 0;
}
.lp-quote-card {
  background: white;
  border: 1px solid #e8e6df;
  border-radius: 20px;
  padding: 32px;
  position: relative;
}
.lp-quote-mark {
  font-size: 80px;
  color: var(--accent);
  line-height: 0.7;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}
.lp-quote-card p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.lp-quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-quote-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 13px;
}

.lp-section-tinted {
  background: #ecf2ec;
  border-radius: 24px;
  padding: 64px 48px;
  margin: 32px 0;
}
@media (max-width: 720px) {
  .lp-section-tinted { padding: 40px 24px; }
}

.lp-cta-final {
  text-align: center;
  padding: 80px 32px;
  background: linear-gradient(135deg, #128C7E, #25D366);
  border-radius: 24px;
  color: white;
  margin: 32px 0 32px;
}
.lp-cta-final h2 {
  font-size: 44px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.lp-cta-final p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
}
.lp-cta-final .lp-trust-row { color: white; }
.lp-cta-final .lp-trust-row .icon { color: white; opacity: 0.9; }
.lp-btn-xl { padding: 18px 36px !important; font-size: 17px !important; }
@media (max-width: 720px) {
  .lp-cta-final { padding: 56px 24px; }
  .lp-cta-final h2 { font-size: 30px; }
}

/* ============ LP3: Foreign customers ============ */
.lp-body-eu { background: #f7f7fa; }

.lp-eyebrow-eu {
  background: rgba(40, 100, 180, 0.1);
  color: #1f5a9a;
}

.lp-hero-eu {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0 80px;
}
@media (max-width: 900px) {
  .lp-hero-eu { grid-template-columns: 1fr; gap: 40px; }
}

.lp-flags-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 16px 0 24px;
}
.lp-flag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid #e0e3ea;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}
.lp-flag-emoji { font-size: 16px; }

/* Translation card */
.lp-trans-card {
  background: white;
  border-radius: 20px;
  border: 1px solid #e0e3ea;
  padding: 24px;
  box-shadow: 0 30px 60px -20px rgba(20, 40, 90, 0.18);
}
.lp-trans-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid #ebeef3;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.lp-trans-tab {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  display: flex; align-items: center; gap: 6px;
}
.lp-trans-tab.active {
  color: var(--ink);
  border-bottom-color: #1f5a9a;
}
.lp-trans-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed #ebeef3;
  font-size: 14px;
}
.lp-trans-row:last-child { border-bottom: 0; }
.lp-trans-from { color: var(--ink-2); }
.lp-trans-arrow { color: #c4c8d1; }
.lp-trans-to { font-weight: 600; }
.lp-trans-price { color: #1f5a9a; font-weight: 700; }

/* Portal logos row */
.lp-portals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.lp-portal-pill {
  background: white;
  border: 1px solid #e0e3ea;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}
.lp-portal-flag {
  font-size: 18px;
}
.lp-portal-status {
  margin-left: auto;
  font-size: 11px;
  color: #1a8842;
  font-weight: 600;
}

/* Order card (DE) */
.lp-order-card {
  background: white;
  border: 1px solid #e0e3ea;
  border-radius: 16px;
  padding: 20px 24px;
  margin: 16px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}
.lp-order-flag {
  font-size: 32px;
  width: 48px; height: 48px;
  background: #f4f6fa;
  border-radius: 12px;
  display: grid; place-items: center;
}
.lp-order-name { font-weight: 600; font-size: 15px; }
.lp-order-meta { font-size: 12px; color: var(--ink-2); margin-top: 2px; }
.lp-order-amount { font-size: 18px; font-weight: 700; color: #1a8842; }

.lp-cta-eu {
  background: linear-gradient(135deg, #1f3d6b, #2864b4);
}

/* ---------- "Wkrótce / Beta" disclaimer banner ---------- */
.lp-beta-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #fbbf24;
  color: #78350f;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 18px;
  border-radius: 12px;
  margin-bottom: 24px;
  line-height: 1.4;
}
.lp-beta-banner .lp-beta-icon { font-size: 18px; line-height: 1; }
.lp-beta-banner strong { color: #78350f; font-weight: 700; }

@media (max-width: 720px) {
  .lp-beta-banner { font-size: 13px; padding: 10px 14px; gap: 8px; }
}
