:root {
  --teal: #1F5C4E;
  --teal-dark: #163F35;
  --teal-light: #2C7562;
  --ice: #E8F1EE;
  --gold: #C99A3B;
  --gold-light: #E3BE6E;
  --dark: #1E1E1E;
  --grey: #6B6B6B;
  --grey-light: #F4F6F5;
  --white: #FFFFFF;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(22, 63, 53, 0.10);
  --shadow-lg: 0 24px 60px rgba(22, 63, 53, 0.18);
  --max: 1120px;

  /* Category accents — used to give the catalog visual variety instead of
     every product looking the same teal/gold regardless of type. */
  --cat-general: #1F5C4E; --cat-general-bg: #E8F1EE;
  --cat-dev:     #2B6CB0; --cat-dev-bg:     #E4EEF7;
  --cat-design:  #C2622D; --cat-design-bg:  #F7E8DE;
  --cat-accounting: #6B46C1; --cat-accounting-bg: #EDE7F9;
  --cat-deck:    #B83280; --cat-deck-bg:    #F7E1EE;
  --cat-xlsx:    #2F855A; --cat-xlsx-bg:    #E3F1E9;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; overflow-y: scroll; scrollbar-gutter: stable; }
body {
  margin: 0;
  font-family: 'Heebo', Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  direction: rtl;
  line-height: 1.6;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.03); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Scroll-reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Marquee strip ---------- */
.marquee { overflow: hidden; background: var(--teal-dark); padding: 12px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 22s linear infinite; }
.marquee-item {
  display: flex; align-items: center; gap: 10px; color: #DCEBE5; font-size: 13.5px; font-weight: 600;
  padding: 0 28px; white-space: nowrap;
}
.marquee-item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #ECECEC;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: var(--max); margin: 0 auto;
}
.brand { font-size: 22px; font-weight: 700; color: var(--teal-dark); display: flex; align-items: center; gap: 7px; letter-spacing: -.01em; }
.brand .brand-mark { width: 17px; height: 17px; flex: none; }
.brand .brand-mark .bm-face { fill: var(--gold); }
.brand .brand-mark .bm-fold { fill: var(--gold-light); }
.nav-links { display: flex; gap: 28px; font-size: 15px; font-weight: 500; }
.nav-links a { color: var(--dark); opacity: .85; padding: 6px 0; border-bottom: 2px solid transparent; transition: opacity .15s ease, border-color .15s ease; }
.nav-links a:hover, .nav-links a.active { opacity: 1; border-color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-light)); color: var(--white); padding: 10px 22px;
  border-radius: 30px; font-size: 14px; font-weight: 600;
  box-shadow: 0 8px 20px rgba(22,63,53,.22);
  transition: transform .15s ease, box-shadow .15s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(22,63,53,.3); }
.nav-login { color: var(--grey); font-size: 14px; font-weight: 600; display: flex; align-items: center; justify-content: flex-end; gap: 5px; min-width: 92px; transition: color .15s ease; }
.nav-login.nav-login-pending { visibility: hidden; }
.nav-login:hover { color: var(--teal-dark); }
.nav-login-email { max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; direction: ltr; text-align: right; }

/* Shared "switchable list" widget — the sites rail on sites.html and the
   content dashboard on account-settings.html both use it. */
.my-sites-rail { background: var(--white); border: 1px solid #EAEDEC; border-radius: var(--radius); padding: 14px; margin-bottom: 16px; }
.my-sites-rail-title { font-size: 12.5px; font-weight: 700; color: var(--teal-dark); margin: 0 0 8px; }
.my-sites-list { display: flex; flex-direction: column; gap: 2px; }
.my-site-row { display: block; padding: 8px 10px; border-radius: 8px; text-decoration: none; color: var(--dark); transition: background .15s ease; }
.my-site-row:hover { background: var(--grey-light); }
.my-site-row.active { background: var(--ice); }
.my-site-row-name { display: block; font-size: 13px; font-weight: 600; line-height: 1.4; }
.my-site-row-tpl { display: block; font-size: 11px; color: var(--grey); line-height: 1.4; }
.nav-account-wrap { position: relative; display: inline-flex; }
.nav-account-dropdown {
  position: absolute; top: calc(100% + 10px); inset-inline-end: 0;
  background: var(--white); border: 1px solid #EAEDEC; border-radius: 10px;
  box-shadow: var(--shadow-lg); padding: 14px; min-width: 220px; z-index: 500;
}
.nav-account-email { font-size: 12.5px; color: var(--grey); direction: ltr; text-align: end; margin-bottom: 10px; word-break: break-all; }
.nav-account-dropdown button, .nav-account-dropdown a.nav-account-settings {
  display: block; box-sizing: border-box; width: 100%; background: none; border: 1px solid #DADFDD; border-radius: 8px; padding: 8px 12px;
  font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--dark); text-align: center; text-decoration: none;
}
.nav-account-settings { margin-bottom: 8px; }
.nav-account-settings:hover { background: var(--grey-light); }
.nav-account-dropdown .nav-account-logout { color: #B23333; border-color: #F0D9D9; }
.nav-account-dropdown .nav-account-logout:hover { background: #FBEEEE; }
.nav-account-confirm p { font-size: 13px; margin: 0 0 10px; text-align: center; color: var(--dark); }
.nav-account-confirm-row { display: flex; gap: 8px; }
.nav-confirm-yes { background: #B23333 !important; color: #fff !important; border-color: #B23333 !important; }
.nav-confirm-no { background: var(--grey-light) !important; }

/* ---------- Auth gate overlay ---------- */
.auth-gate-overlay {
  position: fixed; inset: 0; background: var(--white); z-index: 9999;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px;
}
.auth-gate-spinner {
  width: 32px; height: 32px; border: 3px solid var(--ice); border-top-color: var(--teal);
  border-radius: 50%; animation: auth-gate-spin .8s linear infinite;
}
@keyframes auth-gate-spin { to { transform: rotate(360deg); } }
.burger { display: none; font-size: 26px; background: none; border: none; cursor: pointer; color: var(--teal-dark); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--teal-dark), var(--teal) 65%, var(--teal-light) 130%);
  color: var(--white);
  padding: 100px 24px 120px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(480px 480px at 12% 15%, rgba(201,154,59,.28), transparent 65%),
    radial-gradient(420px 420px at 88% 85%, rgba(43,108,176,.22), transparent 60%),
    radial-gradient(circle at 50% 120%, rgba(184,50,128,.14), transparent 55%);
}
.hero::after {
  content: "";
  position: absolute; z-index: -1; inset-inline-end: -80px; top: -90px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(201,154,59,.35), rgba(201,154,59,0) 70%);
  animation: floatSlow 9s ease-in-out infinite;
}
.hero h1 {
  font-size: 46px; font-weight: 700; margin: 0 0 18px; max-width: 780px; margin-inline: auto;
  letter-spacing: -.01em; animation: fadeUp .6s ease both;
}
.hero p.lead { font-size: 18px; color: #DCEBE5; max-width: 620px; margin: 0 auto 34px; animation: fadeUp .6s .08s ease both; }
.hero .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeUp .6s .16s ease both; }
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 30px;
  font-weight: 600; font-size: 15px; cursor: pointer; border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--teal-dark);
  box-shadow: 0 10px 26px rgba(201,154,59,.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(201,154,59,.45); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-teal { background: linear-gradient(135deg, var(--teal), var(--teal-light)); color: var(--white); box-shadow: 0 8px 20px rgba(22,63,53,.2); }
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(22,63,53,.3); }

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head .kicker {
  display: inline-block; color: var(--teal-dark); background: var(--ice);
  font-weight: 700; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 6px;
}
.section-head h2 { font-size: 34px; margin: 12px 0 12px; color: var(--teal-dark); letter-spacing: -.01em; }
.section-head p { color: var(--grey); font-size: 16px; }
.bg-ice { background: linear-gradient(180deg, var(--ice), #F7FBF9); }

/* ---------- Category tabs ---------- */
.tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.tab {
  background: var(--white); border: 1.5px solid #DDE4E1; color: var(--dark);
  padding: 9px 20px; border-radius: 30px; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: border-color .15s ease, background .15s ease, color .15s ease, transform .15s ease;
}
.tab:hover { border-color: var(--teal); transform: translateY(-1px); }
.tab.active { background: linear-gradient(135deg, var(--teal), var(--teal-light)); border-color: var(--teal); color: var(--white); }

/* ---------- Product grid / cards ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  position: relative;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid #EEF2F0;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card::before {
  content: ""; position: absolute; top: 0; inset-inline-start: 0; inset-inline-end: 0; height: 4px;
  background: linear-gradient(90deg, var(--cat-c, var(--gold)), var(--teal-light));
  opacity: 0; transition: opacity .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { opacity: 1; }
.card .thumb { background: var(--cat-bg, var(--ice)); padding: 14px; height: 170px; display: flex; align-items: center; justify-content: center; }
.card .thumb img { border-radius: 6px; height: 100%; width: auto; max-width: 100%; object-fit: contain; margin: 0 auto; transition: transform .3s ease; }
.card:hover .thumb img { transform: scale(1.03); }
.card .body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.card .tag { align-self: flex-start; background: var(--cat-bg, var(--ice)); color: var(--cat-c, var(--teal-dark)); font-size: 11.5px; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
.card .tag-free { background: transparent; color: var(--teal); padding: 3px 0; }
.card[data-cat="general"] { --cat-c: var(--cat-general); --cat-bg: var(--cat-general-bg); }
.card[data-cat="dev"] { --cat-c: var(--cat-dev); --cat-bg: var(--cat-dev-bg); }
.card[data-cat="design"] { --cat-c: var(--cat-design); --cat-bg: var(--cat-design-bg); }
.card[data-cat="accounting"] { --cat-c: var(--cat-accounting); --cat-bg: var(--cat-accounting-bg); }
.card[data-cat="deck"] { --cat-c: var(--cat-deck); --cat-bg: var(--cat-deck-bg); }
.card[data-cat="xlsx"] { --cat-c: var(--cat-xlsx); --cat-bg: var(--cat-xlsx-bg); }
.card h3 { margin: 0; font-size: 16.5px; color: var(--dark); line-height: 1.35; }
.card .card-cta { margin-top: 2px; text-align: center; padding: 9px 20px; font-size: 13.5px; }
.price { font-size: 16px; font-weight: 700; color: var(--teal-dark); }
.price small { font-size: 13px; color: var(--grey); font-weight: 400; }

/* ---------- Feature list (icon rows) ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature { text-align: center; padding: 26px 18px; border-radius: var(--radius); transition: transform .2s ease, box-shadow .2s ease; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature .icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ice), #D7E9E2);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  font-size: 24px; color: var(--teal);
  box-shadow: inset 0 0 0 1px rgba(31,92,78,.08);
}
.feature:nth-child(2) .icon { background: linear-gradient(135deg, var(--cat-dev-bg), #D2E3F2); color: var(--cat-dev); box-shadow: inset 0 0 0 1px rgba(43,108,176,.1); }
.feature:nth-child(3) .icon { background: linear-gradient(135deg, var(--cat-design-bg), #F2DACB); color: var(--cat-design); box-shadow: inset 0 0 0 1px rgba(194,98,45,.1); }
.feature h4 { margin: 0 0 8px; font-size: 17px; }
.feature p { margin: 0; color: var(--grey); font-size: 14px; }

/* ---------- Coming soon banner ---------- */
.banner {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal) 80%);
  color: var(--white); border-radius: var(--radius);
  padding: 40px 44px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.banner::before {
  content: ""; position: absolute; z-index: -1; inset-inline-start: -40px; bottom: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,154,59,.3), transparent 70%);
}
.banner h3 { margin: 0 0 6px; font-size: 22px; }
.banner p { margin: 0; color: #CFE3DC; font-size: 14px; max-width: 480px; }
.badge-free { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--teal-dark); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-inline-start: 10px; }

/* ---------- Paid-product spotlight (site-builder promo) ---------- */
.spotlight {
  position: relative; overflow: hidden; isolation: isolate;
  background: radial-gradient(circle at 15% 20%, rgba(201,154,59,.16), transparent 45%), linear-gradient(135deg, var(--teal-dark), var(--teal) 85%);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 48px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center;
}
.spotlight-kicker { color: var(--gold-light); font-weight: 700; font-size: 13px; letter-spacing: .04em; margin-bottom: 10px; }
.spotlight h2 { color: var(--white); font-size: 30px; margin: 0 0 14px; }
.spotlight p { color: #CFE3DC; font-size: 15px; margin: 0 0 20px; max-width: 460px; }
.spotlight-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 10px; }
.spotlight-list li { color: var(--white); font-size: 14px; display: flex; align-items: center; gap: 10px; }
.spotlight-list li::before { content: "✓"; color: var(--gold-light); font-weight: 700; }
.spotlight-visual {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-sm);
  padding: 26px; color: var(--white);
}
.spotlight-visual .tpl-chip { display: inline-block; background: rgba(255,255,255,.1); border-radius: 8px; padding: 6px 12px; font-size: 12.5px; margin: 0 6px 10px 0; }
.spotlight-visual .price-tag { font-size: 30px; font-weight: 800; color: var(--gold-light); margin: 10px 0 4px; }
.spotlight-visual .price-note { font-size: 13px; color: #CFE3DC; }
@media (max-width: 760px) {
  .spotlight { grid-template-columns: 1fr; padding: 32px 22px; }
}

/* ---------- Product detail page ---------- */
.product-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 60px 0; }
.product-hero .thumb { background: linear-gradient(160deg, var(--ice), #F7FBF9); border-radius: var(--radius); padding: 28px; display:flex; align-items:center; justify-content:center; }
.product-hero .thumb img { border-radius: 8px; box-shadow: var(--shadow-lg); }
.breadcrumb { font-size: 13px; color: var(--grey); margin-bottom: 18px; }
.breadcrumb a { color: var(--teal); }
.product-hero h1 { font-size: 34px; margin: 0 0 14px; color: var(--dark); letter-spacing: -.01em; }
.product-hero .desc { color: var(--grey); font-size: 16px; margin-bottom: 22px; }
.product-hero .price-block { display: flex; align-items: baseline; gap: 10px; margin-bottom: 26px; }
.product-hero .price-block .price { font-size: 34px; }
.format-badges { display: flex; gap: 10px; margin-bottom: 26px; flex-wrap: wrap; }
.format-badge { background: var(--ice); color: var(--teal-dark); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 8px; }
.checklist { list-style: none; padding: 0; margin: 0 0 10px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: 15px; color: var(--dark); }
.checklist li::before {
  content: "✓"; color: var(--white); font-weight: 700; flex: none;
  width: 19px; height: 19px; border-radius: 50%; background: var(--teal);
  display: flex; align-items: center; justify-content: center; font-size: 11px; margin-top: 2px;
}
.note-box { background: var(--grey-light); border-inline-start: 3px solid var(--gold); border-radius: 8px; padding: 14px 16px; font-size: 13px; color: var(--grey); margin-top: 18px; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { position: relative; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px 26px 26px; transition: transform .2s ease, box-shadow .2s ease; }
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quote::before {
  content: "”"; position: absolute; top: 6px; inset-inline-end: 20px; font-size: 56px; font-weight: 700;
  color: var(--ice); line-height: 1; font-family: Georgia, serif; z-index: 0;
}
.quote p.text { position: relative; z-index: 1; color: var(--dark); font-size: 15px; margin: 0 0 16px; }
.quote .who { position: relative; z-index: 1; font-size: 13px; color: var(--teal-dark); font-weight: 700; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.step { text-align: center; position: relative; }
.step .num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light)); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 14px;
  box-shadow: 0 8px 18px rgba(22,63,53,.28);
}
.step h4 { margin: 0 0 6px; font-size: 16px; }
.step p { margin: 0; color: var(--grey); font-size: 14px; }

/* ---------- Forms ---------- */
form.contact-form { display: grid; gap: 16px; max-width: 560px; margin: 0 auto; }
.field { display: grid; gap: 6px; }
.field label { font-size: 14px; font-weight: 600; }
.field input, .field textarea {
  padding: 12px 14px; border-radius: 8px; border: 1px solid #DADFDD; font-family: inherit; font-size: 15px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(31,92,78,.12);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ---------- Footer ---------- */
footer.site { background: linear-gradient(180deg, var(--teal-dark), #102921); color: #CFE3DC; padding: 50px 0 26px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
.footer-grid h5 { color: var(--white); font-size: 15px; margin: 0 0 14px; }
.footer-grid ul { list-style: none; padding: 0; display: grid; gap: 8px; font-size: 14px; }
.footer-grid ul a { transition: color .15s ease; }
.footer-grid ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; font-size: 13px; text-align: center; color: #9FC4B8; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ---------- Floating widgets: feedback + chat ---------- */
.fab {
  position: fixed; bottom: 24px; z-index: 200;
  width: 54px; height: 54px; border-radius: 50%; border: none; cursor: pointer;
  font-size: 22px; color: var(--white); box-shadow: 0 10px 26px rgba(0,0,0,.22);
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s ease, box-shadow .15s ease;
}
.fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 30px rgba(0,0,0,.28); }
.fab-feedback { left: 24px; background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--teal-dark); }
.fab-chat { right: 24px; background: linear-gradient(135deg, var(--teal), var(--teal-light)); }
.fab-chat svg { width: 24px; height: 24px; }
.fab-a11y {
  left: 24px; bottom: 88px; box-shadow: 0 6px 16px rgba(0,0,0,.12);
  background: var(--white); border: 1.5px solid #DDE4E1; color: var(--teal-dark); text-decoration: none;
}
.fab-a11y svg { width: 24px; height: 24px; }
.fab-a11y:hover { border-color: var(--teal); }

.widget-overlay {
  position: fixed; inset: 0; z-index: 300; background: rgba(16,30,25,.5);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.widget-overlay.open { display: flex; }
.widget-modal {
  position: relative; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 30px 26px 24px; max-width: 380px; width: 100%;
}
.widget-modal h3 { margin: 0 0 6px; font-size: 19px; color: var(--teal-dark); }
.widget-sub { margin: 0 0 16px; font-size: 13.5px; color: var(--grey); }
.widget-close {
  position: absolute; top: 14px; inset-inline-end: 14px; background: var(--grey-light);
  border: none; border-radius: 50%; width: 28px; height: 28px; cursor: pointer; font-size: 13px; color: var(--grey);
}
.star-row { display: flex; gap: 6px; margin-bottom: 16px; }
.star { background: none; border: none; font-size: 30px; color: #DDE4E1; cursor: pointer; padding: 0; line-height: 1; transition: color .1s ease; }
.star.filled { color: var(--gold); }
.widget-modal textarea {
  width: 100%; box-sizing: border-box; padding: 10px 12px; border-radius: 8px; border: 1px solid #DADFDD;
  font-family: inherit; font-size: 13.5px; resize: vertical; margin-bottom: 14px;
}
.widget-note { font-size: 13px; color: var(--grey); margin-top: 10px; line-height: 1.5; }
.widget-note.ok { color: var(--teal); font-weight: 600; }
.widget-note.warn { color: #B23; }
.widget-note a { color: var(--teal); font-weight: 600; }

.chat-panel {
  position: fixed; bottom: 90px; right: 24px; z-index: 250;
  width: 320px; max-width: calc(100vw - 32px); height: 420px; max-height: calc(100vh - 130px);
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  display: none; flex-direction: column; overflow: hidden; border: 1px solid #EAEDEC;
}
.chat-panel.open { display: flex; }
.chat-head {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal)); color: var(--white);
  padding: 14px 16px; font-weight: 700; font-size: 14.5px; display: flex; align-items: center; justify-content: space-between;
}
.chat-head .widget-close { position: static; background: rgba(255,255,255,.18); color: var(--white); }
.chat-body { flex: 1; overflow-y: auto; padding: 14px 12px; display: flex; flex-direction: column; gap: 10px; background: var(--grey-light); }
.chat-msg { display: flex; }
.chat-msg-bot { justify-content: flex-start; }
.chat-msg-user { justify-content: flex-end; }
.chat-bubble { max-width: 82%; padding: 9px 13px; border-radius: 14px; font-size: 13px; line-height: 1.55; }
.chat-msg-bot .chat-bubble { background: var(--white); color: var(--dark); box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.chat-msg-user .chat-bubble { background: var(--teal); color: var(--white); }
.chat-link { display: block; margin-top: 6px; font-weight: 700; color: var(--teal); font-size: 12.5px; }
.chat-msg-user .chat-link { color: #DCEBE5; }
.chat-quick { display: flex; gap: 6px; padding: 0 12px 10px; flex-wrap: wrap; }
.chat-chip { background: var(--ice); color: var(--teal-dark); border: none; padding: 6px 11px; border-radius: 20px; font-size: 11.5px; font-weight: 600; cursor: pointer; font-family: inherit; }
.chat-input-row { display: flex; gap: 8px; padding: 12px; border-top: 1px solid #EDEFEE; }
.chat-input-row input {
  flex: 1; min-width: 0; padding: 9px 12px; border-radius: 20px; border: 1px solid #DADFDD; font-family: inherit; font-size: 13px;
}
.chat-input-row button { padding: 9px 18px; font-size: 13px; }

.cookie-notice {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 250;
  background: var(--teal-dark); color: var(--white);
  display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
  padding: 12px 24px; box-shadow: 0 -6px 20px rgba(0,0,0,.15);
}
.cookie-notice p { margin: 0; font-size: 13px; max-width: 560px; }
.cookie-notice a { color: var(--gold-light); text-decoration: underline; }
.cookie-notice button { padding: 8px 20px; font-size: 13px; flex: none; }
body.cookie-notice-active .fab { display: none; }

@media (max-width: 480px) {
  .chat-panel { right: 12px; bottom: 84px; width: calc(100vw - 24px); }
  .fab-chat { right: 14px; }
  .fab-feedback { left: 14px; }
  .fab-a11y { left: 14px; }
}

@media print {
  .no-print { display: none !important; }
}

@media (max-width: 860px) {
  .grid, .features, .quote-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
  .product-hero { grid-template-columns: 1fr; padding: 30px 0; }
  .nav-links { position: fixed; inset-inline-end: 0; top: 68px; background: var(--white); flex-direction: column;
    width: 220px; padding: 20px; box-shadow: 6px 0 20px rgba(0,0,0,.08); transform: translateX(-100%);
    transition: transform .2s ease; height: calc(100vh - 68px); }
  .nav-links.open { transform: translateX(0); }
  .burger { display: block; }
  .hero h1 { font-size: 32px; }
  .banner { flex-direction: column; text-align: center; }
}
