@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700;800&display=swap');

:root{
  /* Typography */
  --font: "Assistant", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --lh: 1.8;
  --ls: .5px;

  /* Colors */
  --bg: #fbf7f1;
  --bg2:#f6f0e7;
  --surface:#ffffff;
  --text:#141414;
  --muted:#5d5d5d;
  --gold:#b89445;
  --gold-dark:#8a6b2e;
  --gold-soft: rgba(184,148,69,.22);
  --border:#e8e1d3;

  /* Layout system */
  --radius: 24px;
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 14px;
  --space-4: 18px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 44px;

  /* Luxury depth (4-layer shadow) */
  --shadow: 0 2px 6px rgba(20,20,20,.06),
            0 10px 22px rgba(20,20,20,.08),
            0 18px 42px rgba(20,20,20,.10),
            0 34px 80px rgba(20,20,20,.10);

  --shadow-soft: 0 1px 4px rgba(20,20,20,.06),
                 0 8px 18px rgba(20,20,20,.08),
                 0 14px 30px rgba(20,20,20,.08),
                 0 22px 52px rgba(20,20,20,.08);

  --glass: rgba(255,255,255,.72);
  --glass-border: rgba(232,225,211,.55);
}

html,body{font-family:var(--font); background:var(--bg); color:var(--text); line-height:var(--lh); letter-spacing:var(--ls);}

html{scroll-behavior:smooth;}
body{font-family:'Assistant',system-ui,-apple-system,Segoe UI,Arial,sans-serif;}

/* ---- Legacy site styles (consolidated) ---- */

:root {
      --bg: #fdfbf7;
      --paper: #ffffff;
      --text: #1a1a1a;
      --muted: #5a5a5a;
      --muted-light: rgba(26,26,26,0.6);
      --gold: #b2935b;
      --gold-light: rgba(178, 147, 91, 0.1);
      --border: rgba(0, 0, 0, 0.08);
      --shadow: 0 12px 40px rgba(0,0,0,0.06);
      --r-base: 16px;
      --r-large: 28px;
      --font: 'Assistant', sans-serif;
      --fade: 180ms;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      margin: 0; font-family: var(--font); color: var(--text);
      line-height: 1.7; background: var(--bg);
      background-image: radial-gradient(circle at 10% 10%, var(--gold-light), transparent 40%);
      overflow-x: hidden;
      opacity: 1;
      transition: opacity var(--fade) ease;
    }
    body.is-leaving { opacity: 0; }

    img, video, svg { max-width: 100%; height: auto; }
    p, h1, h2, h3, a, li { overflow-wrap: anywhere; word-break: break-word; }

    a { color: inherit; text-decoration: none; }
    .container { width: min(100% - 40px, 1100px); margin-inline: auto; }

    /* Sticky stack: header + ticker stay together on scroll */
.sticky-stack{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
}
/* Header itself stays normal; the sticky behavior is on the wrapper */
.site-header{
  position: relative;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 0;
}
    .nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 14px; }
    .brand { min-width: 0; }
    .brandline{
      display:inline-flex; align-items:baseline; gap:10px; flex-wrap:wrap;
      line-height:1.05;
    }
    .brand-gold{ color:var(--gold); font-weight:800; font-size:1.25rem; letter-spacing:-0.02em; }
    .brand-black{ color:var(--text); font-weight:800; font-size:1.18rem; letter-spacing:-0.02em; }
    .brand .tag { font-size: 0.85rem; color: rgba(26,26,26,.72); font-weight: 700; margin-top: 3px; }

    nav { display: none; gap: 10px; }
    nav a { font-weight: 700; font-size: 0.95rem; color: var(--muted); padding: 8px 16px; border-radius: 99px; transition: 0.3s; }
    nav a:hover { background: var(--gold-light); color: var(--gold); }
    @media (min-width: 920px) { nav { display: flex; } }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      padding: 14px 28px; border-radius: 999px; font-weight: 800; font-size: 1rem;
      cursor: pointer; transition: all 0.3s ease; border: 1px solid var(--border);
      background: var(--paper); box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
    .btn-primary {
      background: var(--gold); color: white; border-color: var(--gold);
      background: linear-gradient(145deg, #c5a66a, #b2935b);
    }
    .btn-primary:hover { border-color: #967a4a; filter: brightness(1.05); }
    .btn-ghost { background: var(--gold-light); border-color: transparent; color: var(--gold); }

    .hero { padding: 50px 0; }
    .heroShell {
      background: white; border-radius: var(--r-large); overflow: hidden;
      border: 1px solid var(--border); box-shadow: var(--shadow);
    }
    .heroInner { display: grid; grid-template-columns: 1fr; gap: 40px; padding: 40px; }
    @media (min-width: 920px) { .heroInner { grid-template-columns: 1.1fr 0.9fr; padding: 60px; } }

    .kicker { color: var(--gold); font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; display: block; }
    h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.1; margin: 0 0 20px; font-weight: 800; color: #111; }
    .lead { font-size: 1.25rem; color: var(--muted); margin-bottom: 30px; font-weight: 400; }

    .heroMedia { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); position: relative; aspect-ratio: 4/5; }
    .heroMedia img { width: 100%; height: 100%; object-fit: cover; display: block; }

    .heroSocial { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 40px; border-top: 1px solid var(--border); padding-top: 30px; }
    @media (min-width: 600px) { .heroSocial { grid-template-columns: repeat(3, 1fr); } }

    .social-card {
      background: #fafafa; border: 1px solid var(--border); padding: 18px;
      border-radius: 18px; display: flex; align-items: center; gap: 12px; transition: 0.3s;
    }
    .social-card:hover { border-color: var(--gold); background: white; transform: scale(1.02); }
    .social-icon { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; }
    .social-title { font-weight: 800; font-size: 0.95rem; display: block; }
    .social-sub { font-size: 0.8rem; color: var(--muted-light); display: block; }

    section { padding: 80px 0; }
    .card { background: white; border: 1px solid var(--border); border-radius: var(--r-large); padding: 40px; box-shadow: var(--shadow); }

    .grid { display: grid; gap: 24px; }
    @media (min-width: 920px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

    .tile {
      background: #fff; border: 1px solid var(--border); border-radius: var(--r-large);
      padding: 30px; display: flex; flex-direction: column; transition: 0.4s;
    }
    .tile:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow); }
    .tile h3 { margin: 15px 0 10px; color: var(--text); font-size: 1.3rem; font-weight: 800; line-height: 1.3; }
    .tile p { color: var(--muted); font-size: 1rem; margin-bottom: 20px; }

    .badge { background: var(--gold-light); color: var(--gold); padding: 5px 14px; border-radius: 99px; font-size: 0.85rem; font-weight: 800; margin-bottom: 15px; display: inline-block; }

    .content-block { margin-top: 40px; padding-top: 40px; border-top: 1px dashed var(--border); }
    ul { padding-right: 20px; }
    li { margin-bottom: 12px; color: var(--muted); }
    li strong { color: var(--text); }

    .form-wrap { max-width: 800px; margin: 0 auto; }
    .form-row { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
    @media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
    input, select, textarea {
      width: 100%; padding: 15px; border-radius: 12px; border: 1px solid var(--border);
      font-family: inherit; font-size: 1rem; background: #fafafa; transition: 0.3s;
    }
    textarea { min-height: 120px; resize: vertical; }
    input:focus, select:focus, textarea:focus { border-color: var(--gold); background: white; outline: none; box-shadow: 0 0 0 4px var(--gold-light); }
    label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; color: var(--muted); }

    footer { background: #fff; border-top: 1px solid var(--border); padding: 60px 0; text-align: center; }
    .footer-quote { font-size: 1.3rem; font-weight: 300; font-style: italic; color: var(--gold); margin-bottom: 30px; }

    .wa-float {
      position: fixed; bottom: 30px; left: 30px; background: #25D366; color: white;
      padding: 14px 25px; border-radius: 99px; font-weight: 800; box-shadow: 0 15px 30px rgba(37,211,102,0.3);
      display: flex; align-items: center; gap: 10px; z-index: 1000; transition: 0.3s;
    }
    .wa-float:hover { transform: scale(1.05); }

    .icon-svg { width: 24px; height: 24px; fill: currentColor; }

    .heroMedia--mobile { display: none; }

    @media (max-width: 919px) {
      .heroInner > .heroMedia { display: none; }
      .heroMedia--mobile {
        display: block;
        margin: 18px 0 6px;
        aspect-ratio: 4 / 5;
      }
    }

    @media (max-width: 599px) {
      .container { width: min(100% - 28px, 1100px); }

      .nav { gap: 12px; flex-wrap: wrap; }
      .brand { min-width: 0; }
      .brand-gold{ font-size:1.15rem; }
      .brand-black{ font-size:1.05rem; }
      .brand .tag { font-size: 0.8rem; }

      section { padding: 56px 0; }
      .card { padding: 24px; }
      .heroInner { padding: 24px; gap: 28px; }
      .lead { font-size: 1.1rem; }

      .heroText > div[style*="display:flex"] { flex-direction: column; }
      .heroText > div[style*="display:flex"] .btn { width: 100%; }

      .content-block .grid[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }

      .wa-float {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
        justify-content: center;
        padding: 14px 16px;
      }
    }

    /* ===== NEW: "תחומי ליווי" map path (minimal, same design language) ===== */
    .section-head { text-align:center; margin-bottom: 32px; }
    .section-head .kicker { margin-bottom: 10px; }
    .section-head h2 { font-size: 2.5rem; margin: 0; color: var(--gold); font-weight: 800; }
    .section-head p { margin: 10px auto 0; color: var(--muted-light); max-width: 760px; }

    .path-wrap{ max-width: 900px; margin: 0 auto; }
    .path{
      list-style:none; padding:0; margin:0;
      position:relative;
    }
    .path:before{
      content:"";
      position:absolute;
      right: 14px;
      top: 8px;
      bottom: 8px;
      width:2px;
      background: rgba(178,147,91,.35);
      border-radius: 2px;
    }
    .path li{ position:relative; padding-right: 48px; margin: 0 0 18px; }
    .path li:last-child{ margin-bottom:0; }
    .path li:before{
      content:"";
      position:absolute;
      right: 7px;
      top: 12px;
      width: 16px; height: 16px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid rgba(178,147,91,.75);
      box-shadow: 0 6px 18px rgba(0,0,0,.06);
    }
    .path a{
      display:block;
      padding: 18px 18px;
      border: 1px solid var(--border);
      border-radius: 18px;
      background: #fafafa;
      transition: .25s;
    }
    .path a:hover{
      background:#fff;
      border-color: var(--gold);
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }
    .path-title{ font-weight:800; font-size:1.12rem; color: var(--text); margin:0 0 4px; }
    .path-sub{ font-size:.95rem; color: rgba(26,26,26,.65); margin:0; }

    /* ===== NEW: Modal (for course syllabus) ===== */
    .modal{
      display:none;
      position:fixed; inset:0;
      background: rgba(0,0,0,.55);
      z-index: 9998;
      padding: 18px;
    }
    .modal.is-open{ display:block; }
    .modal-panel{
      max-width: 920px;
      margin: 8vh auto;
      background:#fff;
      border-radius: 18px;
      border: 1px solid rgba(0,0,0,.08);
      box-shadow: 0 20px 60px rgba(0,0,0,.18);
      overflow:hidden;
    }
    .modal-head{
      display:flex; align-items:center; justify-content:space-between;
      padding: 14px 16px;
      border-bottom: 1px solid var(--border);
      background: rgba(253,251,247,.9);
      backdrop-filter: blur(10px);
    }
    .modal-title{
      font-weight: 900;
      color: var(--gold);
      letter-spacing: -0.02em;
    }
    .modal-body{
      padding: 18px 18px 22px;
      max-height: 70vh;
      overflow:auto;
    }
    .modal-close{
      border-radius: 999px;
      padding: 10px 14px;
      font-weight: 900;
    }
    .divider-soft{
      margin: 26px 0;
      border:0;
      border-top: 1px dashed rgba(0,0,0,.12);
    }
    .tiny-note{
      font-size: .9rem;
      color: rgba(26,26,26,.6);
      margin-top: 10px;
    }
  
    /* ===== Brand (Text logo) ===== */
    .brandline{display:flex;flex-direction:column;gap:2px;line-height:1.05}
    .brand-title{
      font-weight:900;
      font-size:clamp(1.35rem, 2.3vw, 1.9rem);
      letter-spacing:-0.03em;
      color: var(--gold-dark);
      text-shadow: 0 10px 28px rgba(0,0,0,0.10);
    }
    .brand-sub{
      font-weight:800;
      font-size:clamp(.95rem, 1.5vw, 1.08rem);
      color: #1a1a1a;
      opacity: 0.9;
    }

    /* ===== Nav – luxury pills ===== */
    nav a{
      font-weight:800;
      font-size:.95rem;
      color: rgba(26,26,26,.78);
      padding:10px 16px;
      border-radius:999px;
      border:1px solid rgba(178,147,91,.25);
      background: rgba(178,147,91,.08);
      transition: .25s ease;
    }
    nav a:hover{
      transform: translateY(-1px);
      background: rgba(178,147,91,.14);
      border-color: rgba(178,147,91,.45);
      color: var(--gold-dark);
    }
    
  
    /* Emphasis for key method headings */
    h3.method-focus{
      margin: 24px 0 10px;
      font-size: 1.28rem;
      font-weight: 900;
      color: var(--gold-dark);
      letter-spacing: -0.02em;
    }
    

/* === Unified Site Styles (injected) === */
:root {
  --gold: #B08B3E;
  --gold-soft: rgba(176,139,62,0.75);
  --beige: #f7f2ea;
  --ink: #111;
  --muted: #666;
  --card: #fff;
  --stroke: rgba(176,139,62,.28);
  --shadow: 0 16px 40px rgba(0,0,0,.08);
  --radius: 24px;
}
html, body {
  font-family: 'Assistant', system-ui, -apple-system, Segoe UI, Arial !important;
}
body {
  color: var(--ink);
}
a, button, input, textarea, select {
  font-family: inherit;
}
/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(247,242,234,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand {
  margin-right: auto;
  text-align: right;
}
.brand-link {
  text-decoration: none;
  display: inline-block;
}
.brand-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold);
  font-size: 2.05rem;
  line-height: 1.05;
  text-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.brand-subtitle {
  margin-top: 6px;
  font-weight: 700;
  color: #111;
  font-size: 1.05rem;
}
.brand-subtitle .light {
  color: var(--gold-soft);
}
.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.55);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  text-decoration: none;
}
.icon-btn svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.55);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.menu-toggle svg {
  width: 22px;
  height: 22px;
  fill: #111;
}
.main-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.55);
}
.main-nav a:hover {
  border-color: var(--stroke);
}
.main-nav a.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
/* footer CTA */
.site-cta {
  margin-top: 70px;
  padding: 26px 0 10px;
}
.site-cta .cta-card {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
}
.site-cta .cta-title {
  font-size: 1.55rem;
  color: var(--gold);
  font-weight: 800;
  margin: 0 0 10px 0;
}
.site-cta .cta-text {
  color: #333;
  margin: 0 0 16px 0;
  line-height: 1.7;
}
.site-cta .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.site-cta .cta-actions a {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.6);
  color: #111;
}
.site-cta .cta-actions a.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
/* Mobile */
@media (max-width: 860px) {
  .header-inner {
    padding: 12px 14px;
  }
  .brand-title {
    font-size: 1.75rem;
  }
  .brand-subtitle {
    font-size: 1rem;
  }
  .main-nav {
    display: none;
    padding-bottom: 18px;
  }
  .main-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: grid;
    place-items: center;
  }
}


/* WhatsApp modal */
.wa-modal[hidden]{display:none !important;}
.wa-modal{position:fixed; inset:0; z-index:2000;}
.wa-modal__backdrop{position:absolute; inset:0; background:rgba(0,0,0,.45); backdrop-filter: blur(3px);}
.wa-modal__card{
  position:relative;
  width:min(520px, 92vw);
  margin: 14vh auto 0;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  padding: 18px 18px 14px;
  text-align: right;
}
.wa-modal__title{font-weight:900; color: var(--gold); font-size:1.25rem; margin-bottom:10px;}
.wa-modal__text{color:#222; line-height:1.7; margin-bottom:12px;}
.wa-modal__number{
  font-weight:900;
  font-size:1.2rem;
  letter-spacing:.02em;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px dashed var(--stroke);
  background: rgba(247,242,234,.8);
  margin-bottom: 12px;
}
.wa-modal__actions{display:flex; gap:10px; flex-wrap:wrap;}
.wa-modal__btn{
  border-radius:999px;
  padding: 12px 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.7);
  font-weight: 800;
}
.wa-modal__btn.primary{background: var(--gold); border-color: var(--gold); color:#fff;}
.wa-modal__status{min-height:20px; margin-top:8px; color:#333; font-weight:700;}


.method-block{margin-top:18px; background: rgba(255,255,255,.72); border:1px solid rgba(0,0,0,.06); border-radius:24px; padding:18px 18px 16px; box-shadow: 0 16px 36px rgba(0,0,0,.06);}
.method-block .method-h{margin:14px 0 8px; font-size:1.22rem; font-weight:900; color: var(--gold);}
.method-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px;}
.method-actions .btn{display:inline-block; text-decoration:none; font-weight:900; border-radius:999px; padding:12px 18px; border:1px solid var(--stroke); background: rgba(255,255,255,.6); color:#111;}
.method-actions .btn.primary{background: var(--gold); border-color: var(--gold); color:#fff;}

/* ---- Modern UI 2026 refinements + consistency ---- */


/* Use variables for base colors where possible */
body{
  background: radial-gradient(1200px 700px at 70% 0%, var(--bg2), var(--bg)) fixed !important;
  color: var(--text) !important;
}
.site-header{
  background: color-mix(in srgb, var(--bg) 78%, transparent) !important;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.card, .service-card, .feature-card, .content-card, .form-wrap, .page-card{
  box-shadow: var(--shadow1) !important;
  border-color: var(--border) !important;
}
.button, .btn, button, .btn-primary{
  border-color: color-mix(in srgb, var(--gold) 40%, transparent) !important;
}
.brand-title, .logo-title, .site-title, .brand h1, header h1{
  color: var(--gold) !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}
.brand-sub, .logo-subtitle, .site-subtitle{
  color: color-mix(in srgb, var(--gold2) 80%, transparent) !important;
}
.icon-btn svg{fill: var(--gold); color: var(--gold);}

/* Dark mode: flip surfaces where legacy uses white */
/* Ensure nav pills look premium */
.nav-links a, .nav a{
  background: rgba(184,154,90,.10) !important;
  border:1px solid rgba(184,154,90,.22) !important;
  font-weight:800 !important;
}
.nav-links a:hover, .nav a:hover{
  box-shadow: var(--shadow2) !important;
  transform: translateY(-1px);
}


/* === 2026 polish overrides === */
:root{--bg:#fbf7ef;--surface:#ffffff;--text:#161616;--muted:#6b6b6b;--gold:#b89445;--gold-dark:#8a6b2e;--gold-soft:rgba(184,148,69,.75);--border:#e8e1d3;--shadow:0 18px 48px rgba(0,0,0,.10);--shadow-soft:0 10px 30px rgba(0,0,0,.08);} 
body{background:var(--bg);color:var(--text);} 
.header-inner{justify-content:space-between;gap:16px;;flex-direction:row-reverse} 
.brand{align-items:flex-end;text-align:right;} 
.brand-title{color:var(--gold-dark);text-shadow:0 2px 12px rgba(0,0,0,.08);} 
.brand-subtitle{color:#1f1f1f;} 
.icon-buttons{display:flex;gap:10px;align-items:center;} 
.icon-btn{width:44px;height:44px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;border:1px solid var(--border);background:rgba(255,255,255,.55);backdrop-filter:blur(10px);box-shadow:var(--shadow-soft);text-decoration:none;} 
.icon-btn svg{width:20px;height:20px;fill:none;stroke:var(--gold-dark);stroke-width:2;} 
.icon-btn .fill{fill:var(--gold-dark);stroke:none;} 
.hamburger{display:none;} 
@media (max-width: 820px){
  .nav-links{display:none;}
  .hamburger{display:inline-flex;}
  .header-inner{align-items:center;}
}

.mobile-drawer{position:fixed;inset:0;display:none;z-index:9999;} 
.mobile-drawer.open{display:block;} 
.mobile-drawer .backdrop{position:absolute;inset:0;background:rgba(0,0,0,.45);} 
.mobile-drawer .panel{position:absolute;top:0;left:0;width:min(86vw,360px);height:100%;background:var(--surface);border-right:1px solid var(--border);box-shadow:var(--shadow);padding:18px;display:flex;flex-direction:column;gap:10px;} 
.mobile-drawer a{padding:12px 14px;border-radius:14px;border:1px solid var(--border);text-decoration:none;color:var(--text);background:rgba(255,255,255,.6);} 
.mobile-drawer a:active{transform:scale(.99);} 
/* Hide success message until submission */
[data-form-success]{display:none;}
.form-success-show [data-form-success]{display:block;}
.form-success-show [data-form-fields]{display:none;}

/* Hide Google translate clutter */
.goog-te-banner-frame.skiptranslate{display:none !important;}
body{top:0 !important;}
.goog-logo-link, .goog-te-gadget span{display:none !important;}
#google_translate_element{display:none;}


/* Header alignment + icon buttons */
.site-header{position:sticky;top:0;z-index:50;background:rgba(251,247,239,.88);backdrop-filter:saturate(160%) blur(10px);border-bottom:1px solid var(--border);}
.header-inner{max-width:1160px;margin:0 auto;padding:14px 18px;display:flex;align-items:center;justify-content:space-between;gap:14px;}
.brand{text-align:right;line-height:1.05;}
.brand-title{font-weight:800;font-size:34px;letter-spacing:.2px;color:var(--gold-dark);text-shadow:0 2px 18px rgba(0,0,0,.06);}
.brand-subtitle{font-weight:700;font-size:16px;color:var(--text);opacity:.92;}
.brand-subtitle .sep{opacity:.55;}
.brand-subtitle .soft{color:var(--gold-soft);}
.header-left{display:flex;align-items:center;gap:10px;}
.icon-buttons{display:flex;align-items:center;gap:10px;}
.icon-btn{width:44px;height:44px;border-radius:999px;border:1px solid var(--border);background:var(--surface);display:inline-flex;align-items:center;justify-content:center;box-shadow:var(--shadow-soft);transition:transform .15s ease, box-shadow .15s ease;}
.icon-btn:hover{transform:translateY(-1px);box-shadow:var(--shadow);}
.icon-btn svg{width:20px;height:20px;fill:none;stroke:var(--gold-dark);stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.hamburger{display:none;width:44px;height:44px;border-radius:999px;border:1px solid var(--border);background:var(--surface);box-shadow:var(--shadow-soft);align-items:center;justify-content:center;}
.hamburger svg{width:22px;height:22px;stroke:var(--gold-dark);stroke-width:2;fill:none;}
.nav-links{flex-wrap:wrap;justify-content:center;gap:10px;}
@media (max-width: 880px){
  .nav-links{display:none;}
  .hamburger{display:inline-flex;}
  .brand-title{font-size:28px;}
}
@media (max-width: 520px){
  .brand-title{font-size:26px;}
  .brand-subtitle{font-size:14px;}
}

/* Mobile menu */
.mobile-overlay{position:fixed;inset:0;background:rgba(0,0,0,.45);display:none;z-index:80;}
.mobile-overlay.open{display:block;}
.mobile-drawer{position:fixed;top:0;left:0;height:100%;width:min(340px,86vw);background:var(--surface);border-right:1px solid var(--border);box-shadow:var(--shadow);transform:translateX(-105%);transition:transform .22s ease;z-index:90;padding:18px;}
.mobile-drawer.open{transform:translateX(0);}
.mobile-drawer a{display:block;padding:12px 10px;border-radius:12px;color:var(--text);text-decoration:none;border:1px solid transparent;}
.mobile-drawer a:hover{border-color:var(--border);background:rgba(184,148,69,.08);}
.mobile-drawer .drawer-title{margin:6px 0 14px;font-weight:800;color:var(--gold-dark);}
/* Netlify success message hidden until success */
.form-success{display:none;}
.form-success.show{display:block;}

.section-title{font-size:28px;font-weight:900;color:var(--gold-dark);margin:0 0 10px;text-shadow:0 2px 16px rgba(0,0,0,.05);}
.sub-title{font-size:20px;font-weight:900;color:var(--gold-dark);margin:18px 0 8px;}
.lead{font-size:18px;color:var(--text);opacity:.92;line-height:1.85;}
.roadmap{display:grid;gap:14px;margin-top:18px;}
.road-step{display:flex;gap:14px;align-items:flex-start;border:1px solid var(--border);border-radius:18px;padding:14px 14px;background:rgba(184,148,69,.05);}
.road-badge{width:36px;height:36px;border-radius:999px;background:var(--gold);color:#1b1b1b;font-weight:900;display:flex;align-items:center;justify-content:center;flex:0 0 36px;box-shadow:var(--shadow-soft);}
.road-content h3{margin:2px 0 6px;font-size:18px;}
.road-content p{margin:0;color:var(--text);opacity:.9;line-height:1.7;}

.successBox{display:none;}
.successBox.show{display:block;}

/* Dark mode readability */
/* === Fixes: header alignment + dark mode readability (2026-01) === */
.site-header .header-inner{flex-direction:row-reverse;}
.site-header .brand{text-align:right;}
.site-header .header-left{gap:10px;}
.icon-btn{color:var(--gold); border-color:rgba(199,163,73,.35);}
.icon-btn:hover{border-color:rgba(199,163,73,.65);}

/* Ensure form success is hidden by default */
#formSuccess, .form-success{display:none;}

/* Dark mode: enforce contrast (override any legacy styles) */
/* === Navbar fine-tuning (compact + 2-row layout) === */
.header-inner{flex-direction:row; direction:rtl;}
.header-left{flex-wrap:wrap; justify-content:flex-start;}
/* keep icon row tight, put nav on its own row under icons */
.header-left .nav-links{flex-basis:100%; justify-content:flex-start; margin-top:10px;}
.header-left .nav-links .nav-pill{padding:9px 14px; font-size:14px; font-weight:800;}
.header-left .nav-links .nav-pill.active{background:var(--gold); color:#101010; border-color:transparent;}
@media (max-width: 520px){
  .icon-btn,.hamburger{width:42px;height:42px;}
  .header-left .nav-links{margin-top:8px; gap:8px;}
  .header-left .nav-links .nav-pill{padding:8px 12px; font-size:13px;}
}


/* === Header alignment patch (v2 safe) === */
.site-header{width:100%; box-sizing:border-box;}
.site-header *{box-sizing:border-box;}
.header-inner{width:100%; box-sizing:border-box; justify-content:space-between; flex-wrap:wrap;}

/* Brand text right-aligned inside container (no positional shifts) */
.brand{min-width:0; display:flex; align-items:center; gap:10px;}
.brand-text{
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items:flex-end;
  text-align:right;
  padding-right:20px;
  min-width:0;
}


@media(max-width:768px){.nav-toggle{display:block!important;}}

/* === UX tweaks (2026-01) === */

/* Read-more summary should look like a clear CTA */
details.read-more summary{
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
details.read-more summary:hover{ opacity:.9; }

/* Footer links: match top pill style */
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  padding:14px 12px 0;
}
.footer-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  text-decoration:none;
  font-weight:700;
}
.footer-pill:hover{ border-color: var(--gold); }

/* Contact buttons alignment */
.contact-actions{ justify-content:center !important; }

/* Mobile header: keep logo + icons on one row */
@media (max-width: 820px){
  .header-inner{ flex-wrap:nowrap; }
  .brand{ min-width: 0; }
  .header-actions{ margin-right: 0; }
  .icon-buttons{ flex:0 0 auto; }
}

/* Ensure any floating WhatsApp FAB stays off (we removed markup, but keep as safety) */
.wa-float,.whatsapp-float,.floating-wa{ display:none !important; }

/* FAQ */
details.faq{
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px 14px;
  background:#fff;
  margin:10px 0;
}
details.faq summary{
  cursor:pointer;
  font-weight:800;
  color:var(--ink);
}
details.faq .faq-body{
  margin-top:10px;
  color:var(--muted);
  line-height:1.75;
}

/* Article readability */
.article h2{ margin-top:18px; }
.article p,.article li{ line-height:1.85; }
.article .kicker a{ color:var(--gold); font-weight:800; text-decoration:underline; }

/* Blog cards */
.blog-grid{ grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.blog-card{
  display:block;
  padding:18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  text-decoration:none;
  color:inherit;
}
.blog-card:hover{ border-color: var(--gold); }
.blog-card h3{ margin:0 0 8px; }
.blog-card p{ margin:0; color:var(--muted); line-height:1.7; }


/* --- Fixes v3: layout consistency, blog + faq, footer, desktop header --- */
@media (min-width: 900px){
  .nav-pill--desktop-hide{ display:none !important; }
}

/* Ensure page inner width is always constrained */
.page{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}
.page .section{ width: 100%; }

/* Blog grid fix */
.blog-grid{
  display: grid;
  gap: 16px;
  align-items: stretch;
}
.blog-card{
  height: 100%;
}

/* FAQ alignment */
.faq-list{
  max-width: 860px;
  margin: 0 auto;
}
.faq{
  width: 100%;
  max-width: 860px;
  margin: 0 auto 12px;
}
.faq > summary{
  cursor: pointer;
}

/* Read-more summary emphasis */
.read-more > summary{
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Footer buttons style (match header pills) */
.footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin: 18px 0 8px;
}
.footer-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.55);
  color: var(--text);
  text-decoration:none;
  font-weight:700;
}
.footer-links a:hover{
  background: rgba(255,255,255,.8);
}


/* FAQ pricing chooser (tabs inside accordion) */
.price-chooser{
  margin-top:14px;
}
.price-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.price-tab{
  border:1px solid var(--line);
  background:#fff;
  color:inherit;
  padding:10px 12px;
  border-radius:999px;
  cursor:pointer;
  font-weight:600;
}
.price-tab.is-active{
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(212,175,55,.16);
}
.price-panels .grid{
  margin-top:0;
}


/* ============================
   Luxury Authority Overrides
   ============================ */

/* Glass header + mobile drawer */
.site-header{
  background: var(--glass) !important;
  border-bottom: 1px solid var(--glass-border) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow-soft) !important;
}

.mobile-drawer .panel{
  background: var(--glass) !important;
  border: 1px solid var(--glass-border) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow) !important;
  border-radius: var(--radius) !important;
}

/* Unified radius + spacing helpers */
.card, .service-card, .feature-card, .content-card, .form-wrap, .page-card, .modal-card, .ctaBox, .panel{
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-soft) !important;
}

.section{padding: var(--space-7) 0;}
.container{padding-left: var(--space-5); padding-right: var(--space-5);}

/* Scroll progress */
.scroll-progress{
  position: fixed;
  top:0; left:0;
  height: 3px;
  width: 0%;
  background: var(--gold);
  z-index: 99999;
  box-shadow: 0 6px 18px rgba(184,148,69,.35);
}

/* Motion UI: reveal */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* FAQ luxury cards */
.faq-list{display:grid; gap:14px;}
.faq-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 18px 18px;
  background: transparent;
  border:0;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--text);
  cursor: pointer;
  text-align: right;
}
.faq-plus{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(184,148,69,.38);
  display:grid;
  place-items:center;
  flex: 0 0 auto;
  background: rgba(184,148,69,.10);
  box-shadow: 0 10px 26px rgba(184,148,69,.10);
  transition: transform .25s ease, background .25s ease;
}
.faq-plus:before,
.faq-plus:after{
  content:"";
  position:absolute;
  width: 14px;
  height: 2px;
  background: var(--gold-dark);
  border-radius: 2px;
}
.faq-plus{position:relative;}
.faq-plus:after{transform: rotate(90deg);}
.faq-card.is-open .faq-plus{transform: rotate(45deg); background: rgba(184,148,69,.16);}
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 18px;
}
.faq-a-inner{padding: 0 0 18px; color: var(--muted);}
.faq-a-inner p, .faq-a-inner li{line-height: var(--lh); letter-spacing: var(--ls);}

/* Transformative timeline */
.timeline{
  display:grid;
  gap: 12px;
  margin-top: 14px;
}
.timeline-steps{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.step-pill{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  border:1px solid rgba(184,148,69,.32);
  background: rgba(255,255,255,.55);
  cursor:pointer;
  user-select:none;
  box-shadow: 0 10px 26px rgba(20,20,20,.06);
  font-weight:800;
}
.step-pill.is-active{
  background: rgba(184,148,69,.16);
  border-color: rgba(184,148,69,.55);
}
.step-dot{
  width:10px;height:10px;border-radius:999px;background:var(--gold);
  box-shadow: 0 8px 20px rgba(184,148,69,.35);
}
.step-panel{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}


/* === News ticker (Google Sheets) === */
.news-ticker-wrap{padding: 14px 0;}
.news-ticker{
  display:flex; align-items:center; gap:12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 980px;
  margin: 0 auto;
}
.news-label{
  font-weight:800;
  color: var(--gold);
  font-size: .95rem;
  white-space: nowrap;
}
.news-item{
  color: var(--text);
  text-decoration:none;
  font-weight:600;
  opacity: .92;
  transition: opacity .35s ease, transform .35s ease;
  display:block;
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-item:hover{opacity:1; text-decoration: underline;}
.news-item.is-fading{opacity:0; transform: translateY(2px);}

/* marquee (moving ticker) */
.news-viewport{flex:1; overflow:hidden; min-width:0;}
.news-track{display:flex; width:max-content; gap:0; will-change: transform;
  animation: news-marquee var(--ticker-duration, 24s) linear infinite;
  transform: translateX(-50%);
}
.news-track:hover{animation-play-state: paused;}
.news-track-inner{display:inline-flex; align-items:center; gap:0; padding-inline-end: var(--ticker-gap, 64px);}
.news-seg{color: var(--text); text-decoration:none; font-weight:600; opacity:.92; white-space:nowrap;}
.news-seg:hover{opacity:1; text-decoration: underline;}
.news-sep{margin: 0 10px; color: var(--gold); opacity:.9; user-select:none;}
@keyframes news-marquee{from{transform: translateX(-50%);}to{transform: translateX(0%);}}

@media (max-width: 520px){
  .news-ticker-wrap{padding: 10px 0;}
  .news-ticker{max-width: calc(100% - 18px); margin: 0 9px; padding: 10px 12px;}
  .news-sep{margin: 0 8px;}
}
@media (max-width: 520px){
  .news-ticker{border-radius: 18px;}
  .news-label{font-size:.9rem;}
}


/* === Services (compact luxury) === */
.services-mini{gap: 18px;}
.mini-tile{
  padding: 18px 18px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--paper);
  box-shadow: var(--shadow-4);
  display:flex; flex-direction:column; gap:10px;
  min-height: 0;
}
.mini-badge{
  display:inline-flex; align-items:center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight:800;
  font-size:.85rem;
  color: var(--gold);
  background: rgba(184,146,75,.10);
  border: 1px solid rgba(184,146,75,.22);
}
.mini-tile h3{margin:0; font-size:1.05rem; line-height:1.4;}
.mini-tile p{margin:0; color: var(--muted); font-size: .95rem; line-height:1.6;}
.text-link{
  background:none; border:0; padding:0;
  color: var(--gold);
  font-weight:800;
  cursor:pointer;
  width: fit-content;
  text-decoration:none;
}
.text-link:hover{text-decoration: underline;}


/* Topics - additional support link */
.topics-more{display:flex; justify-content:center; margin-top: 18px;}
.topics-more .btn{padding: 12px 22px; font-size: .98rem;}


/* --- Layout helpers: cards grids + mini cards (PC + Mobile consistent) --- */
.cards-grid{display:grid; gap:24px;}
@media (min-width: 920px){ .cards-grid-3{grid-template-columns: repeat(3, 1fr);} }
.section-head{margin-bottom:18px;}
.section-head.center{text-align:center; margin-bottom:28px;}
.section-head.center .kicker{display:inline-block;}

/* Classic mini service cards */
.mini-grid{display:grid; gap:16px; margin-top:14px;}
@media (min-width: 920px){ .mini-grid{grid-template-columns: repeat(3, 1fr);} }
.mini-card{
  background: rgba(255,255,255,.86);
  border:1px solid var(--border);
  border-radius: var(--r-large);
  padding: 18px 18px;
  box-shadow: var(--shadow-4);
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height: 0;
}
.mini-card h3{margin:0; font-size:1.05rem;}
.mini-card p{margin:0; color: var(--muted); line-height: 1.8; letter-spacing:.5px;}
.mini-link{
  margin-top: 6px;
  align-self:flex-start;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(184,148,69,.35);
  color: var(--gold);
  background: rgba(184,148,69,.08);
  text-decoration:none;
  font-weight:800;
  cursor:pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.mini-link:hover{ transform: translateY(-2px); background: rgba(184,148,69,.12); border-color: rgba(184,148,69,.55); }
.mini-link.as-btn{ border: 1px solid rgba(184,148,69,.35); }


/* --- Mobile drawer RTL fix (ensure panel opens inside frame) --- */
[dir="rtl"] .mobile-drawer .panel{
  right:0;
  left:auto;
  border-right:0;
  border-left:1px solid var(--border);
}

/* --- Netlify form toast (success/error bubble) --- */
.form-toast{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:10000;
  display:none;
  pointer-events:none;
}
.form-toast.show{ display:block; }
.form-toast__inner{
  pointer-events:auto;
  max-width:680px;
  margin:0 auto;
  background:rgba(255,255,255,.92);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  border-radius:18px;
  padding:14px 14px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.form-toast.success .form-toast__inner{ border-color: rgba(180,140,70,.35); }
.form-toast.error .form-toast__inner{ border-color: rgba(190,80,80,.35); }
.form-toast__title{
  font-weight:800;
  color:var(--text);
  margin-bottom:2px;
}
.form-toast__msg{
  color:var(--muted);
  line-height:1.35;
}
.form-toast__close{
  margin-inline-start:auto;
  border:1px solid var(--border);
  background:transparent;
  border-radius:12px;
  width:36px;
  height:36px;
  cursor:pointer;
  color:var(--text);
}
.form-toast__close:active{ transform:scale(.98); }


/* --- Fix: ensure mobile menu button is always clickable & drawer stays in-frame --- */
.site-header, header, .header, .main-header { position: relative; z-index: 10000; }
.hamburger { position: relative; z-index: 10001; pointer-events: auto; }
@media (max-width: 820px){
  .mobile-drawer .panel{ right:0; left:auto; max-width:360px; box-sizing:border-box; }
}



/* =========================================================
   Visual polish – High-end refinements (Feb 2026)
   (No layout / structure changes)
   ========================================================= */

/* 1) Typography: slightly tighter but airy */
.content-block p,
.card p,
.modal-body p,
.section p,
article p,
main p{
  line-height: 1.6;
}

.content-block p + p,
.card p + p,
.modal-body p + p,
.section p + p,
article p + p,
main p + p{
  margin-top: .9em;
}

/* Ensure paragraphs don't feel like one big "block" */
.content-block p,
.card p,
.modal-body p,
.section p,
article p,
main p{
  margin-bottom: 1em;
}
.content-block p:last-child,
.card p:last-child,
.modal-body p:last-child,
.section p:last-child,
article p:last-child,
main p:last-child{
  margin-bottom: 0;
}

/* 2) Buttons: smooth hover + subtle depth (override duplicates safely) */
.btn,
button.btn,
a.btn,
.mini-link.as-btn,
.footer-pill{
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease;
  box-shadow: 0 6px 16px rgba(20,20,20,.08);
}

.btn:hover,
button.btn:hover,
a.btn:hover,
.mini-link.as-btn:hover,
.footer-pill:hover{
  box-shadow: 0 10px 26px rgba(20,20,20,.10);
}

/* If a button already has strong hover lift, keep it gentle */
.btn:hover{ transform: translateY(-1px); }

/* 3) Modal/overlay: modern blur + polished backdrop close */
.modal{
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: rgba(0,0,0,.42);
}

/* 5) Footer alignment consistency */
footer .container{
  text-align: center;
}
footer p{
  text-align: center;
}

/* 4) Performance: make lazy images smoother when they appear */
img[loading="lazy"]{
  content-visibility: auto;
}


/* Form status (Netlify) */
.form-status{
  margin-top:14px;
  padding:12px 14px;
  border-radius:14px;
  font-size:0.95rem;
  line-height:1.5;
  border:1px solid rgba(0,0,0,0.08);
  background:rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  opacity:0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.form-status.is-show{
  opacity:1;
  transform: translateY(0);
}
.form-status.is-success{
  border-color: rgba(46, 125, 50, 0.18);
}
.form-status.is-error{
  border-color: rgba(198, 40, 40, 0.20);
}

/* Optional: subtle loading state on submit button */
#mailForm .is-loading{
  opacity:0.85;
  pointer-events:none;
}


/* --- TikTok in-app WhatsApp helper (modal) --- */
.tiktok-wa-hint{position:fixed;inset:0;z-index:100500;display:none;}
.tiktok-wa-hint.open{display:block;}
.tiktok-wa-hint__backdrop{
  position:absolute;inset:0;
  background:rgba(0,0,0,.42);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.tiktok-wa-hint__card{
  position:relative;
  max-width:520px;
  margin:0 auto;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  border-radius:22px;
  box-shadow:0 18px 60px rgba(0,0,0,.22);
  padding:18px 18px 16px;
  direction: rtl;
}
.tiktok-wa-hint__close{
  position:absolute;
  top:10px;left:10px;
  width:34px;height:34px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.75);
  cursor:pointer;
  font-size:22px;
  line-height:30px;
}
.tiktok-wa-hint__title{font-weight:800;font-size:18px;margin:6px 36px 10px 6px;}
.tiktok-wa-hint__text{font-size:14px;line-height:1.6;color:rgba(0,0,0,.78);margin-bottom:14px;}
.tiktok-wa-hint__actions{display:flex;flex-wrap:wrap;gap:10px;justify-content:flex-start;}
.tiktok-wa-hint__actions .btn,
.tiktok-wa-hint__actions button,
.tiktok-wa-hint__actions a{
  appearance:none;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(255,255,255,.80);
  border-radius:999px;
  padding:10px 14px;
  font-weight:700;
  cursor:pointer;
  text-decoration:none;
  color:inherit;
  transition:all .25s ease;
}
.tiktok-wa-hint__actions .btn:hover,
.tiktok-wa-hint__actions button:hover,
.tiktok-wa-hint__actions a:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}
@media (max-width:560px){
  .tiktok-wa-hint__card{margin:0 14px;top:52%;}
  .tiktok-wa-hint__actions{gap:8px;}
}

html.no-scroll, body.no-scroll{overflow:hidden;}
