 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --brand-blue: #572c7f;
    --brand-blue-dark: #8036c4;
    --brand-blue-light: #EBF0FD;
    --brand-teal: #0F9D6E;
    --brand-teal-light: #E1F5EE;
    --brand-amber: #F5A623;
    --brand-amber-light: #FEF6E7;
    --text-dark: #0F1721;
    --text-mid: #3D4B5C;
    --text-soft: #6B7A90;
    --border: #E2E8F0;
    --surface: #F8FAFC;
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --radius: 12px;
    --radius-lg: 20px;
  }

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* ── STICKY NAV ── */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 5%;
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-logo-mark {
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--brand-blue);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 18px; font-weight: 800;
  }
  .nav-brand { font-size: 17px; font-weight: 700; color: var(--text-dark); }
  .nav-brand span { color: var(--brand-blue); }
  .nav-actions { display: flex; gap: 10px; align-items: center; }
  .btn-wa-nav {
    display: flex; align-items: center; gap: 7px;
    background: var(--whatsapp); color: white;
    border: none; border-radius: 8px; padding: 9px 16px;
    font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none;
  }
  .btn-wa-nav svg { width: 16px; height: 16px; fill: white; flex-shrink: 0; }
  .btn-book-nav {
    background: var(--brand-blue); color: white;
    border: none; border-radius: 8px; padding: 9px 18px;
    font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none;
  }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, #572c7f 0%, #9151cc 60%, #945bc9 100%);
    padding: 72px 5% 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12); border-radius: 100px;
    padding: 6px 14px; margin-bottom: 24px;
    font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9);
    letter-spacing: 0.02em;
  }
  .hero-eyebrow::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%;
    background: var(--brand-amber); flex-shrink: 0;
  }
  .hero h1 {
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800; color: white; line-height: 1.2;
    margin-bottom: 20px;
  }
  .hero h1 span { color: var(--brand-amber); }
  .hero-sub {
    font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 460px;
  }
  .hero-ctas { display: flex; flex-direction: column; gap: 12px; }
  .btn-primary {
    color: #000 !important;
    background-color: #fcfbfe !important;
    border-color: #572c7f !important;
}
  .btn-primary {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--brand-amber); color: var(--text-dark);
    border: none; border-radius: var(--radius); padding: 16px 28px;
    font-size: 16px; font-weight: 700; cursor: pointer; text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.4); }
  .btn-wa {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--whatsapp); color: white;
    border: none; border-radius: var(--radius); padding: 16px 28px;
    font-size: 16px; font-weight: 700; cursor: pointer; text-decoration: none;
    transition: transform 0.15s;
  }
  .btn-wa:hover { transform: translateY(-2px); }
  .btn-wa svg, .btn-primary svg { width: 20px; height: 20px; flex-shrink: 0; fill: currentColor; }

  /* HERO CARD SIDE */
  .hero-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(8px);
  }
  .hero-card-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 20px; }
  .service-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
  .chip {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px; padding: 8px 14px;
    font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9);
  }
  .chip.active { background: var(--brand-blue); border-color: var(--brand-blue-light); }
  .trust-row {
    display: flex; gap: 20px; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px;
  }
  .trust-item { text-align: center; }
  .trust-num { font-size: 24px; font-weight: 800; color: var(--brand-amber); }
  .trust-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6); margin-top: 2px; }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--brand-blue-light);
    padding: 18px 5%;
    display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  }
  .trust-bar-item {
    display: flex; align-items: center; gap: 9px;
    font-size: 14px; font-weight: 600; color: var(--brand-blue-dark);
  }
  .trust-bar-item .icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--brand-blue); color: white;
    display: flex; align-items: center; justify-content: center; font-size: 16px;
  }

  /* ── SERVICES ── */
  .section { padding: 72px 5%; }
  .section-label {
    font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--brand-blue); margin-bottom: 12px;
  }
  .section-title { font-size: clamp(24px, 2.5vw, 36px); font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
  .section-sub { font-size: 16px; color: var(--text-soft); max-width: 520px; }
  .section-header { margin-bottom: 48px; }

  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
  .service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-decoration: none; color: inherit;
    display: block;
  }
  .service-card:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 4px 20px rgba(27,79,216,0.1);
  }
  .service-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--brand-blue-light); margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 22px;
  }
  .service-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
  .service-card p { font-size: 13px; color: var(--text-soft); line-height: 1.6; }
  .service-card .cta-arrow {
    margin-top: 14px; font-size: 12px; font-weight: 700;
    color: var(--brand-blue); display: flex; align-items: center; gap: 4px;
  }

  /* ── HOW IT WORKS ── */
  .how { background: var(--surface); }
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .step { text-align: center; padding: 32px 24px; }
  .step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--brand-blue); color: white;
    font-size: 22px; font-weight: 800;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  }
  .step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
  .step p { font-size: 14px; color: var(--text-soft); }
  .steps-connector { display: none; }

  /* ── APP SECTION ── */
  .app-section {
        background: linear-gradient(135deg, #572c7f 0%, #9151cc 60%, #945bc9 100%);
    padding: 72px 5%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  }
  .app-section h2 { font-size: clamp(24px, 2.5vw, 36px); font-weight: 800; color: white; margin-bottom: 16px; }
  .app-section p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 32px; }
  .app-feature {
    display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px;
  }
  .app-feature-icon {
    width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
    background: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
  }
  .app-feature-text h4 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 4px; }
  .app-feature-text p { font-size: 13px; color: rgba(255,255,255,0.65); }
  .app-badges { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
  .app-badge {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px; padding: 12px 20px; cursor: pointer; text-decoration: none;
    transition: background 0.2s;
  }
  .app-badge:hover { background: rgba(255,255,255,0.18); }
  .app-badge-text { color: white; }
  .app-badge-text small { display: block; font-size: 10px; opacity: 0.7; font-weight: 500; }
  .app-badge-text strong { display: block; font-size: 15px; font-weight: 700; }
  .app-phone-mockup {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg); padding: 32px;
    display: flex; flex-direction: column; gap: 14px;
  }
  .app-screen-bar {
    height: 8px; border-radius: 4px;
    background: rgba(255,255,255,0.15);
  }
  .app-screen-bar.blue { background: var(--brand-amber); width: 70%; }
  .app-screen-bar.half { width: 55%; }
  .app-order-card {
    background: rgba(255,255,255,0.1); border-radius: 12px; padding: 16px;
  }
  .app-order-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
  .app-order-value { font-size: 16px; font-weight: 700; color: white; }
  .app-status { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: #4ADE80; margin-top: 8px; }
  .app-status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; }

  /* ── WHATSAPP CTA ── */
  .wa-cta-section {
    background: #E7F9EF; border-top: 1px solid #B8EDD4; border-bottom: 1px solid #B8EDD4;
    padding: 48px 5%; text-align: center;
  }
  .wa-cta-icon { font-size: 48px; margin-bottom: 16px; }
  .wa-cta-section h2 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 800; color: #0B4D26; margin-bottom: 12px; }
  .wa-cta-section p { font-size: 16px; color: #1A6B3C; margin-bottom: 28px; }
  .btn-wa-big {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--whatsapp); color: white; border-radius: var(--radius);
    padding: 16px 36px; font-size: 17px; font-weight: 700;
    text-decoration: none; transition: transform 0.15s, box-shadow 0.15s;
  }
  .btn-wa-big:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }
  .btn-wa-big svg { width: 24px; height: 24px; fill: white; }

  /* ── TESTIMONIALS ── */
  .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
  .review-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px;
  }
  .stars { color: var(--brand-amber); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
  .review-text { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
  .reviewer { display: flex; align-items: center; gap: 12px; }
  .reviewer-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--brand-blue-light); color: var(--brand-blue);
    font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .reviewer-name { font-size: 14px; font-weight: 700; }
  .reviewer-loc { font-size: 12px; color: var(--text-soft); }

  /* ── LOCATION INFO ── */
  .location-section { background: var(--surface); }
  .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  .info-block { margin-bottom: 28px; }
  .info-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-soft); margin-bottom: 8px; }
  .info-value { font-size: 16px; font-weight: 600; color: var(--text-dark); }
  .info-value a { color: var(--brand-blue); text-decoration: none; }
  .areas-list { display: flex; flex-wrap: wrap; gap: 8px; }
  .area-tag {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 8px; padding: 6px 14px;
    font-size: 13px; font-weight: 600; color: var(--text-mid);
  }
  .map-placeholder {
    background: var(--brand-blue-light); border: 1px solid #C5D5F8;
    border-radius: var(--radius-lg); height: 340px;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 12px; color: var(--brand-blue-dark);
  }
  .map-placeholder svg { width: 48px; height: 48px; }
  .map-placeholder p { font-size: 15px; font-weight: 600; }

  /* ── FINAL CTA ── */
  .final-cta {
   background: linear-gradient(135deg, #572c7f 0%, #9151cc 60%, #945bc9 100%);
    padding: 80px 5%; text-align: center;
  }
  .final-cta h2 { font-size: clamp(26px, 3vw, 44px); font-weight: 800; color: white; margin-bottom: 16px; }
  .final-cta h2 span { color: var(--brand-amber); }
  .final-cta p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 36px; }
  .final-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ── FOOTER ── */
  footer {
    background: var(--text-dark); padding: 40px 5% 24px;
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  }
  footer p, footer a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; line-height: 2; }
  footer a:hover { color: white; }
  footer h4 { font-size: 14px; font-weight: 700; color: white; margin-bottom: 14px; }
  .footer-brand { font-size: 17px; font-weight: 800; color: white; margin-bottom: 12px; }
  .footer-brand span { color: var(--brand-amber); }
  .footer-copy {
    grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px; font-size: 12px; color: rgba(255,255,255,0.35); text-align: center;
  }

  /* ── FLOATING WHATSAPP ── */
  .wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--whatsapp); box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: transform 0.2s;
  }
  .wa-float:hover { transform: scale(1.1); }
  .wa-float svg { width: 28px; height: 28px; fill: white; }
  .wa-float-pulse {
    position: absolute; top: 0; right: 0;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--brand-amber); border: 2px solid white;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .hero, .app-section, .location-grid { grid-template-columns: 1fr; }
    .hero { padding: 48px 5% 40px; }
    .hero-card { display: none; }
    .steps { grid-template-columns: 1fr; }
    footer { grid-template-columns: 1fr; }
    .trust-bar { gap: 16px; }
    .nav-actions .btn-wa-nav { display: none; }
  }

  /* ── PRICE GRID IN HERO ── */
  .price-grid { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
  .price-row {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.13);
    border-radius: 10px; padding: 9px 14px;
  }
  .price-icon { font-size: 16px; flex-shrink: 0; }
  .price-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); flex: 1; }
  .price-val { font-size: 14px; font-weight: 800; color: var(--brand-amber); white-space: nowrap; }
  .price-unit { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.5); }
  .calc-link {
    display: block; text-align: center; font-size: 13px; font-weight: 700;
    color: rgba(255,255,255,0.75); text-decoration: none; padding: 8px;
    border-radius: 8px; border: 1px dashed rgba(255,255,255,0.25);
    transition: background 0.2s;
  }
  .calc-link:hover { background: rgba(255,255,255,0.08); color: white; }

  /* ── PRICE CALCULATOR ── */
  .calc-section { background: var(--surface); }
  .calc-wrapper {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  }
  .calc-tabs {
    display: flex; border-bottom: 1px solid var(--border);
    overflow-x: auto; scrollbar-width: none;
  }
  .calc-tabs::-webkit-scrollbar { display: none; }
  .calc-tab {
    padding: 14px 20px; font-size: 13px; font-weight: 700;
    color: var(--text-soft); border: none; background: none; cursor: pointer;
    white-space: nowrap; border-bottom: 3px solid transparent;
    transition: color 0.15s, border-color 0.15s;
  }
  .calc-tab.active { color: var(--brand-blue); border-bottom-color: var(--brand-blue); }
  .calc-body { padding: 28px; display: none; }
  .calc-body.active { display: block; }
  .calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
  .calc-item {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 14px; display: flex; flex-direction: column; gap: 10px;
  }
  .calc-item-top { display: flex; align-items: center; justify-content: space-between; }
  .calc-item-name { font-size: 13px; font-weight: 600; color: var(--text-dark); }
  .calc-item-price { font-size: 12px; color: var(--text-soft); }
  .calc-qty {
    display: flex; align-items: center; gap: 10px;
  }
  .qty-btn {
    width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--border);
    background: var(--white); color: var(--text-dark); font-size: 18px; font-weight: 700;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
  }
  .qty-btn:hover { background: var(--brand-blue-light); border-color: var(--brand-blue); }
  .qty-val { font-size: 16px; font-weight: 800; min-width: 24px; text-align: center; }
  .calc-result {
    background: linear-gradient(135deg, #572c7f, #8051b3);
    border-radius: var(--radius); padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  }
  .calc-result-left {}
  .calc-result-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
  .calc-total { font-size: 32px; font-weight: 800; color: var(--brand-amber); }
  .calc-note { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
  .calc-wa-btn {
    display: flex; align-items: center; gap: 9px;
    background: var(--whatsapp); color: white; border: none; border-radius: var(--radius);
    padding: 12px 20px; font-size: 14px; font-weight: 700; cursor: pointer;
    text-decoration: none; transition: transform 0.15s;
  }
  .calc-wa-btn:hover { transform: translateY(-2px); }
  .calc-wa-btn svg { width: 18px; height: 18px; fill: white; flex-shrink: 0; }
  .calc-hr-item {
    display: flex; flex-direction: column; gap: 10px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 16px; margin-bottom: 14px;
  }
  .calc-hr-item label { font-size: 14px; font-weight: 700; color: var(--text-dark); }
  .calc-hr-item p { font-size: 12px; color: var(--text-soft); }
  .hr-slider { display: flex; align-items: center; gap: 12px; }
  .hr-slider input[type=range] {
    flex: 1; height: 6px; accent-color: var(--brand-blue); cursor: pointer;
  }
  .hr-val { font-size: 18px; font-weight: 800; color: var(--brand-blue); min-width: 60px; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-content { animation: fadeUp 0.6s ease forwards; }
  .hero-card { animation: fadeUp 0.6s 0.2s ease both; }