﻿  /* ============================================
      HERO
  ============================================ */
  .hero {
    padding: 80px 24px 60px;
  }
  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .hero-text {
    text-align: right;
  }
  .hero-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-light);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
  }
  .hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }
  .accent {
    color: var(--accent);
  }
  .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 500px;
  }
  .hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  }
  .btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16,185,129,0.3);
  }
  .btn-full { width: 100%; justify-content: center; }
  .btn-arrow { font-size: 1rem; }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
  }
  .btn-secondary:hover {
    border-color: var(--text-secondary);
    background: var(--paper-alt);
  }
  .hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.78rem;
    color: var(--text-muted);
  }
  .trust-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-left: 6px;
    animation: pulse-dot 2s ease-in-out infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }
  .trust-divider {
    width: 1px;
    height: 16px;
    background: var(--border);
  }

  /* ============================================
      DASHBOARD MOCKUP
  ============================================ */
  .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .dashboard-mockup {
    width: 100%;
    max-width: 700px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--paper);
    box-shadow: var(--shadow-xl);
  }
  .mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--paper-alt);
    border-bottom: 1px solid var(--border);
  }
  .mockup-dots {
    display: flex;
    gap: 6px;
  }
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }
  .dot-red { background: #ef4444; }
  .dot-yellow { background: #f59e0b; }
  .dot-green { background: #22c55e; }
  .mockup-url {
    flex: 1;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--text-muted);
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 4px 12px;
    margin: 0 40px;
  }
  .mockup-body {
    display: grid;
    grid-template-columns: 60px 1fr;
    min-height: 200px;
  }
  .mockup-sidebar {
    background: var(--ink);
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .sidebar-line {
    width: 28px;
    height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
  }
  .sidebar-line.active {
    background: var(--accent);
  }
  .sidebar-line.short {
    width: 18px;
  }
  .mockup-main {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .mini-stat {
    padding: 12px;
    background: var(--paper-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
  }
  .mini-stat-num {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
  }
  .mini-stat-label {
    font-size: 0.55rem;
    color: var(--text-muted);
    line-height: 1.2;
  }
  .mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    padding: 12px;
    background: var(--paper-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
  }
  .bar {
    flex: 1;
    background: var(--accent);
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
    animation: bar-grow 1s ease-out forwards;
    transform-origin: bottom;
  }
  .bar-1 { height: 40%; animation-delay: 0.1s; }
  .bar-2 { height: 65%; animation-delay: 0.2s; opacity: 0.85; }
  .bar-3 { height: 85%; animation-delay: 0.3s; }
  .bar-4 { height: 55%; animation-delay: 0.4s; opacity: 0.85; }
  .bar-5 { height: 95%; animation-delay: 0.5s; }
  @keyframes bar-grow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
  }

  /* Floating Badges */
  .floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    animation: float 4s ease-in-out infinite;
  }
  .fb-icon {
    font-size: 1.1rem;
  }
  .badge-portal {
    top: 20%;
    left: -12px;
    animation-delay: 0s;
  }
  .badge-booking {
    top: 60%;
    right: -12px;
    animation-delay: 1.5s;
  }
  .badge-reviews {
    bottom: 5%;
    left: 10%;
    animation-delay: 3s;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  /* ============================================
      MARQUEE
  ============================================ */
  .marquee {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    background: var(--paper-alt);
  }
  .marquee-inner {
    display: inline-block;
    animation: marquee-scroll 30s linear infinite;
  }
  .marquee span {
    margin: 0 32px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }
  .marquee span::before {
    content: 'Â·';
    color: var(--accent);
    padding-left: 32px;
  }
  .marquee-inner span:first-child::before {
    display: none;
  }
  @keyframes marquee-scroll {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }

  /* ============================================
      SECTION HEADERS
  ============================================ */
  .section-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-light);
    padding: 5px 14px;
    border-radius: var(--radius-xl);
    margin-bottom: 14px;
  }
  .tag-light {
    background: rgba(16,185,129,0.15);
    color: var(--accent);
  }
  .section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .section-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  /* ============================================
      PROBLEM
  ============================================ */
  #problems {
    padding: 80px 24px;
  }
  .problem-content {
    max-width: 1000px;
    margin: 0 auto;
  }
  .problem-intro {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-align: center;
  }
  .problem-intro--lead {
    margin-bottom: 40px;
  }
  .problem-intro--result {
    margin-top: 40px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
  }

  .problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .problem-card {
    padding: 28px 24px;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  }
  .problem-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
  .problem-icon { font-size: 2rem; margin-bottom: 16px; }
  .problem-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
  .problem-desc { font-family: var(--font-body); font-size: 0.82rem; color: var(--text-secondary); line-height: 1.65; }

  /* ============================================
       SOLUTION CARDS
  ============================================ */
  .solution-wrapper {
    position: relative;
  }
  #solution {
    position: relative;
    padding: 80px 24px;
    background: var(--paper-alt);
  }
  #solution::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(640px 320px at 85% -10%, var(--accent-light), transparent 60%),
      radial-gradient(560px 320px at 8% 110%, rgba(16,185,129,0.08), transparent 60%);
    pointer-events: none;
  }
  #solution::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--border-light) 1px, transparent 1px),
      linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.5;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  }
  #solution .container {
    position: relative;
    z-index: 1;
  }
  .solution-cards-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .solution-card {
    position: relative;
    top: auto;
    transform: none;
    max-height: none;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 32px;
    align-items: center;
  }
  .solution-card-visual {
    min-width: 0;
  }
  .solution-card-text {
    min-width: 0;
  }
  .solution-card-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
  }
  .solution-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
  }
  .solution-card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
  }

  /* ============================================
       PRICING ANCHOR
  ============================================ */
  .pricing-section {
    padding: 80px 24px;
    background: var(--paper-alt);
  }
  .pricing-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
  }
  .pricing-amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
  }
  .pricing-note {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
  }
  .pricing-ad {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 24px;
  }
  .pricing-reassurance {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  /* ============================================
       CONTACT ENHANCEMENTS
  ============================================ */
  .contact-reassurance {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
  }
  .contact-reassurance strong {
    color: #fff;
  }
  .form-optional {
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
  }
  .form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  }
  .btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  }
  .form-privacy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
    margin-top: 12px;
  }

  /* ============================================
      OUTCOMES
  ============================================ */
  #outcomes {
    padding: 80px 24px;
  }
  .outcomes-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
  }
  .outcome-card {
    padding: 32px;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  }
  .outcome-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
  .outcome-icon { font-size: 2.5rem; margin-bottom: 16px; }
  .outcome-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--text-primary); margin-bottom: 20px; }
  .outcome-list { list-style: none; padding: 0; margin: 0; }
  .outcome-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-inline-start: 24px;
    position: relative;
    line-height: 1.6;
  }
  .outcome-list li::before {
    content: 'âœ“';
    position: absolute;
    inset-inline-start: 0;
    color: var(--accent);
    font-weight: bold;
  }

  /* ============================================
      PROCESS
  ============================================ */
  #process {
    padding: 80px 24px;
    background: var(--paper-alt);
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .process-step {
    padding: 28px;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  }
  .process-step:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
  .step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 0.8;
    margin-bottom: 16px;
    opacity: 0.6;
  }
  .process-step:hover .step-number {
    opacity: 1;
  }
  .step-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
  .step-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }

  /* ============================================
       FAQ
  ============================================ */
  #faq {
    padding: 80px 24px;
  }
  .faq-content {
    max-width: 800px;
    margin: 0 auto;
  }
  .faq-item {
    border-top: 1px solid var(--border);
  }
  .faq-item:last-child {
    border-bottom: 1px solid var(--border);
  }
  .faq-question {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    padding: 20px 0;
    cursor: pointer;
  }
  .faq-answer {
    display: none;
    padding-bottom: 20px;
  }
  .faq-item.open .faq-answer {
    display: block;
  }
  .faq-answer p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
  }

  /* ============================================
       CONTACT
  ============================================ */
  .contact-section {
    background: var(--ink);
    padding: 80px 24px;
  }
  .contact-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .contact-section-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
  }
  .final-cta-content {
    max-width: 600px;
    margin: 0 auto 48px;
    text-align: center;
  }
  .final-cta-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    margin-bottom: 24px;
  }
  .final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .contact-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.35;
  }
  .accent-light { color: var(--accent); }
  .contact-body {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), color var(--transition);
  }
  .contact-link:hover {
    color: var(--accent);
    border-color: rgba(16,185,129,0.3);
  }
  .contact-link-icon {
    width: 36px;
    height: 36px;
    background: rgba(16,185,129,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  /* Form */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
  }
  .form-input {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color var(--transition), background var(--transition);
  }
  .form-input::placeholder { color: rgba(255,255,255,0.25); }
  .form-input:focus {
    border-color: var(--accent);
    background: rgba(16,185,129,0.06);
  }
  textarea.form-input { resize: vertical; min-height: 100px; }
  .form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.4)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 14px center;
    padding-left: 36px;
  }
  .form-select option {
    background: var(--ink);
    color: #fff;
  }

  /* ============================================
      RESPONSIVE
  ============================================ */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-text { text-align: center; }
    .hero-subtitle { max-width: 600px; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .problem-grid { grid-template-columns: 1fr 1fr; }
    .contact-inner { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .form-actions { grid-template-columns: 1fr; }
    .final-cta-actions { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .floating-badge { display: none; }
  }

  @media (max-width: 600px) {
    .hero { padding: 60px 20px 40px; }
    .problem-grid { grid-template-columns: 1fr; }
    .outcomes-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .solution-cards-container { grid-template-columns: 1fr; }
    .solution-card { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
    .mockup-url { display: none; }
    .mockup-stats { grid-template-columns: 1fr 1fr 1fr; }
    .mini-stat-num { font-size: 0.9rem; }
    .mini-stat-label { font-size: 0.5rem; }
  }

  .solution-visual {
    display: block;
  }
  .mv {
    background: linear-gradient(165deg, var(--paper), var(--paper-alt));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
  }
  .mv-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--paper-alt);
    border-bottom: 1px solid var(--border);
  }
  .mv-dots {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
  }
  .mv-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }
  .mv-dots span:nth-child(1) { background: #ef4444; }
  .mv-dots span:nth-child(2) { background: #f59e0b; }
  .mv-dots span:nth-child(3) { background: #22c55e; }
  .mv-url {
    flex: 1;
    height: 18px;
    margin-inline: 8px;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 10px;
    font-family: var(--font-body);
    font-size: 0.55rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mv-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* text */
  .mv-text {
    font-family: var(--font-body);
    font-size: 0.6rem;
    line-height: 1.3;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mv-text.name {
    color: var(--text-primary);
    font-weight: 500;
  }
  .mv-text.sub {
    font-size: 0.54rem;
    color: var(--text-muted);
  }
  .mv-text.placeholder {
    color: var(--text-muted);
    opacity: 0.8;
  }
  .mv-text.btn {
    color: #fff;
    font-weight: 600;
    font-size: 0.64rem;
  }
  .mv-text.light {
    color: rgba(255,255,255,0.75);
  }
  .mv-text.slot {
    font-size: 0.52rem;
    color: var(--text-muted);
  }

  .mv-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mv-row .mv-text {
    flex: 1;
    min-width: 0;
  }
  .mv-ico {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .mv-ico.accent { background: var(--accent-light); color: var(--accent); }
  .mv-ico.muted { background: var(--paper); color: var(--text-muted); border: 1px solid var(--border); }
  .mv-ico.ink { background: var(--ink); color: #fff; }
  .mv-badge {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--border);
    flex-shrink: 0;
  }
  .mv-badge.accent { background: var(--accent); }
  .mv-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 10px;
    overflow: hidden;
  }
  .mv-btn .mv-text {
    min-width: 0;
  }
  .mv-divider {
    height: 1px;
    background: var(--border);
  }
  .mv-input {
    flex: 1;
    height: 26px;
    border-radius: var(--radius-sm);
    background: var(--paper);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding-inline: 10px;
    gap: 8px;
    min-width: 0;
  }
  .mv-input .mv-text {
    flex: 1;
    min-width: 0;
  }

  /* portal */
  .mv-login {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .mv-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .mv-login-fields {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* tracking */
  .mv-step {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .mv-step-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .mv-step-dot.filled {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }
  .mv-step-dot.current {
    background: var(--accent-light);
    border-color: var(--accent);
  }
  .mv-step-lines {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .mv-step-lines .mv-text {
    min-width: 0;
  }
  .mv-step-line {
    width: 2px;
    height: 12px;
    background: var(--border);
    margin-inline-start: 12px;
  }
  .mv-chip {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--accent-light);
    border: 1px solid var(--accent);
    flex-shrink: 0;
  }
  .mv-chip.muted { background: var(--paper); border-color: var(--border); }
  .mv-chip.accent { background: var(--accent); border-color: var(--accent); }

  /* calendar */
  .mv-cal-month {
    text-align: center;
  }
  .mv-cal-head {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 6px;
  }
  .mv-cal-head span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--text-muted);
  }
  .mv-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
  }
  .mv-cal-grid span {
    aspect-ratio: 1;
    border-radius: 6px;
    background: var(--border-light);
  }
  .mv-cal-grid .out { background: var(--paper); border: 1px solid var(--border); }
  .mv-cal-grid .today { background: var(--accent); }
  .mv-cal-grid .sel { background: var(--accent-light); border: 1px solid var(--accent); }
  .mv-cal-grid .busy { background: var(--paper); border: 1px dashed var(--red); }
  .mv-slots {
    display: flex;
    gap: 8px;
  }
  .mv-slot {
    flex: 1;
    height: 20px;
    border-radius: 999px;
    background: var(--border-light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 6px;
    min-width: 0;
  }
  .mv-slot.filled { background: var(--accent-light); border-color: var(--accent); }
  .mv-slot.filled .mv-text.slot { color: var(--accent); font-weight: 600; }

  /* calculator */
  .mv-label-text {
    font-family: var(--font-body);
    font-size: 0.58rem;
    color: var(--text-muted);
    flex-shrink: 0;
  }
  .mv-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px dashed var(--accent);
    background: var(--accent-light);
    border-radius: var(--radius-md);
  }
  .mv-total .mv-text {
    min-width: 0;
  }
  .mv-total-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1;
    color: var(--accent);
    white-space: nowrap;
  }

  /* referral */
  .mv-linkrow {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mv-linkrow .mv-text {
    flex: 1;
    min-width: 0;
  }
  .mv-rewards {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .mv-reward {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--paper);
    border: 1px solid var(--border);
    font-family: var(--font-heading);
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
  }
  .mv-reward.accent {
    background: var(--accent-light);
    border-color: var(--accent);
    color: var(--accent);
  }
  .mv-stamps {
    display: flex;
    gap: 8px;
  }
  .stamp {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
  }
  .stamp.filled {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }
  .mv-caption {
    display: flex;
    justify-content: center;
  }

  /* reviews */
  .mv-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--accent);
  }
  .mv-stars svg {
    fill: currentColor;
    stroke: currentColor;
  }
  .mv-stars .dim { color: var(--border); }
  .mv-rating {
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-inline-start: 6px;
  }
  .mv-bubble {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    background: var(--paper-alt);
    border: 1px solid var(--border);
  }
  .mv-bubble .mv-text {
    flex: 1;
    min-width: 0;
  }
  .mv-bubble.good {
    background: var(--accent-light);
    border-color: transparent;
  }
  .mv-bubble.private {
    background: var(--ink);
    border-color: transparent;
  }

  /* faq */
  .mv-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: var(--paper);
    border: 1px solid var(--border);
    color: var(--text-muted);
  }
  .mv-search .mv-text {
    flex: 1;
    min-width: 0;
    font-size: 0.58rem;
  }
  .mv-faq {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    background: var(--paper-alt);
    border: 1px solid var(--border);
  }
  .mv-faq.open {
    background: var(--accent-light);
    border-color: var(--accent);
  }
  .mv-faq-lines {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .mv-faq-lines .mv-text {
    min-width: 0;
  }
  .mv-faq > .mv-text {
    flex: 1;
    min-width: 0;
  }
  .mv-faq-chevron {
    color: var(--text-muted);
    flex-shrink: 0;
  }
  .mv-faq.open .mv-faq-chevron {
    color: var(--accent);
  }

  /* dashboard */
  .mv-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .mv-stat {
    padding: 12px 8px;
    background: var(--paper-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 0;
  }
  .mv-stat .mv-text {
    font-size: 0.54rem;
    min-width: 0;
  }
  .mv-stat-num {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
  }
  .mv-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 72px;
    padding: 12px;
    background: var(--paper-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
  }
  .mv-chart-bar {
    flex: 1;
    background: var(--accent);
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
  }
  .mv-chart-bar.strong { opacity: 1; }

  @media (max-width: 600px) {
    .mv-body { padding: 12px; gap: 10px; }
    .mv-total-num { font-size: 0.9rem; }
  }
