  :root {
    --accent:       #ff5b69;
    --accent-dark:  #e04050;
    --accent-pale:  #fff0f1;
    --accent-light: #ffe0e3;
    --navy:         #1a1f36;
    --sb-text:      #2d3250;
    --sb-muted:     #6b7280;
    --bg-soft:      #f9fafb;
    --border-col:   #e8eaed;
    --border-soft:  #f0f0f0;
    --orange:       #f97316;
    --orange-pale:  #fff7ed;
  }

  html { scroll-behavior: smooth; }

  body {
    color: var(--sb-text);
    -webkit-font-smoothing: antialiased;
  }

  /* ── TYPOGRAPHY ── */
  h1 {  font-weight: 700; color: #fff; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; }
  h1 em { font-style: italic; color: var(--accent); }
  h2 { font-weight: 700; color: var(--navy); font-size: clamp(1.6rem, 2.5vw, 2.2rem); line-height: 1.2; }
  h2 em { font-style: italic; color: var(--accent); }
  h3 { font-weight: 700; color: var(--navy); font-size: 15px; }

  .section-tag {
    display: inline-block;
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 10px;
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    background: var(--navy);
    padding: 90px 0 70px;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(255,91,105,0.12) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 70px; background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
  }
  .hero-content { position: relative; z-index: 1; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,91,105,0.15);
    border: 1px solid rgba(255,91,105,0.35);
    color: #ff8a94; font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    border-radius: 100px;
  }
  .hero-badge::before {
    content: ''; width: 6px; height: 6px;
    background: var(--accent); border-radius: 50%; flex-shrink: 0;
  }
  .hero-lead { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.75; }

  /* ── PLAN SWITCHER TABS ── */
  .plan-tabs {
    display: flex; gap: 8px;
    background: var(--bg-soft);
    border: 1px solid var(--border-col);
    border-radius: 12px; padding: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .plan-tab {
    padding: 10px 22px; border-radius: 8px;
    font-size: 14px; font-weight: 700;
    border: none; background: transparent;
    color: var(--sb-muted); cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
  }
  .plan-tab.active, .plan-tab:hover {
    background: #fff; color: var(--accent);
    box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  }

  /* ── PLAN SECTIONS ── */
  .plan-section-block { display: block; }

  /* ── PRICING CARDS ── */
  .pricing-card {
    background: #fff;
    border: 1.5px solid var(--border-col);
    border-radius: 16px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative; overflow: hidden;
  }
  .pricing-card:hover {
    border-color: var(--accent-light);
    box-shadow: 0 8px 32px rgba(255,91,105,0.1);
    transform: translateY(-4px);
  }
  .pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(255,91,105,0.15);
  }
  .pricing-card.featured:hover { transform: translateY(-4px); }

  .featured-badge {
    position: absolute; top: 0; right: 0;
    background: var(--accent); color: #fff;
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 0 14px 0 12px;
  }

  .plan-name {
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent);
  }

  .price-block { line-height: 1; }
  .price-currency { font-size: 1rem; font-weight: 700; color: var(--sb-muted); vertical-align: top; padding-top: 8px; display: inline-block; }
  .price-amount { font-size: 3rem; font-weight: 700; color: var(--navy); line-height: 1; }
  .price-period { font-size: 13px; font-weight: 600; color: var(--sb-muted); }

  .save-badge {
    display: inline-block;
    background: #dcfce7; color: #166534;
    font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 100px;
  }

  .feature-list { list-style: none; padding: 0; margin: 0; }
  .feature-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--sb-muted);
    padding: 6px 0; border-bottom: 1px solid var(--border-soft);
    line-height: 1.4;
  }
  .feature-list li:last-child { border-bottom: none; }
  .feature-list li .check {
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--accent-pale); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
  }
  .feature-list li .check::after {
    content: '✓'; font-size: 11px; font-weight: 800; color: var(--accent);
  }
  .feature-list li strong { color: var(--sb-text); }
  .feature-list li.highlight { color: var(--accent); font-weight: 700; }
  .feature-list li.highlight .check { background: var(--accent); }
  .feature-list li.highlight .check::after { color: #fff; }

  /* ── BUTTONS ── */
  .btn-accent {
    background: var(--accent); color: #fff;
    font-weight: 700; 
    box-shadow: 0 4px 16px rgba(255,91,105,0.3);
    transition: background 0.2s, transform 0.15s;
    border: none;
  }
  .btn-accent:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }

  .btn-outline-accent {
    border: 2px solid var(--border-col); color: var(--sb-text);
    font-weight: 700;
    background: transparent;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
  }
  .btn-outline-accent:hover { border-color: var(--accent-light); background: var(--accent-pale); color: var(--accent); }

  .btn-quote {
    border: 2px solid var(--accent); color: var(--accent);
    font-weight: 700;
    background: transparent;
    transition: background 0.2s, color 0.2s;
  }
  .btn-quote:hover { background: var(--accent); color: #fff; }

  .btn-white-outline {
    border: 2px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.9);
    font-weight: 600;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-white-outline:hover { border-color: rgba(255,255,255,0.7); color: #fff; background: rgba(255,255,255,0.08); }

  /* ── SECTION DIVIDERS ── */
  .section-divider {
    border: none; border-top: 1px solid var(--border-soft);
    margin: 0;
  }

  /* ── "WHO IS THIS FOR" TAGS ── */
  .for-tag {
    display: inline-block;
    background: var(--bg-soft);
    border: 1px solid var(--border-col);
    border-radius: 100px;
    font-size: 12px; font-weight: 600; color: var(--sb-muted);
    padding: 4px 12px;
  }

  /* ── PRIVATE ROOMS - bigger cards ── */
  .room-card {
    background: #fff;
    border: 1.5px solid var(--border-col);
    border-radius: 16px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative; overflow: hidden;
    height: 100%;
  }
  .room-card:hover {
    border-color: var(--accent-light);
    box-shadow: 0 8px 32px rgba(255,91,105,0.1);
    transform: translateY(-4px);
  }
  .room-card.featured { border-color: var(--accent); box-shadow: 0 8px 32px rgba(255,91,105,0.15); }

  .suitability-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--sb-muted);
    padding: 4px 0;
  }
  .suitability-item::before {
    content: '→'; color: var(--accent); font-weight: 700; font-size: 12px;
  }

  /* ── MEETING ROOM CARDS ── */
  .meeting-card {
    background: #fff;
    border: 1.5px solid var(--border-col);
    border-radius: 16px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative; overflow: hidden;
  }
  .meeting-card:hover {
    border-color: var(--accent-light);
    box-shadow: 0 6px 24px rgba(255,91,105,0.09);
    transform: translateY(-3px);
  }
  .meeting-card.best-value { border-color: var(--accent); }

  /* ── PERSONA HELPER ── */
  .persona-card {
    background: var(--bg-soft);
    border: 1px solid var(--border-col);
    border-radius: 12px;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
  }
  .persona-card:hover { border-color: var(--accent-light); background: var(--accent-pale); }
  .persona-arrow { color: var(--accent); font-weight: 800; font-size: 18px; }

  /* ── FAQ ── */
  .faq-item { border-bottom: 1px solid var(--border-col); }
  .faq-question { cursor: pointer; }
  .faq-toggle {
    width: 28px; height: 28px; background: var(--accent-pale);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 20px; line-height: 1; color: var(--accent);
    transition: background 0.2s, transform 0.3s;
  }
  .faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--accent-light); }
  .faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
  .faq-item.open .faq-answer { max-height: 300px; }
  .faq-answer p { font-size: 14px; color: var(--sb-muted); line-height: 1.8; }

  /* ── TRUST BAR ── */
  .trust-item { text-align: center; }
  .trust-number {font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; }
  .trust-label { font-size: 12px; font-weight: 600; color: var(--sb-muted); }

  .bg-soft { background: var(--bg-soft); }

  /* ── INCLUDED BAR ── */
  .included-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--sb-text);
  }
  .included-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

  /* ── VIRTUAL OFFICE ── */
  .virtual-card {
    background: linear-gradient(135deg, var(--navy) 0%, #2d3250 100%);
    border-radius: 20px; overflow: hidden; position: relative;
  }
  .virtual-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(255,91,105,0.12) 0%, transparent 60%);
    pointer-events: none;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .fade-up   { animation: fadeUp 0.6s ease both; }
  .fade-up-2 { animation: fadeUp 0.6s ease 0.1s both; }
  .fade-up-3 { animation: fadeUp 0.6s ease 0.2s both; }