:root {
  --bg: #ffffff;
  --bg-2: #f5f5f5;

  --surface: #ffffff;
  --surface-soft: #f8f8f8;
  --panel: rgba(255,255,255,.95);
  --panel-strong: rgba(255,255,255,1);

  --card: #ffffff;
  --card-2: #fafafa;

  --border: #e5e5e5;
  --border-strong: #d4d4d4;

  --text: #111111;
  --text-soft: #525252;
  --text-muted: #737373;

  --primary: #000000;
  --primary-2: #171717;
  --primary-soft: #f5f5f5;

  --accent: #404040;
  --accent-soft: #fafafa;

  --success: #16a34a;
  --success-soft: #ecfdf3;

  --warning: #d97706;
  --warning-soft: #fff7ed;

  --danger: #dc2626;
  --danger-soft: #fef2f2;

  --info: #2563eb;
  --info-soft: #eff6ff;

  --shadow: 0 15px 35px rgba(0,0,0,.08);
  --shadow-soft: 0 8px 20px rgba(0,0,0,.04);
  --shadow-hover: 0 18px 40px rgba(0,0,0,.10);

  --radius: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --container: 1180px;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #D3D3D3;
}

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

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

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

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.page-bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.35;
  z-index: 0;
}

.orb-one {
  width: 320px;
  height: 320px;
  background: rgba(245, 47, 65, 0.10);
  top: -120px;
  left: -80px;
}

.orb-two {
  width: 280px;
  height: 280px;
  background: rgba(255, 122, 89, 0.10);
  bottom: 10px;
  right: -80px;
}

.app-view {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  padding: 20px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(24, 33, 47, 0.06);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand strong,
.brand-copy strong {
  display: block;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
  font-size: 1.08rem;
}

.brand small,
.brand-copy small {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.brand-badge,
.service-icon,
.metric-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
  border: 1px solid rgba(245, 47, 65, 0.10);
  font-size: 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.brand-badge-premium {
  background: linear-gradient(135deg, #fff1f2, #fff7ed);
  color: var(--primary-2);
  border: 1px solid rgba(245, 47, 65, 0.12);
  box-shadow: 0 8px 24px rgba(245, 47, 65, 0.10);
}

.top-actions,
.topbar-user-block {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.user-chip {
  background: #f8fafc;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.user-chip-premium {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.user-chip-sep {
  opacity: .55;
  margin: 0 4px;
}

.mini-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 22px;
}

.mini-nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 800;
  color: var(--text-soft);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  transition: .2s ease;
}

.mini-nav a:hover,
.mini-nav a.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.flash {
  margin: 16px 0;
  padding: 16px 18px;
  border-radius: 18px;
  font-size: 14px;
  border: 1px solid transparent;
  box-shadow: var(--shadow-soft);
}

.flash.success {
  background: var(--success-soft);
  border-color: rgba(22,163,74,.18);
  color: #166534;
}

.flash.error {
  background: var(--danger-soft);
  border-color: rgba(220,38,38,.16);
  color: #991b1b;
}

.flash.info {
  background: var(--info-soft);
  border-color: rgba(37,99,235,.16);
  color: #1d4ed8;
}

.hero-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(24, 33, 47, 0.06);
  background:
    radial-gradient(circle at top left, rgba(245, 47, 65, 0.10), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 122, 89, 0.10), transparent 24%),
    linear-gradient(135deg, #ffffff, #fff7f7);
}

.hero-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 520px;
}

.hero-copy {
  padding: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.3rem, 4.8vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  max-width: 680px;
  color: #111827;
}

.hero-copy p {
  margin: 0 0 24px;
  max-width: 560px;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-visual {
  position: relative;
  min-height: 320px;
  background: #f4f7fb;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,0.35), rgba(255,255,255,0.02)),
    linear-gradient(to top, rgba(255,255,255,0.12), transparent 40%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-benefit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.benefit-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

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

.hero-mini-stats div {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}

.hero-mini-stats strong {
  display: block;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 4px;
}

.hero-mini-stats span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.floating-service-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(320px, calc(100% - 48px));
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(24, 33, 47, 0.06);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.floating-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.floating-service-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1rem;
}

.floating-service-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid rgba(245, 47, 65, 0.10);
  color: var(--primary-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-gap {
  margin-bottom: 26px;
}

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

.section-title {
  margin: 10px 0 0;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section-subtitle {
  margin: 0 0 16px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}

.section-lead,
.muted {
  color: var(--text-soft);
}

.muted-block {
  display: block;
  margin-top: 6px;
}

.small {
  font-size: .93rem;
}

.metrics-strip,
.quick-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric-card,
.trust-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 140px;
}

.metric-card strong,
.trust-card strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
  font-size: 1.04rem;
}

.metric-card p,
.trust-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff1f2, #fff7ed);
  border: 1px solid rgba(245,47,65,.10);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.services-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  transition: .22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245,47,65,.02), transparent 34%);
  pointer-events: none;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.14rem;
}

.service-card p {
  min-height: 48px;
  line-height: 1.6;
}

.service-card-lg {
  padding: 26px;
}

.service-card-premium {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.service-icon-premium {
  background: linear-gradient(135deg, #fff1f2, #fff7ed);
  color: var(--primary-2);
}

.service-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff1f2;
  color: var(--primary-2);
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(245,47,65,.10);
}

.service-meta-line {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f8fafc;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--border);
}

.service-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.price,
.inline-price,
.order-total {
  font-weight: 800;
  color: var(--primary-2);
}

.grid-two,
.feature-split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.info-box h3,
.feature-panel h3,
.cta-banner-card h3 {
  margin: 10px 0 10px;
  color: var(--text);
}

.feature-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-panel h3 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  display: grid;
  gap: 8px;
}

.cta-banner-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at top left, rgba(245,47,65,.08), transparent 25%),
    linear-gradient(135deg, #ffffff, #fff8f8);
}

.cta-banner-card h3 {
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.cta-banner-card p {
  margin: 0;
}

.page-actions,
.worker-actions,
.toolbar-actions,
.user-role-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 16px;
  min-height: 52px;
  padding: 12px 20px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-danger {
  background: var(--danger-soft);
  color: #991b1b;
  border: 1px solid rgba(220,38,38,0.16);
}

.btn-link {
  width: auto;
}

.btn-topbar {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 14px;
}

.form-card,
.summary-card,
.filter-card {
  padding: 26px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-weight: 700;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  background: #ffffff;
  outline: none;
  transition: .2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(245,47,65,.45);
  box-shadow: 0 0 0 4px rgba(245,47,65,.10);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group.compact {
  margin-bottom: 0;
}

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

.form-note,
.helper-text {
  color: var(--text-muted);
  font-size: 13px;
}

.auth-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.service-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  transition: .2s ease;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

.service-check:hover {
  border-color: rgba(245,47,65,.22);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.service-check input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--primary);
}

.service-check strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.summary-list,
.price-breakdown {
  display: grid;
  gap: 12px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--border);
}

.summary-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.total-row strong {
  color: var(--primary-2);
  font-size: 1.1rem;
}

.order-card,
.order-card-pro {
  margin-bottom: 14px;
}

.order-card h3,
.order-card-pro h3 {
  margin: 0;
  color: var(--text);
}

.order-meta,
.order-meta-2 {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.order-meta strong,
.order-meta-2 strong {
  color: var(--text);
}

.order-total {
  margin-top: 18px;
  font-size: 1.2rem;
}

.order-total-wrap {
  text-align: right;
}

.card-topline,
.card-topline-stack,
.order-heading-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.order-subline {
  margin: 8px 0 0;
}

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

.stats-grid,
.stats-grid-admin {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.stat-card-pro {
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.stat-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.stat-card-pro strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--text);
  margin-bottom: 8px;
}

.stat-card-pro p {
  margin: 0;
  color: var(--text-soft);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .01em;
}

.badge-pending {
  background: var(--warning-soft);
  color: #b45309;
}

.badge-progress {
  background: var(--info-soft);
  color: #1d4ed8;
}

.badge-success {
  background: var(--success-soft);
  color: #15803d;
}

.badge-cancelled {
  background: var(--danger-soft);
  color: #b91c1c;
}

.badge-default {
  background: #f1f5f9;
  color: #475569;
}

.error-box strong {
  color: #991b1b;
}

.empty-box p {
  color: var(--text-soft);
  margin-top: 0;
}

.site-footer {
  margin-top: 28px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 18px 8px 10px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

th {
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: #f8fafc;
}

tr:hover td {
  background: #fcfdff;
}

@media (max-width: 1080px) {
  .hero-split,
  .services-grid-lg,
  .stats-grid,
  .stats-grid-admin,
  .quick-trust-grid,
  .feature-split-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metrics-strip,
  .grid-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .app-view {
    width: min(100%, calc(100% - 20px));
    padding-top: 16px;
  }

  .topbar {
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
  }

  .topbar-right,
  .topbar-user-block {
    width: 100%;
  }

  .topbar-user-block,
  .page-actions,
  .worker-actions,
  .toolbar-actions,
  .user-role-form,
  .top-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mini-nav,
  .hero-split,
  .services-grid,
  .services-grid-lg,
  .field-grid,
  .toolbar-grid,
  .order-meta,
  .order-meta-2,
  .hero-mini-stats,
  .stats-grid,
  .stats-grid-admin,
  .grid-two,
  .quick-trust-grid,
  .feature-split-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 28px 22px;
  }

  .hero-card {
    border-radius: 26px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .floating-service-card {
    position: static;
    width: auto;
    margin: 16px;
  }

  .card,
  .form-card,
  .summary-card,
  .filter-card {
    padding: 20px;
  }

  .btn,
  .btn-link,
  .mini-nav a {
    width: 100%;
  }

  .mini-nav a {
    justify-content: center;
  }

  .cta-banner-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .brand-badge,
  .service-icon,
  .metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }
}


/* ===== UBER STYLE ===== */

.page-bg-orb,
.orb-one,
.orb-two{
    display:none;
}

.hero-card{
    background:#000;
    border:none;
    box-shadow:none;
}

.hero-copy h1{
    color:#fff;
    font-weight:900;
}

.hero-copy p{
    color:#d4d4d4;
}

.hero-visual::after{
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.55),
        rgba(0,0,0,.05)
    );
}

.eyebrow{
    background:#111;
    color:#fff;
    border:none;
}

.btn-primary{
    background:#000;
    color:#fff;
}

.btn-primary:hover{
    background:#222;
}

.btn-secondary{
    background:#fff;
    border:1px solid #d4d4d4;
}

.card{
    border:1px solid #e5e5e5;
    box-shadow:none;
}

.topbar{
    background:#fff;
    box-shadow:none;
    border:1px solid #e5e5e5;
}

.service-badge{
    background:#111;
    color:#fff;
    border:none;
}

.brand-badge,
.service-icon,
.metric-icon,
.trust-icon{
    background:#f5f5f5;
    color:#111;
    border:1px solid #e5e5e5;
}

.service-card::before{
    display:none;
}

.cta-banner-card{
    background:#111;
}

.cta-banner-card h3{
    color:#fff;
}

.cta-banner-card p{
    color:#d4d4d4;
}

.hero-mini-stats div,
.floating-service-card{
    border:1px solid #e5e5e5;
    box-shadow:none;
}

table{
    border:1px solid #e5e5e5;
}

th{
    background:#fafafa;
}

tr:hover td{
    background:#f8f8f8;
}


/* ===== NUEVAS SECCIONES: MODALIDADES Y PASOS (estilo Uber) ===== */

.services-modality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.modality-card {
  text-align: center;
  transition: transform 0.2s ease;
  background: #fff;
  border: 1px solid #e5e5e5;
}

.modality-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.modality-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.modality-card h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #111;
}

.modality-desc {
  font-weight: 700;
  color: #000;
  margin: 0 0 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modality-detail {
  color: #525252;
  line-height: 1.5;
  margin-bottom: 24px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  text-align: center;
  padding: 28px 20px;
  transition: transform 0.2s ease;
  background: #fff;
  border: 1px solid #e5e5e5;
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-number {
  width: 56px;
  height: 56px;
  background: #000;
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #111;
}

.step-card p {
  margin: 0;
  color: #525252;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .services-modality-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 820px) {
  .services-modality-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .step-card {
    padding: 20px;
  }
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}

@media (max-width: 520px) {
  .services-modality-grid {
    gap: 16px;
  }
  .modality-card h3 {
    font-size: 1.3rem;
  }
  .step-card h3 {
    font-size: 1.1rem;
  }
}

/* ===== LAVADORES INDEPENDIENTES ===== */

.workers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.worker-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  padding: 20px;
  transition: transform 0.2s ease;
}

.worker-card:hover {
  transform: translateY(-3px);
}

.worker-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.worker-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #111;
}

.worker-distance {
  font-size: 0.85rem;
  color: #737373;
  background: #f5f5f5;
  padding: 4px 10px;
  border-radius: 30px;
}

.worker-price {
  font-size: 0.9rem;
  color: #525252;
  margin-bottom: 10px;
}

.worker-price strong {
  font-size: 1.2rem;
  color: #000;
}

.worker-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.stars {
  color: #f5b042;
  letter-spacing: 2px;
  font-size: 1rem;
}

.rating-value {
  font-size: 0.85rem;
  color: #737373;
}

.worker-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.status-badge {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 30px;
  text-transform: uppercase;
}

.status-available {
  background: #ecfdf3;
  color: #067647;
  border: 1px solid #abefc6;
}

.status-busy {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.btn-sm {
  min-height: 36px;
  padding: 6px 14px;
  font-size: 0.85rem;
}

.btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 820px) {
  .workers-grid {
    grid-template-columns: 1fr;
  }
  .worker-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== LAVADORES INDEPENDIENTES - ESTILO IMAGEN ===== */

.workers-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.worker-item {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 16px 20px;
  transition: all 0.2s ease;
}

.worker-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.worker-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.worker-row:first-child {
  margin-bottom: 12px;
}

.worker-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111;
}

.worker-distance-price {
  font-size: 0.85rem;
  color: #525252;
}

.worker-distance-price strong {
  color: #000;
  font-weight: 800;
}

.worker-stars {
  color: #f5b042;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.status-btn {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  transition: 0.2s;
  cursor: pointer;
  border: none;
  background: none;
}

.status-btn.available {
  background: #ecfdf3;
  color: #067647;
  border: 1px solid #abefc6;
}

.status-btn.available:hover {
  background: #dff7e8;
  transform: translateY(-1px);
}

.status-btn.busy {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  cursor: default;
}

/* Responsive */
@media (max-width: 640px) {
  .worker-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .worker-row:first-child {
    margin-bottom: 8px;
  }
  .worker-distance-price {
    font-size: 0.8rem;
  }
  .status-btn {
    width: 100%;
    text-align: center;
  }
}

/* =========================================================
   CARWHAS PROFESSIONAL RED UI - SAFE VISUAL LAYER
   Solo redefine estilos. No modifica lógica, rutas ni base de datos.
   ========================================================= */
:root{
  --bg:#f7f7f8;
  --bg-2:#f3f4f6;
  --surface:#ffffff;
  --card:#ffffff;
  --border:#eceef2;
  --border-strong:#d8dbe2;
  --text:#171717;
  --text-soft:#4b5563;
  --text-muted:#7a828e;
  --primary:#e30613;
  --primary-2:#bf0711;
  --primary-soft:#fff1f2;
  --accent:#ff6b00;
  --accent-soft:#fff7ed;
  --shadow:0 22px 55px rgba(17,24,39,.10);
  --shadow-soft:0 10px 28px rgba(17,24,39,.06);
  --shadow-hover:0 22px 50px rgba(17,24,39,.12);
}

body{
  background:var(--bg);
  color:var(--text);
}

.app-view{
  width:100%;
  max-width:none;
  padding:0 0 48px;
}

.topbar{
  width:100%;
  margin:0;
  padding:14px clamp(18px, 6vw, 72px);
  border-radius:0;
  border:0;
  border-bottom:1px solid var(--border);
  box-shadow:0 2px 14px rgba(17,24,39,.04);
  position:sticky;
  top:0;
  z-index:20;
}

.brand-badge,
.brand-badge-premium{
  width:42px;
  height:42px;
  border-radius:13px;
  background:var(--primary);
  border:0;
  color:#fff;
  box-shadow:0 10px 22px rgba(227,6,19,.18);
}

.brand-car-mark{
  position:relative;
  display:block;
  width:24px;
  height:13px;
  border:2px solid #fff;
  border-radius:7px 7px 4px 4px;
}
.brand-car-mark::before{
  content:"";
  position:absolute;
  left:4px;
  right:4px;
  top:-7px;
  height:8px;
  border:2px solid #fff;
  border-bottom:0;
  border-radius:8px 8px 0 0;
}
.brand-car-mark::after{
  content:"";
  position:absolute;
  left:2px;
  right:2px;
  bottom:-5px;
  height:5px;
  background:radial-gradient(circle at left center,#fff 0 3px,transparent 3px),radial-gradient(circle at right center,#fff 0 3px,transparent 3px);
}

.brand-copy strong{font-size:1.22rem;letter-spacing:-.035em;}
.brand-copy small{font-size:.78rem;color:var(--text-muted);}

.topbar-user-block{gap:12px;}
.user-chip{background:#fff;border-color:var(--border);box-shadow:none;color:var(--text-soft);}
.btn-topbar{min-height:40px;border-radius:10px;padding:9px 16px;font-size:13px;}

.mini-nav{
  width:100%;
  margin:0;
  padding:10px clamp(18px, 6vw, 72px);
  border-bottom:1px solid var(--border);
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);
  position:sticky;
  top:71px;
  z-index:19;
}
.mini-nav a{
  box-shadow:none;
  border:0;
  background:transparent;
  border-radius:10px;
  padding:10px 14px;
  font-weight:700;
}
.mini-nav a:hover,
.mini-nav a.active{
  background:var(--primary-soft);
  color:var(--primary);
  border-color:transparent;
  transform:none;
}

.flash,
.section-gap,
.feature-split-grid,
.cta-banner{
  width:min(1180px, calc(100% - 36px));
  margin-left:auto;
  margin-right:auto;
}
.flash{margin-top:18px;}

.hero-card.carwash-hero{
  width:100%;
  margin:0 0 0;
  border-radius:0 0 36px 36px;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  min-height:520px;
  box-shadow:none;
  border:0;
}
.carwash-hero .hero-copy{padding:70px 0 86px clamp(18px, 8vw, 120px);}
.carwash-hero .hero-copy h1{
  color:#fff;
  max-width:680px;
  font-size:clamp(2.4rem,5vw,4.6rem);
  line-height:1.03;
  font-weight:850;
  letter-spacing:-.055em;
}
.carwash-hero .hero-copy p{color:rgba(255,255,255,.88);font-size:1.06rem;max-width:560px;}
.carwash-hero .eyebrow{background:rgba(255,255,255,.16);color:#fff;border:1px solid rgba(255,255,255,.25);}
.carwash-hero .hero-visual{min-height:520px;background:#111;}
.carwash-hero .hero-visual::after{
  background:linear-gradient(90deg,rgba(227,6,19,.70),rgba(227,6,19,.18) 38%,rgba(0,0,0,.12));
}
.carwash-hero .hero-visual img{filter:saturate(1.02) contrast(1.05);}

.hero-mini-stats{grid-template-columns:repeat(3,minmax(0,1fr));max-width:650px;}
.hero-mini-stats div{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:none;
}
.hero-mini-stats strong{color:#fff;font-size:1rem;}
.hero-mini-stats span{color:rgba(255,255,255,.75);font-size:.82rem;}

.floating-service-card{
  left:auto;
  right:clamp(18px,5vw,70px);
  bottom:54px;
  background:rgba(255,255,255,.96);
  border:0;
  box-shadow:0 24px 55px rgba(0,0,0,.16);
}
.floating-label{color:var(--primary);}

.btn{border-radius:12px;min-height:48px;font-weight:800;}
.btn-primary{background:var(--primary);color:#fff;box-shadow:0 12px 28px rgba(227,6,19,.22);}
.btn-primary:hover{background:var(--primary-2);}
.btn-secondary{background:#fff;color:var(--text);border:1px solid var(--border-strong);}
.carwash-hero .btn-primary{background:#fff;color:var(--primary);box-shadow:none;}
.carwash-hero .btn-secondary{background:rgba(255,255,255,.14);color:#fff;border-color:rgba(255,255,255,.24);}

.card{border-color:var(--border);box-shadow:var(--shadow-soft);border-radius:18px;}
.card:hover{box-shadow:var(--shadow-hover);}
.eyebrow{background:var(--primary-soft);color:var(--primary);border:1px solid rgba(227,6,19,.10);}
.section-gap{margin-top:42px;margin-bottom:0;}
.centered-head{text-align:center;justify-content:center;}
.section-title{font-size:clamp(1.7rem,2.7vw,2.45rem);font-weight:850;letter-spacing:-.04em;}
.section-lead{max-width:700px;line-height:1.65;margin:8px auto 0;}

.trust-strip{
  margin-top:-40px;
  position:relative;
  z-index:4;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:0;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:0 20px 45px rgba(17,24,39,.10);
  overflow:hidden;
}
.trust-strip-item{display:flex;align-items:center;gap:14px;padding:22px 24px;border-right:1px solid var(--border);}
.trust-strip-item:last-child{border-right:0;}
.trust-strip-item strong{display:block;font-size:.96rem;color:var(--text);margin-bottom:4px;}
.trust-strip-item span{display:block;font-size:.83rem;color:var(--text-muted);}
.trust-strip-icon{width:40px;height:40px;border-radius:12px;background:var(--primary-soft);position:relative;flex:0 0 auto;}
.trust-strip-icon::before{content:"";position:absolute;inset:11px;border:2px solid var(--primary);border-radius:50%;}
.quality-icon::before{border-radius:9px;}
.care-icon::before{border-radius:5px;border-top-left-radius:12px;border-top-right-radius:12px;}
.support-icon::before{border-radius:10px;}

.services-database-grid{gap:18px;}
.database-service-card{border-top:4px solid var(--primary);min-height:270px;}
.database-service-card:nth-child(2n){border-top-color:var(--accent);}
.database-service-card:nth-child(3n){border-top-color:#2563eb;}
.service-index{color:#9ca3af;font-weight:850;font-size:.9rem;}
.service-icon-premium{
  width:58px;height:58px;border-radius:16px;background:var(--primary-soft);border:0;margin:10px 0 18px;position:relative;color:var(--primary);box-shadow:none;
}
.service-icon-premium::before{content:"";position:absolute;width:31px;height:18px;border:2px solid currentColor;border-radius:12px 12px 6px 6px;top:21px;left:14px;}
.service-icon-premium::after{content:"";position:absolute;width:19px;height:13px;border:2px solid currentColor;border-bottom:0;border-radius:10px 10px 0 0;top:13px;left:19px;}
.service-badge{background:var(--primary-soft);color:var(--primary);border:0;}
.card-link{color:var(--primary);font-weight:850;font-size:.92rem;}
.price{font-size:1.05rem;color:var(--text);}

.professional-steps{position:relative;gap:18px;}
.step-card{box-shadow:none;border-color:var(--border);}
.step-number{background:var(--primary);box-shadow:0 10px 22px rgba(227,6,19,.18);font-size:1.25rem;width:48px;height:48px;}
.step-card h3{font-size:1.08rem;}
.step-card p{font-size:.92rem;}

.workers-section{background:#fff;border:1px solid var(--border);border-radius:22px;padding:28px;box-shadow:var(--shadow-soft);}
.professional-workers-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;}
.worker-item{display:flex;gap:14px;align-items:center;border-radius:16px;padding:16px;border-color:var(--border);box-shadow:none;}
.worker-avatar{width:44px;height:44px;border-radius:50%;display:grid;place-items:center;background:var(--primary-soft);color:var(--primary);font-weight:850;flex:0 0 auto;}
.worker-main{flex:1;min-width:0;}
.worker-rating-line{font-size:.85rem;color:var(--text-muted);font-weight:700;}
.status-btn{font-size:.72rem;text-transform:none;border-radius:999px;}
.status-btn.available{background:#ecfdf3;color:#067647;border:1px solid #abefc6;}
.status-btn.busy{background:#f3f4f6;color:#6b7280;border-color:#e5e7eb;}

.feature-panel h3{font-size:1.55rem;}
.cta-banner-card{background:linear-gradient(135deg,var(--primary),var(--primary-2));border:0;}
.cta-banner-card .eyebrow{background:rgba(255,255,255,.16);border-color:rgba(255,255,255,.20);color:#fff;}
.cta-banner-card h3,.cta-banner-card p{color:#fff;}
.cta-banner-card .btn-primary{background:#fff;color:var(--primary);box-shadow:none;}
.cta-banner-card .btn-secondary{background:rgba(255,255,255,.15);color:#fff;border-color:rgba(255,255,255,.25);}

.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:rgba(227,6,19,.45);box-shadow:0 0 0 4px rgba(227,6,19,.10);}
.service-check input{accent-color:var(--primary);}
.badge-progress{background:#eff6ff;color:#1d4ed8;}
.badge-success{background:#ecfdf3;color:#15803d;}
.site-footer{color:#868e99;padding-top:32px;}

@media(max-width:1080px){
  .trust-strip{grid-template-columns:repeat(2,1fr);}
  .trust-strip-item:nth-child(2){border-right:0;}
  .trust-strip-item:nth-child(-n+2){border-bottom:1px solid var(--border);}
  .professional-workers-list{grid-template-columns:1fr;}
}
@media(max-width:820px){
  .topbar,.mini-nav{position:relative;top:auto;padding-left:16px;padding-right:16px;}
  .carwash-hero{grid-template-columns:1fr;}
  .carwash-hero .hero-copy{padding:34px 20px 26px;}
  .carwash-hero .hero-visual{min-height:300px;}
  .hero-mini-stats{grid-template-columns:1fr;}
  .trust-strip{margin-top:18px;grid-template-columns:1fr;border-radius:18px;}
  .trust-strip-item{border-right:0;border-bottom:1px solid var(--border);}
  .trust-strip-item:last-child{border-bottom:0;}
  .section-gap,.feature-split-grid,.cta-banner{width:min(100% - 24px,1180px);}
  .workers-section{padding:20px;}
  .worker-item{align-items:flex-start;}
  .worker-row{align-items:flex-start;}
}

/* =========================================================
   ITERACIÓN UX: HOME MÁS LIMPIA + MENÚ INTEGRADO RESPONSIVE
   ========================================================= */
.site-header{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:28px;
  min-height:72px;
}

.main-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  min-width:0;
}

.main-nav a{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:9px 13px;
  border-radius:10px;
  color:var(--text-soft);
  font-size:14px;
  font-weight:750;
  transition:.18s ease;
  white-space:nowrap;
}

.main-nav a:hover,
.main-nav a.active{
  background:var(--primary-soft);
  color:var(--primary);
}

.header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:nowrap;
}

.nav-toggle,
.hamburger{
  display:none;
}

.mini-nav{
  display:none !important;
}

.carwash-hero .hero-copy{
  padding-top:86px;
  padding-bottom:92px;
}

.carwash-hero .hero-copy p{
  max-width:520px;
}

.hero-actions{
  margin-top:4px;
}

.trust-strip{
  margin-top:-34px;
}

.services-live-section{
  margin-top:56px;
}

.services-live-section .section-head{
  margin-bottom:22px;
}

.database-service-card{
  min-height:250px;
}

.database-service-card .muted{
  min-height:auto;
}

.how-section{
  margin-top:50px;
}

.workers-section{
  margin-top:50px;
}

.cta-banner{
  margin-top:50px;
}

.cta-banner-card{
  padding:34px;
}

.cta-banner-card .page-actions .btn-secondary{
  display:none;
}

@media(max-width:1120px){
  .site-header{
    grid-template-columns:auto auto;
    justify-content:space-between;
    gap:16px;
  }

  .hamburger{
    display:flex;
    width:42px;
    height:42px;
    border:1px solid var(--border);
    border-radius:12px;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    background:#fff;
    order:3;
  }

  .hamburger span{
    width:18px;
    height:2px;
    border-radius:999px;
    background:var(--text);
    transition:.2s ease;
  }

  .main-nav,
  .header-actions{
    display:none;
  }

  .nav-toggle:checked ~ .main-nav,
  .nav-toggle:checked ~ .header-actions{
    display:flex;
    grid-column:1 / -1;
    width:100%;
  }

  .nav-toggle:checked ~ .main-nav{
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:4px;
    padding-top:14px;
    border-top:1px solid var(--border);
  }

  .nav-toggle:checked ~ .main-nav a{
    width:100%;
    justify-content:flex-start;
    padding:12px 14px;
    background:#fff;
    border:1px solid var(--border);
  }

  .nav-toggle:checked ~ .header-actions{
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding-top:2px;
  }

  .nav-toggle:checked ~ .header-actions .btn,
  .nav-toggle:checked ~ .header-actions .user-chip{
    width:100%;
    justify-content:center;
    text-align:center;
  }
}

@media(max-width:820px){
  .topbar.site-header{
    position:sticky;
    top:0;
    padding:12px 16px;
  }

  .brand-copy small{
    display:none;
  }

  .carwash-hero{
    border-radius:0 0 28px 28px;
  }

  .carwash-hero .hero-copy{
    padding:36px 20px 30px;
  }

  .carwash-hero .hero-copy h1{
    font-size:2.25rem;
  }

  .carwash-hero .hero-copy p{
    font-size:1rem;
  }

  .hero-actions .btn{
    width:100%;
  }

  .trust-strip{
    margin-top:20px;
  }

  .services-live-section,
  .how-section,
  .workers-section,
  .cta-banner{
    margin-top:34px;
  }
}

/* =========================================================
   V2.5 - PLATAFORMA CARWASH: 2 VERTICALES + 1 FUTURA
   ========================================================= */
.platform-hero .hero-copy p{
  max-width: 600px;
}
.platform-floating-card strong{
  line-height: 1.25;
}
.platform-section{
  margin-top: 58px;
}
.platform-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:18px;
  margin-top:26px;
}
.platform-card{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  min-height:330px;
  padding:28px;
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.platform-card:hover{
  transform: translateY(-3px);
  border-color: rgba(227,6,19,.26);
}
.platform-card-featured{
  background: linear-gradient(135deg, #ffffff 0%, #fff7f7 100%);
  border-top:4px solid var(--primary);
}
.platform-card-soon{
  background:#fafafa;
  color:#6b7280;
}
.platform-card h3{
  margin:18px 0 10px;
  font-size:1.32rem;
  line-height:1.2;
  letter-spacing:-.03em;
}
.platform-card p{
  margin:0 0 22px;
  color:var(--text-muted);
  line-height:1.6;
  font-size:.96rem;
}
.platform-card .btn,
.platform-card .soon-note{
  margin-top:auto;
}
.platform-tag{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:5px 11px;
  border-radius:999px;
  background:var(--primary);
  color:#fff;
  font-size:.72rem;
  font-weight:850;
  letter-spacing:.02em;
}
.platform-tag-soft{
  background:var(--primary-soft);
  color:var(--primary);
}
.platform-tag-muted{
  background:#f3f4f6;
  color:#6b7280;
}
.platform-icon{
  width:62px;
  height:62px;
  border-radius:18px;
  background:var(--primary-soft);
  position:relative;
  margin-top:24px;
  color:var(--primary);
}
.platform-icon::before,
.platform-icon::after{
  content:"";
  position:absolute;
  border:2px solid currentColor;
}
.own-service-icon::before{
  width:36px;height:19px;border-radius:13px 13px 7px 7px;left:13px;top:25px;
}
.own-service-icon::after{
  width:22px;height:13px;border-bottom:0;border-radius:11px 11px 0 0;left:20px;top:15px;
}
.washer-service-icon::before{
  width:28px;height:28px;border-radius:50%;left:17px;top:12px;
}
.washer-service-icon::after{
  width:34px;height:13px;border-radius:13px 13px 7px 7px;left:14px;bottom:12px;
}
.shop-service-icon::before{
  width:34px;height:30px;border-radius:6px;left:14px;bottom:13px;
}
.shop-service-icon::after{
  width:40px;height:12px;border-radius:8px 8px 3px 3px;left:11px;top:14px;
}
.soon-note{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:10px 14px;
  border-radius:12px;
  background:#fff;
  border:1px solid var(--border);
  font-weight:850;
  color:#6b7280;
}
.platform-workers-section .section-lead{
  margin-left:0;
  margin-right:0;
}
.confidence-card{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:28px;
  align-items:center;
  padding:32px;
  background:#fff;
}
.confidence-card h3{
  margin:12px 0 8px;
  font-size:1.55rem;
  letter-spacing:-.03em;
}
.confidence-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.confidence-list span{
  display:flex;
  align-items:center;
  min-height:46px;
  padding:12px 14px;
  border-radius:14px;
  background:var(--surface-soft);
  border:1px solid var(--border);
  color:var(--text-soft);
  font-size:.9rem;
  font-weight:750;
}
@media(max-width:1080px){
  .platform-grid{
    grid-template-columns:1fr;
  }
  .platform-card{
    min-height:auto;
  }
  .confidence-card{
    grid-template-columns:1fr;
  }
}
@media(max-width:620px){
  .platform-grid{
    gap:14px;
  }
  .platform-card{
    padding:22px;
  }
  .confidence-list{
    grid-template-columns:1fr;
  }
  .confidence-card{
    padding:22px;
  }
}

/* ==============================
   V2.6 - Pulido profesional UX
   ============================== */
:root{
  --brand-red:#e30613;
  --brand-red-dark:#bf0710;
  --brand-orange:#ff6b00;
  --ink:#0f172a;
  --muted:#475569;
  --soft-bg:#f5f6f8;
}

body{
  background:#eef0f3 !important;
  color:var(--ink);
}

.app-view{
  width:min(1240px, calc(100% - 28px));
  padding-top:16px;
}

.topbar.site-header{
  position:sticky;
  top:12px;
  z-index:1000;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:18px;
  margin-bottom:16px;
  padding:12px 16px;
  border-radius:22px;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(18px);
  box-shadow:0 16px 40px rgba(15,23,42,.10);
}

.brand-badge-premium{
  width:46px;
  height:46px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--brand-red), #ff3b30);
  border:none;
  box-shadow:0 10px 26px rgba(227,6,19,.22);
}

.brand-copy strong{font-size:1.12rem;}
.brand-copy small{font-size:.76rem;}

.main-nav.main-nav-premium{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:4px;
  min-width:0;
  white-space:nowrap;
}

.main-nav.main-nav-premium a{
  padding:10px 12px;
  border-radius:12px;
  font-size:.88rem;
  font-weight:750;
  color:#334155;
  transition:.18s ease;
}

.main-nav.main-nav-premium a:hover,
.main-nav.main-nav-premium a.active{
  color:var(--brand-red);
  background:#fff1f2;
}

.header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  min-width:max-content;
}

.btn.btn-primary{
  background:var(--brand-red);
  border-color:var(--brand-red);
  color:#fff;
  box-shadow:0 12px 24px rgba(227,6,19,.20);
}
.btn.btn-primary:hover{background:var(--brand-red-dark);}
.btn.btn-secondary{
  background:#fff;
  color:#111827;
  border-color:#d9dee8;
  box-shadow:none;
}

.nav-toggle{display:none;}
.hamburger{display:none;}

.hero-card.carwash-hero.v26-hero{
  overflow:hidden;
  min-height:560px;
  margin:0 0 0;
  border-radius:0 0 34px 34px;
  background:linear-gradient(90deg, rgba(227,6,19,.96) 0%, rgba(227,6,19,.86) 42%, rgba(17,24,39,.22) 100%);
  box-shadow:0 22px 55px rgba(15,23,42,.18);
}

.v26-hero .hero-copy{
  padding:76px 24px 90px clamp(24px, 7vw, 90px);
  z-index:2;
}

.v26-hero .hero-copy h1{
  max-width:650px;
  font-size:clamp(2.3rem, 5vw, 4.65rem);
  line-height:1.02;
  letter-spacing:-.06em;
}
.v26-hero .hero-copy p{
  max-width:590px;
  font-size:1.08rem;
  line-height:1.72;
}
.v26-hero .hero-visual{min-height:560px;}
.v26-hero .hero-visual::after{background:linear-gradient(90deg, rgba(227,6,19,.92), rgba(227,6,19,.22) 45%, rgba(0,0,0,.08));}
.v26-hero .floating-service-card{display:none!important;}
.v26-hero .btn-primary{background:#fff!important;color:var(--brand-red)!important;border-color:#fff!important;box-shadow:none!important;}
.v26-hero .btn-secondary{background:rgba(255,255,255,.15)!important;color:#fff!important;border-color:rgba(255,255,255,.28)!important;}

.section-gap{
  margin:0;
  padding:72px clamp(18px, 4vw, 38px);
}
.section-white{background:#fff;}
.section-soft{background:var(--soft-bg);}

.section-head-premium.centered-head{max-width:790px;margin:0 auto 30px;text-align:center;}
.section-title{letter-spacing:-.04em;color:#07111f;}
.section-lead{color:#536173;line-height:1.65;}
.eyebrow{color:var(--brand-red)!important;letter-spacing:.08em;font-weight:900;}

.platform-grid.v26-platform-grid{
  grid-template-columns:1.12fr 1fr .86fr;
  gap:18px;
}
.platform-card{
  border-radius:24px;
  padding:30px;
  min-height:315px;
  border:1px solid #e9edf3;
  box-shadow:0 18px 44px rgba(15,23,42,.07);
}
.platform-card-featured{border-top:4px solid var(--brand-red)!important;}
.platform-card:not(.platform-card-featured){border-top:4px solid var(--brand-orange);}
.platform-card-soon{opacity:.86;border-top-color:#2563eb!important;background:#fbfcff;}
.platform-card h3{font-size:1.36rem;letter-spacing:-.03em;}
.platform-card p{font-size:.98rem;color:#475569;line-height:1.65;}
.platform-tag{background:#fff1f2;color:var(--brand-red);border-color:#fecdd3;}
.platform-tag-soft{background:#fff7ed;color:#ea580c;border-color:#fed7aa;}
.platform-tag-muted{background:#eff6ff;color:#2563eb;border-color:#bfdbfe;}
.platform-icon{background:#fff1f2;color:var(--brand-red);}

.v26-servicios .section-lead{max-width:600px;margin-inline:auto;}
.services-grid.v26-services-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  align-items:stretch;
}
.database-service-card{
  min-height:360px;
  border-radius:24px;
  border:1px solid #e9edf3;
  box-shadow:0 18px 42px rgba(15,23,42,.06);
  transition:.18s ease;
}
.database-service-card:hover{transform:translateY(-3px);box-shadow:0 24px 56px rgba(15,23,42,.10);}
.database-service-card:nth-child(1){border-top:4px solid var(--brand-red);}
.database-service-card:nth-child(2){border-top:4px solid var(--brand-orange);}
.database-service-card:nth-child(3){border-top:4px solid #2563eb;}
.featured-service-card{background:#fff;}
.service-card-soon{background:#fbfcff;}
.service-badge-muted{background:#eff6ff!important;color:#2563eb!important;}
.service-card h3{font-size:1.28rem;letter-spacing:-.03em;}
.service-card p{font-size:.98rem;line-height:1.6;}
.service-footer-row{align-items:center;}
.card-link{color:var(--brand-red);font-weight:900;}
.price{font-weight:900;color:#0f172a;}

.platform-workers-section .section-head{align-items:end;}
.professional-workers-list{
  background:#fff;
  border:1px solid #e9edf3;
  border-radius:26px;
  padding:10px;
  box-shadow:0 18px 46px rgba(15,23,42,.06);
}
.worker-item{border-radius:18px;margin:0;border-bottom:1px solid #eef2f7;}
.worker-item:last-child{border-bottom:0;}
.worker-avatar{background:#fff1f2;color:var(--brand-red);}
.status-btn.available{background:var(--brand-red);}

.v26-steps{grid-template-columns:repeat(3,minmax(0,1fr));}
.step-card{border-radius:24px;border:1px solid #e9edf3;box-shadow:0 16px 36px rgba(15,23,42,.05);}
.step-number{background:var(--brand-red);}

.v26-confidence .confidence-card{
  border-radius:28px;
  border:1px solid #e9edf3;
  box-shadow:0 20px 52px rgba(15,23,42,.07);
}
.confidence-list span{background:#f8fafc;border:1px solid #e2e8f0;color:#334155;}

.v26-cta{background:linear-gradient(135deg, var(--brand-red), #b80610);border-radius:0 0 34px 34px;margin-bottom:0;}
.v26-cta .cta-banner-card{
  background:transparent;
  color:#fff;
  border:none;
  box-shadow:none;
  padding:18px 0;
}
.v26-cta .eyebrow,.v26-cta .muted,.v26-cta h3{color:#fff!important;}
.v26-cta .muted{opacity:.8;}
.v26-cta .btn-primary{background:#fff!important;color:var(--brand-red)!important;border-color:#fff!important;box-shadow:none!important;}

.professional-footer{
  margin:0;
  padding:44px clamp(18px,4vw,38px) 24px;
  background:#0b1220;
  color:#cbd5e1;
  border-radius:0 0 28px 28px;
}
.footer-main{
  display:grid;
  grid-template-columns:1.45fr repeat(3, minmax(0, .75fr));
  gap:28px;
  align-items:start;
}
.footer-brand p{
  max-width:360px;
  margin:16px 0 0;
  color:#94a3b8;
  line-height:1.65;
}
.footer-brand-link .brand-copy strong{color:#fff;}
.footer-brand-link .brand-copy small{color:#94a3b8;}
.footer-col{display:flex;flex-direction:column;gap:10px;font-size:.92rem;}
.footer-col strong{color:#fff;margin-bottom:4px;}
.footer-col a,.footer-col span{color:#94a3b8;}
.footer-col a:hover{color:#fff;}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:18px;
  margin-top:34px;
  padding-top:20px;
  border-top:1px solid rgba(148,163,184,.18);
  color:#64748b;
  font-size:.86rem;
}

@media(max-width:1120px){
  .topbar.site-header{grid-template-columns:auto auto;}
  .hamburger{display:inline-flex;flex-direction:column;gap:5px;justify-self:end;cursor:pointer;padding:11px;border-radius:12px;border:1px solid #e2e8f0;background:#fff;}
  .hamburger span{width:22px;height:2px;background:#111827;border-radius:999px;display:block;}
  .main-nav.main-nav-premium,
  .header-actions{
    display:none;
  }
  .nav-toggle:checked ~ .main-nav.main-nav-premium{
    display:flex;
    grid-column:1 / -1;
    flex-direction:column;
    align-items:stretch;
    width:100%;
    padding:12px 0 0;
    white-space:normal;
  }
  .nav-toggle:checked ~ .main-nav.main-nav-premium a{padding:14px 12px;border-radius:14px;}
  .nav-toggle:checked ~ .header-actions{
    display:flex;
    grid-column:1 / -1;
    justify-content:stretch;
    flex-wrap:wrap;
    padding-top:10px;
  }
  .header-actions .btn{flex:1;justify-content:center;}
  .platform-grid.v26-platform-grid{grid-template-columns:1fr;}
  .services-grid.v26-services-grid{grid-template-columns:1fr;}
  .v26-steps{grid-template-columns:1fr;}
  .footer-main{grid-template-columns:1fr 1fr;}
}

@media(max-width:820px){
  .app-view{width:100%;padding-top:0;}
  .topbar.site-header{top:0;border-radius:0;margin-bottom:0;}
  .hero-card.carwash-hero.v26-hero{border-radius:0;min-height:auto;}
  .v26-hero .hero-copy{padding:44px 22px 30px;}
  .v26-hero .hero-visual{min-height:260px;}
  .v26-hero .hero-copy h1{font-size:2.35rem;}
  .section-gap{padding:54px 18px;}
  .platform-card,.database-service-card{min-height:auto;}
  .platform-workers-section .section-head{align-items:flex-start;}
  .footer-main{grid-template-columns:1fr;}
  .footer-bottom{flex-direction:column;}
  .professional-footer{border-radius:0;}
}

@media(max-width:520px){
  .brand-copy small{display:none;}
  .v26-hero .hero-copy h1{font-size:2rem;}
  .hero-actions{flex-direction:column;align-items:stretch;}
  .hero-actions .btn{width:100%;justify-content:center;}
}


/* ==============================
   V2.7 - LavappMovil identidad real
   ============================== */
.brand-copy strong,
.footer-brand-link .brand-copy strong{
  letter-spacing:-.035em;
}
.brand-copy strong::first-letter{
  color:inherit;
}
.v26-hero .hero-copy h1{
  max-width:720px;
}
.lavapp-gallery-section{
  background:#f5f6f8;
}
.lavapp-gallery-card{
  max-width:1100px;
  margin:0 auto;
  border-radius:28px;
  overflow:hidden;
  border:1px solid #e9edf3;
  box-shadow:0 24px 60px rgba(15,23,42,.12);
  background:#fff;
}
.lavapp-gallery-card img{
  display:block;
  width:100%;
  height:auto;
}
.lavapp-contact-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:center;
  max-width:1120px;
  margin:0 auto;
}
.lavapp-contact-card{
  background:#0b1220;
  border-radius:26px;
  padding:28px;
  display:flex;
  flex-direction:column;
  gap:12px;
  box-shadow:0 20px 52px rgba(15,23,42,.12);
}
.lavapp-contact-card a{
  display:flex;
  align-items:center;
  min-height:48px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.07);
  color:#fff;
  font-weight:800;
  text-decoration:none;
}
.lavapp-contact-card a:hover{
  background:rgba(255,255,255,.12);
}
.footer-col a[href*="instagram"],
.footer-col a[href*="wa.me"]{
  color:#cbd5e1;
}
@media(max-width:820px){
  .lavapp-contact-grid{
    grid-template-columns:1fr;
  }
  .lavapp-contact-card{
    border-radius:22px;
    padding:20px;
  }
}

/* ==============================
   V2.8 - Terminación visual y coherencia final
   ============================== */
html{scroll-behavior:smooth;}
body{background:#eef1f5!important;}
.app-view{box-shadow:0 24px 80px rgba(15,23,42,.08);border-radius:26px;overflow:visible;background:#fff;}
.topbar.site-header{top:10px;max-width:calc(1240px - 28px);margin:0 auto 14px;border:1px solid rgba(226,232,240,.85);}
.main-nav.main-nav-premium{gap:2px;}
.main-nav.main-nav-premium a{font-size:.86rem;padding:10px 11px;}
.header-actions .btn-topbar{min-height:40px;padding-inline:14px;}
.brand-copy strong{font-weight:850;}
.brand-copy small{font-weight:650;}
.hero-card.carwash-hero.v26-hero{border-radius:28px 28px 0 0;margin-top:0;}
.v26-hero .hero-copy{padding-top:84px;padding-bottom:92px;}
.v26-hero .hero-copy h1{font-weight:900;letter-spacing:-.07em;}
.v26-hero .hero-copy p{font-weight:500;}
.v26-hero .hero-visual img{filter:saturate(1.05) contrast(1.04);}
.section-gap{position:relative;}
.section-gap + .section-gap{border-top:1px solid rgba(226,232,240,.78);}
.section-head-premium.centered-head{margin-bottom:34px;}
.section-title{font-weight:900;}
.section-lead{font-size:1rem;}
.platform-card,.database-service-card,.step-card,.confidence-card,.lavapp-contact-card,.professional-workers-list{box-shadow:0 18px 42px rgba(15,23,42,.065)!important;}
.platform-card{background:#fff;}
.platform-card-featured{background:linear-gradient(180deg,#fff 0%,#fff7f7 100%);}
.platform-card-soon{background:linear-gradient(180deg,#fff 0%,#f8fbff 100%);}
.platform-card .btn{width:100%;justify-content:center;}
.platform-icon{box-shadow:inset 0 0 0 1px rgba(227,6,19,.08);}
.services-grid.v26-services-grid .database-service-card{display:flex;flex-direction:column;justify-content:space-between;}
.service-card-top{margin-bottom:22px;}
.service-icon-premium{margin-bottom:18px;}
.service-footer-row{margin-top:26px;padding-top:18px;border-top:1px solid #eef2f7;}
.platform-workers-section{background:linear-gradient(180deg,#fff 0%,#fbfcff 100%);}
.professional-workers-list{padding:14px!important;}
.worker-item{background:#fff;border:1px solid #edf1f7!important;margin-bottom:10px!important;}
.worker-item:last-child{margin-bottom:0!important;}
.lavapp-gallery-layout{display:grid;grid-template-columns:.78fr 1.22fr;gap:34px;align-items:center;max-width:1120px;margin:0 auto;}
.lavapp-gallery-copy .section-title{margin:12px 0 10px;}
.lavapp-proof-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:24px;}
.lavapp-proof-grid span{min-height:44px;display:flex;align-items:center;padding:10px 12px;border-radius:14px;background:#fff;border:1px solid #e7ebf2;font-weight:800;color:#172033;font-size:.92rem;}
.lavapp-gallery-card{border-radius:30px!important;transform:translateZ(0);}
.lavapp-gallery-card img{aspect-ratio:16/10;object-fit:cover;}
.v26-confidence{background:#fff;}
.v26-confidence .confidence-card{background:linear-gradient(135deg,#0b1220 0%,#161f32 100%);color:#fff;border:none;}
.v26-confidence .confidence-card .eyebrow{color:#ffb3b5!important;}
.v26-confidence .confidence-card h3{color:#fff;}
.v26-confidence .confidence-card .muted{color:#cbd5e1;}
.confidence-list span{background:rgba(255,255,255,.08)!important;border-color:rgba(255,255,255,.12)!important;color:#fff!important;}
.lavapp-contact-section{background:#f7f8fb;}
.lavapp-contact-grid{background:#fff;border:1px solid #e7ebf2;border-radius:30px;padding:34px;box-shadow:0 18px 44px rgba(15,23,42,.07);}
.lavapp-contact-card{background:linear-gradient(135deg,#e30613,#bf0710)!important;}
.lavapp-contact-card a{background:rgba(255,255,255,.14)!important;border:1px solid rgba(255,255,255,.18);}
.lavapp-contact-card a:hover{background:rgba(255,255,255,.22)!important;}
.v26-cta{border-radius:0!important;}
.v26-cta .cta-banner-card{max-width:1120px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:28px;}
.professional-footer{border-radius:0 0 26px 26px!important;}
.footer-main{max-width:1120px;margin:0 auto;}
.footer-bottom{max-width:1120px;margin-left:auto;margin-right:auto;}
.footer-col a,.footer-col span{line-height:1.45;}
@media(max-width:1120px){
  .topbar.site-header{max-width:none;margin:0 0 12px;top:0;border-radius:0;}
  .app-view{width:100%;border-radius:0;box-shadow:none;}
  .lavapp-gallery-layout{grid-template-columns:1fr;}
}
@media(max-width:820px){
  .hero-card.carwash-hero.v26-hero{border-radius:0;}
  .section-gap{padding-top:48px;padding-bottom:48px;}
  .lavapp-proof-grid{grid-template-columns:1fr;}
  .lavapp-contact-grid{padding:22px;border-radius:22px;}
  .v26-cta .cta-banner-card{display:grid;}
}

/* =========================================================
   V3.0 - Estética Lovable aplicada sobre PHP actual
   ========================================================= */
:root{
  --v30-bg:#f5f3ee;
  --v30-ink:#1a1a1a;
  --v30-muted:#6f6a63;
  --v30-border:#e5e0d8;
  --v30-card:#ffffff;
  --v30-surface:#1a1a1a;
  --v30-red:#e63946;
  --v30-red-dark:#cc2431;
  --v30-soft:#eeebe5;
  --font-display:'Space Grotesk', sans-serif;
  --font-sans:'DM Sans', sans-serif;
}
html{scroll-behavior:smooth;}
body{background:var(--v30-bg)!important;color:var(--v30-ink)!important;font-family:var(--font-sans)!important;}
h1,h2,h3,.brand-copy strong{font-family:var(--font-display)!important;}
.page-shell,.app-view{width:100%!important;max-width:none!important;margin:0!important;padding:0!important;background:var(--v30-bg)!important;border-radius:0!important;box-shadow:none!important;overflow:visible!important;}
.page-bg-orb,.mini-nav{display:none!important;}
.v30-container{width:min(1240px, calc(100% - 32px));margin-inline:auto;}
.topbar.site-header{position:sticky!important;top:0!important;z-index:1000!important;display:grid!important;grid-template-columns:auto minmax(0,1fr) auto!important;align-items:center!important;gap:24px!important;width:100%!important;max-width:none!important;margin:0!important;padding:16px max(16px,calc((100vw - 1240px)/2))!important;border-radius:0!important;border:0!important;border-bottom:1px solid rgba(229,224,216,.75)!important;background:rgba(245,243,238,.86)!important;backdrop-filter:blur(16px)!important;box-shadow:none!important;}
.brand-badge-premium{width:38px!important;height:38px!important;border-radius:13px!important;background:var(--v30-red)!important;border:0!important;box-shadow:none!important;color:#fff!important;}
.brand-copy strong{font-size:1.15rem!important;font-weight:700!important;letter-spacing:-.04em!important;color:var(--v30-ink)!important;}
.brand-copy small{display:none!important;}
.main-nav.main-nav-premium{display:flex!important;justify-content:center!important;align-items:center!important;gap:30px!important;white-space:nowrap!important;}
.main-nav.main-nav-premium a{padding:0!important;background:transparent!important;color:var(--v30-muted)!important;border:0!important;border-radius:0!important;font-size:.94rem!important;font-weight:700!important;box-shadow:none!important;}
.main-nav.main-nav-premium a:hover,.main-nav.main-nav-premium a.active{color:var(--v30-ink)!important;background:transparent!important;}
.header-actions{display:flex!important;gap:10px!important;align-items:center!important;justify-content:flex-end!important;}
.btn,.v30-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:46px;padding:12px 22px;border-radius:999px;font-family:var(--font-sans);font-weight:800;font-size:.93rem;text-decoration:none;border:1px solid transparent;transition:.18s ease;}
.btn-primary,.v30-btn-primary{background:var(--v30-red)!important;color:#fff!important;border-color:var(--v30-red)!important;box-shadow:0 18px 32px rgba(230,57,70,.22)!important;}
.btn-primary:hover,.v30-btn-primary:hover{background:var(--v30-red-dark)!important;transform:translateY(-1px);}
.btn-secondary,.v30-btn-light{background:transparent!important;color:var(--v30-ink)!important;border-color:var(--v30-border)!important;box-shadow:none!important;}
.v30-btn-outline{background:transparent;color:var(--v30-ink);border-color:var(--v30-ink);}
.nav-toggle,.hamburger{display:none!important;}
.user-chip{border-radius:999px!important;background:#fff!important;border-color:var(--v30-border)!important;}
.flash{width:min(1240px,calc(100% - 32px));margin:18px auto!important;}
.v30-hero{position:relative;overflow:hidden;background:var(--v30-bg);}
.v30-hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;padding:78px 0 96px;}
.v30-kicker{display:inline-flex;align-items:center;gap:9px;border:1px solid var(--v30-border);background:rgba(255,255,255,.32);border-radius:999px;padding:8px 13px;font-size:.76rem;font-weight:800;text-transform:uppercase;letter-spacing:.12em;color:var(--v30-muted);}
.v30-kicker span{width:7px;height:7px;border-radius:50%;background:var(--v30-red);display:inline-block;}
.v30-hero-copy h1{margin:24px 0 24px;font-family:var(--font-display);font-size:clamp(3.05rem,7vw,6.9rem);line-height:.92;letter-spacing:-.075em;font-weight:700;text-wrap:balance;}
.v30-hero-copy h1 strong{display:block;color:var(--v30-red);font-weight:700;}
.v30-hero-copy p{max-width:620px;margin:0;color:var(--v30-muted);font-size:1.14rem;line-height:1.75;font-weight:500;}
.v30-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:32px;}
.v30-proof{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;margin-top:50px;padding-top:30px;border-top:1px solid var(--v30-border);}
.v30-proof strong{display:block;font-family:var(--font-display);font-size:2rem;line-height:1;font-weight:700;letter-spacing:-.04em;}
.v30-proof span{display:block;margin-top:7px;color:var(--v30-muted);font-size:.9rem;font-weight:600;}
.v30-hero-media{position:relative;min-height:520px;}
.v30-media-shape{position:absolute;left:-16px;top:-16px;width:96px;height:96px;border-radius:24px;background:var(--v30-red);z-index:1;}
.v30-hero-media img{position:relative;z-index:2;width:100%;height:100%;min-height:520px;object-fit:cover;border-radius:34px;display:block;box-shadow:0 30px 60px rgba(26,26,26,.12);}
.v30-hero-media::after{content:"";position:absolute;inset:0;z-index:3;border-radius:34px;background:linear-gradient(0deg,rgba(26,26,26,.62),transparent 48%);pointer-events:none;}
.v30-media-card{position:absolute;left:28px;right:28px;bottom:28px;z-index:4;display:flex;align-items:center;gap:13px;width:max-content;max-width:calc(100% - 56px);background:rgba(245,243,238,.95);border:1px solid rgba(255,255,255,.7);border-radius:22px;padding:16px 18px;backdrop-filter:blur(12px);box-shadow:0 16px 40px rgba(0,0,0,.14);}
.v30-media-card strong{display:block;font-family:var(--font-display);font-size:.92rem;letter-spacing:.08em;text-transform:uppercase;}
.v30-media-card p{margin:4px 0 0;color:var(--v30-muted);font-size:.92rem;}
.v30-shield{width:34px;height:34px;border-radius:50%;background:var(--v30-red);display:inline-block;position:relative;flex:0 0 auto;}
.v30-shield::after{content:"";position:absolute;width:15px;height:9px;border-left:2px solid #fff;border-bottom:2px solid #fff;transform:rotate(-45deg);left:9px;top:10px;}
.v30-marquee{background:var(--v30-surface);color:#fff;overflow:hidden;border-block:1px solid #111;}
.v30-marquee-track{display:flex;align-items:center;gap:42px;width:max-content;padding:18px 0;animation:v30marquee 30s linear infinite;}
.v30-marquee span{font-family:var(--font-display);font-size:.82rem;font-weight:700;text-transform:uppercase;letter-spacing:.18em;white-space:nowrap;}
.v30-marquee i{width:7px;height:7px;background:var(--v30-red);border-radius:50%;display:block;}
@keyframes v30marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.v30-section{padding-block:96px;}
.v30-section-label{display:inline-flex;align-items:center;gap:12px;color:var(--v30-red);font-size:.78rem;font-weight:900;text-transform:uppercase;letter-spacing:.20em;}
.v30-section-label::before{content:"";width:34px;height:1px;background:var(--v30-red);}
.v30-section h2,.v30-section-side h2,.v30-contact h2{font-family:var(--font-display);font-size:clamp(2.4rem,5vw,4.5rem);line-height:1;letter-spacing:-.06em;font-weight:700;margin:18px 0 16px;text-wrap:balance;}
.v30-section p,.v30-section-side p{color:var(--v30-muted);font-size:1.05rem;line-height:1.7;margin:0;}
.v30-modalidades{display:grid;grid-template-columns:.9fr 2fr;gap:64px;align-items:start;}
.v30-modal-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}
.v30-mode-card{display:flex;min-height:340px;flex-direction:column;align-items:flex-start;border:1px solid var(--v30-border);border-radius:30px;background:#fff;padding:26px;color:var(--v30-ink);text-decoration:none;transition:.18s ease;}
.v30-mode-card:hover{transform:translateY(-4px);border-color:rgba(26,26,26,.28);}
.v30-mode-featured{background:var(--v30-surface);color:#fff;border-color:var(--v30-surface);}
.v30-mode-featured p{color:rgba(255,255,255,.68);}
.v30-mode-soon{background:#fbfaf7;}
.v30-status{display:inline-flex;border:1px solid rgba(230,57,70,.22);background:rgba(230,57,70,.10);color:var(--v30-red);border-radius:999px;padding:6px 10px;font-size:.72rem;font-weight:900;}
.v30-mode-featured .v30-status{background:rgba(255,255,255,.14);color:#fff;border-color:rgba(255,255,255,.18);}
.v30-status-muted{background:var(--v30-soft);color:var(--v30-muted);border-color:var(--v30-border);}
.v30-card-icon{width:52px;height:52px;border-radius:18px;background:rgba(230,57,70,.10);margin:34px 0 22px;position:relative;color:var(--v30-red);}
.v30-mode-featured .v30-card-icon{background:rgba(255,255,255,.12);color:#fff;}
.v30-card-icon::before,.v30-card-icon::after{content:"";position:absolute;border:2px solid currentColor;}
.v30-icon-car::before{width:30px;height:16px;border-radius:12px 12px 6px 6px;left:11px;top:23px}.v30-icon-car::after{width:18px;height:11px;border-bottom:0;border-radius:9px 9px 0 0;left:17px;top:14px}
.v30-icon-person::before{width:21px;height:21px;border-radius:50%;left:15px;top:10px}.v30-icon-person::after{width:31px;height:13px;border-radius:14px 14px 6px 6px;left:10px;bottom:10px}
.v30-icon-shop::before{width:30px;height:26px;border-radius:6px;left:11px;bottom:10px}.v30-icon-shop::after{width:36px;height:11px;border-radius:8px 8px 3px 3px;left:8px;top:12px}
.v30-mode-card h3{font-family:var(--font-display);font-size:1.35rem;line-height:1.15;letter-spacing:-.03em;margin:0 0 12px;}
.v30-mode-card p{font-size:.95rem;line-height:1.6;margin:0 0 24px;color:var(--v30-muted);}
.v30-mode-card strong{margin-top:auto;font-size:.92rem;}
.v30-services-wrap{background:var(--v30-soft);border-block:1px solid var(--v30-border);}
.v30-section-head{max-width:760px;text-align:center;margin:0 auto 44px;}
.v30-section-head p{max-width:620px;margin-inline:auto;}
.v30-service-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}
.v30-service-card{background:#fff;border:1px solid var(--v30-border);border-radius:30px;padding:30px;min-height:280px;display:flex;flex-direction:column;}
.v30-service-card span{font-family:var(--font-display);color:#b9b2aa;font-weight:700;}
.v30-service-card h3{font-family:var(--font-display);font-size:1.65rem;margin:34px 0 10px;letter-spacing:-.04em;}
.v30-service-card p{color:var(--v30-muted);line-height:1.65;}
.v30-service-foot{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-top:auto;padding-top:24px;border-top:1px solid var(--v30-border);}
.v30-service-foot strong{font-family:var(--font-display);font-size:1.35rem;}
.v30-service-foot a,.v30-service-foot em{color:var(--v30-red);font-weight:900;text-decoration:none;font-style:normal;}
.v30-service-dark{background:var(--v30-surface);color:#fff;border-color:var(--v30-surface);}
.v30-service-dark p{color:rgba(255,255,255,.68);}.v30-service-dark .v30-service-foot{border-color:rgba(255,255,255,.14)}
.v30-service-soon{background:#fbfaf7;}
.v30-section-row{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:42px;}
.v30-section-row>div{max-width:760px;}.v30-section-row p{max-width:640px;}
.v30-worker-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}
.v30-worker-card{background:#fff;border:1px solid var(--v30-border);border-radius:30px;padding:26px;transition:.18s ease;}.v30-worker-card:hover{transform:translateY(-4px);border-color:rgba(26,26,26,.28)}
.v30-worker-top{display:flex;align-items:center;gap:16px;}.v30-avatar{width:58px;height:58px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,var(--v30-red),rgba(230,57,70,.55));color:#fff;font-family:var(--font-display);font-size:1.3rem;font-weight:700;}
.v30-worker-top h3{font-family:var(--font-display);font-size:1.25rem;margin:0;}.v30-worker-top p{margin:3px 0 0;color:var(--v30-muted);font-size:.9rem;}
.v30-rating{margin-left:auto;background:var(--v30-soft);border-radius:999px;padding:7px 10px;font-weight:900;color:var(--v30-ink);}
.v30-worker-foot{display:flex;align-items:end;justify-content:space-between;margin-top:28px;padding-top:20px;border-top:1px solid var(--v30-border);}
.v30-worker-foot span{display:block;color:var(--v30-muted);font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;}.v30-worker-foot strong{font-family:var(--font-display);font-size:1.65rem;}
.v30-worker-foot a{background:var(--v30-surface);color:#fff;border-radius:999px;padding:10px 16px;font-size:.85rem;font-weight:900;text-decoration:none;}
.v30-empty{background:#fff;border:1px solid var(--v30-border);border-radius:24px;padding:28px;color:var(--v30-muted);}
.v30-process-wrap{background:rgba(238,235,229,.55);border-block:1px solid var(--v30-border);}
.v30-section-left{text-align:left;margin-left:0;}.v30-section-left p{margin-left:0;}
.v30-process-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1px;background:var(--v30-border);border:1px solid var(--v30-border);border-radius:30px;overflow:hidden;}
.v30-process-grid article{background:var(--v30-bg);padding:34px;}.v30-process-grid span{display:grid;place-items:center;width:52px;height:52px;border-radius:50%;background:var(--v30-red);color:#fff;font-family:var(--font-display);font-size:1.2rem;font-weight:700;margin-bottom:30px;}
.v30-process-grid h3{font-family:var(--font-display);font-size:1.45rem;margin:0 0 10px;letter-spacing:-.04em;}.v30-process-grid p{color:var(--v30-muted);line-height:1.6;}
.v30-confianza{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;}
.v30-conf-copy p{font-size:1.12rem;line-height:1.75;}.v30-check-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:30px;}.v30-check-grid span{background:#fff;border:1px solid var(--v30-border);border-radius:18px;padding:14px 16px;font-weight:800;}
.v30-conf-media{position:relative;}.v30-conf-media img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:34px;display:block;box-shadow:0 24px 55px rgba(26,26,26,.12);}.v30-conf-media div{position:absolute;left:-22px;bottom:-22px;background:var(--v30-bg);border:1px solid var(--v30-border);border-radius:26px;padding:24px;max-width:280px;font-family:var(--font-display);font-size:1.25rem;font-weight:700;box-shadow:0 20px 44px rgba(26,26,26,.10);}
.v30-contact{background:var(--v30-surface);color:#fff;padding-block:96px;}.v30-contact-grid{display:grid;grid-template-columns:1.2fr .85fr;gap:64px;align-items:end;}.v30-contact .v30-section-label{color:var(--v30-red)}.v30-contact p{color:rgba(255,255,255,.66);max-width:600px;font-size:1.12rem;line-height:1.75;margin-bottom:30px;}
.v30-contact-list{display:grid;gap:12px;}.v30-contact-list a{display:flex;align-items:center;justify-content:space-between;gap:18px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.10);border-radius:22px;padding:18px 20px;color:#fff;text-decoration:none;}.v30-contact-list a:hover{background:rgba(255,255,255,.08)}.v30-contact-list span{display:block;color:rgba(255,255,255,.52);font-size:.78rem;text-transform:uppercase;letter-spacing:.12em}.v30-contact-list strong{font-family:var(--font-display);font-size:1.1rem;}
.v30-footer{background:var(--v30-bg);border-top:1px solid var(--v30-border);}.v30-footer-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:34px 0;}.v30-footer p{margin:0;color:var(--v30-muted);font-size:.9rem;}
@media(max-width:1120px){
  .topbar.site-header{grid-template-columns:auto auto!important;justify-content:space-between!important;padding:14px 18px!important;}
  .hamburger{display:inline-flex!important;flex-direction:column;gap:5px;width:42px;height:42px;align-items:center;justify-content:center;border-radius:13px;border:1px solid var(--v30-border);background:rgba(255,255,255,.55);cursor:pointer;}
  .hamburger span{display:block;width:20px;height:2px;background:var(--v30-ink);border-radius:999px;}
  .main-nav.main-nav-premium,.header-actions{display:none!important;}
  .nav-toggle:checked ~ .main-nav.main-nav-premium{display:flex!important;grid-column:1/-1;flex-direction:column;align-items:stretch;gap:0;width:100%;padding-top:14px;}
  .nav-toggle:checked ~ .main-nav.main-nav-premium a{padding:14px 0!important;border-top:1px solid var(--v30-border)!important;}
  .nav-toggle:checked ~ .header-actions{display:flex!important;grid-column:1/-1;flex-direction:column;width:100%;padding-top:10px;}
  .nav-toggle:checked ~ .header-actions .btn{width:100%;}
  .v30-hero-grid,.v30-modalidades,.v30-confianza,.v30-contact-grid{grid-template-columns:1fr;}
  .v30-modal-grid,.v30-service-grid,.v30-worker-grid,.v30-process-grid{grid-template-columns:1fr;}
  .v30-hero-media{min-height:auto;}.v30-hero-media img{min-height:360px;}
  .v30-section-row{display:grid;}
}
@media(max-width:720px){
  .v30-container{width:min(100% - 28px,1240px)}
  .v30-hero-grid{padding:48px 0 64px;gap:38px;}.v30-hero-copy h1{font-size:3.2rem;}.v30-proof{grid-template-columns:1fr;gap:16px;margin-top:34px;}.v30-actions .v30-btn{width:100%;}.v30-section{padding-block:68px;}.v30-section h2,.v30-section-side h2,.v30-contact h2{font-size:2.55rem;}.v30-mode-card{min-height:auto;}.v30-check-grid{grid-template-columns:1fr;}.v30-conf-media div{position:relative;left:auto;bottom:auto;max-width:none;margin-top:14px;}.v30-footer-inner{display:grid;text-align:left;}.v30-contact-list strong{font-size:.98rem;}
}

/* ==============================
   V3.1 - Correcciones Lovable fidelity
   ============================== */
.site-header .brand-link{gap:12px!important;}
.lavapp-logo-mark{width:48px!important;height:48px!important;border-radius:999px!important;background:var(--v30-red)!important;color:#fff!important;display:grid!important;place-items:center!important;box-shadow:none!important;}
.lavapp-logo-mark svg{width:28px;height:28px;display:block;}
.lavapp-brand-copy strong{font-family:var(--font-display)!important;font-size:1.55rem!important;font-weight:800!important;color:#111!important;letter-spacing:-.055em!important;line-height:1!important;}
.lavapp-brand-copy strong span{color:var(--v30-red)!important;}
.lavapp-brand-copy small{display:none!important;}
.v30-card-icon{display:grid!important;place-items:center!important;border-radius:999px!important;width:64px!important;height:64px!important;margin:32px 0 24px!important;background:#eeebe5!important;color:#111!important;}
.v30-mode-featured .v30-card-icon{background:var(--v30-red)!important;color:#fff!important;}
.v30-card-icon svg{width:32px;height:32px;display:block;}
.v30-card-icon::before,.v30-card-icon::after{content:none!important;display:none!important;}
.v30-mode-card{min-height:365px!important;padding:30px!important;}
.v30-mode-featured{background:#050505!important;color:#fff!important;border-color:#050505!important;}
.v30-mode-featured .v30-status{color:var(--v30-red)!important;background:transparent!important;border-color:transparent!important;}
.v30-status{order:0;margin-left:auto;text-transform:uppercase;letter-spacing:.08em;background:transparent!important;border:0!important;color:var(--v30-red)!important;font-size:.76rem!important;padding:0!important;}
.v30-status-muted{color:#8b8b8b!important;}
.v30-services-wrap{background:#050505!important;color:#fff!important;border-block:0!important;padding-top:106px!important;padding-bottom:104px!important;}
.v30-services-wrap .v30-container{max-width:1400px;}
.v30-services-wrap .v30-section-head{display:grid;grid-template-columns:1fr .8fr;align-items:end;gap:40px;max-width:1180px;text-align:left;margin:0 auto 56px;}
.v30-services-wrap .v30-section-label{color:var(--v30-red)!important;}
.v30-services-wrap .v30-section-head h2{font-size:clamp(3rem,5vw,5.2rem)!important;line-height:.95!important;color:#fff!important;margin-bottom:0!important;}
.v30-services-wrap .v30-section-head p{margin:0!important;color:rgba(255,255,255,.62)!important;font-size:1.05rem!important;line-height:1.5!important;}
.v30-service-grid{gap:18px!important;max-width:1180px;margin:0 auto;}
.v30-service-card{background:#101010!important;color:#fff!important;border:1px solid rgba(255,255,255,.12)!important;min-height:520px!important;padding:38px!important;border-radius:30px!important;}
.v30-service-card span{font-size:3rem!important;color:rgba(255,255,255,.24)!important;line-height:1!important;}
.v30-service-card h3{font-size:1.85rem!important;margin-top:46px!important;color:#fff!important;}
.v30-service-card p{color:rgba(255,255,255,.66)!important;font-size:1rem!important;}
.v30-service-dark{background:var(--v30-red)!important;border-color:var(--v30-red)!important;transform:translateY(0)!important;}
.v30-service-dark span{color:rgba(255,255,255,.32)!important;}
.v30-service-soon{background:#101010!important;}
.v31-service-features{list-style:none;margin:30px 0 0;padding:0;display:grid;gap:14px;color:#fff;}
.v31-service-features li{display:flex;align-items:center;gap:12px;font-size:1rem;}
.v31-service-features li::before{content:'✓';font-size:1.05rem;color:#fff;line-height:1;}
.v30-service-foot{margin-top:auto!important;border-color:rgba(255,255,255,.12)!important;padding-top:28px!important;}
.v30-service-foot strong{font-size:2.1rem!important;color:#fff!important;}
.v30-service-foot strong::before{content:'DESDE';display:block;font-family:var(--font-sans);font-size:.8rem;letter-spacing:.08em;color:rgba(255,255,255,.48);margin-bottom:4px;}
.v30-service-foot a{background:var(--v30-red)!important;color:#fff!important;border-radius:999px;padding:13px 26px;text-decoration:none;}
.v30-service-dark .v30-service-foot a{background:#fff!important;color:var(--v30-red)!important;}
.v30-service-foot em{color:rgba(255,255,255,.45)!important;}
.v30-confianza{padding-top:100px!important;padding-bottom:100px!important;}
.v30-check-grid span{display:flex!important;align-items:center!important;gap:12px!important;padding:14px 18px!important;}
.v30-check-grid span i{width:32px;height:32px;border-radius:50%;display:grid;place-items:center;background:rgba(230,57,70,.10);flex:0 0 auto;}
.v30-check-grid span i::before{content:'✓';color:var(--v30-red);font-weight:900;font-size:16px;}
.v30-conf-media img{aspect-ratio:1.12/1!important;object-fit:cover!important;}
.v30-conf-media div::before{content:'';display:block;width:34px;height:34px;margin-bottom:14px;background:var(--v30-red);border-radius:10px;mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center/contain no-repeat;}
.v30-contact-list a{display:grid!important;grid-template-columns:48px 1fr auto!important;align-items:center!important;column-gap:16px!important;padding:18px 22px!important;}
.v30-contact-list a::after{content:'→';font-size:24px;color:#fff;opacity:.9;grid-column:3;grid-row:1 / span 2;}
.v30-contact-list span{grid-column:2;}
.v30-contact-list strong{grid-column:2;font-size:1.25rem!important;}
.v31-contact-icon{grid-column:1;grid-row:1 / span 2;width:46px;height:46px;border-radius:50%;background:var(--v30-red);display:grid;place-items:center;position:relative;}
.v31-contact-icon::before{content:'';width:24px;height:24px;background:#fff;display:block;}
.v31-wa::before{mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 3.9A10 10 0 0 0 3.7 15.1L2.3 22l7-1.8A10 10 0 0 0 20 3.9Zm-8 16a8 8 0 0 1-4.1-1.1l-.3-.2-4.1 1.1 1.1-4-.2-.4A8 8 0 1 1 12 19.9Zm4.4-5.9c-.2-.1-1.5-.8-1.7-.8s-.4-.1-.6.1-.7.8-.8 1c-.1.2-.3.2-.5.1-.3-.1-1.1-.4-2-1.2-.7-.7-1.2-1.5-1.4-1.7-.1-.3 0-.4.1-.5l.4-.5c.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5s-.6-1.5-.8-2c-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.5.1-.8.4s-1 1-1 2.4 1 2.8 1.2 3c.1.2 2 3.1 4.9 4.3.7.3 1.2.5 1.6.6.7.2 1.3.2 1.8.1.5-.1 1.5-.6 1.7-1.2.2-.6.2-1.1.2-1.2-.1-.2-.3-.3-.5-.4Z'/%3E%3C/svg%3E") center/contain no-repeat;}
.v31-ig::before{mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Zm5 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Zm0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm5.5-3.3a1.2 1.2 0 1 1 0 2.4 1.2 1.2 0 0 1 0-2.4Z'/%3E%3C/svg%3E") center/contain no-repeat;}
.v31-mail::before{mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm0 3v.5l8 5 8-5V7l-8 5-8-5Zm0 3v8h16v-8l-8 5-8-5Z'/%3E%3C/svg%3E") center/contain no-repeat;}
@media(max-width:980px){.v30-services-wrap .v30-section-head{grid-template-columns:1fr!important}.v30-service-card{min-height:auto!important}.v30-modal-grid{grid-template-columns:1fr!important}.v30-services-wrap{padding-top:76px!important;padding-bottom:76px!important}}
@media(max-width:640px){.lavapp-brand-copy strong{font-size:1.25rem!important}.lavapp-logo-mark{width:42px!important;height:42px!important}.v30-service-card{padding:28px!important}.v30-service-foot{align-items:flex-start!important;flex-direction:column!important}.v30-contact-list a{grid-template-columns:42px 1fr auto!important}.v31-contact-icon{width:42px;height:42px}}
