/*
  SafeRoute VPN landing (v2)
  - intentionally isolated via body.landing scope
  - does not modify existing admin styles in /static/css/style.css
*/

body.landing{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:#0f172a;
  background:#f6f7ff;
  line-height:1.45;
}

body.landing *{box-sizing:border-box}
body.landing a{color:inherit}

:root{
  --sr-purple:#5b21b6;
  --sr-purple2:#6d28d9;
  --sr-violet:#7c3aed;
  --sr-cyan:#22d3ee;
  --sr-ink:#0f172a;
  --sr-muted:#64748b;
  --sr-border:rgba(2,6,23,.10);
  --sr-card:#ffffff;
  --sr-shadow: 0 12px 30px rgba(2,6,23,.08);
  --sr-shadow2: 0 20px 60px rgba(2,6,23,.10);
  --sr-radius: 18px;
}

.sr-container{max-width:1120px; margin:0 auto; padding: 0 18px}

/* Skip */
.sr-skip{
  position:absolute; left:12px; top:12px;
  padding:10px 12px;
  border-radius: 12px;
  border: none;
  background: rgba(17,24,39,.85);
  color:#fff;
  text-decoration:none;
  transform: translateY(-140%);
  transition: transform .15s ease;
  z-index: 9999;
}
.sr-skip:focus{transform: translateY(0); outline:none}

/* Buttons */
.sr-btn{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 11px 16px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.12);
  color:#fff;
  text-decoration:none;
  font-weight: 750;
  cursor:pointer;
  transition: transform .18s ease, filter .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  will-change: transform;
  user-select:none;
}
.sr-btn:hover{transform: translateY(-1px) scale(1.015); filter: brightness(1.06); box-shadow: 0 16px 40px rgba(2,6,23,.18)}
.sr-btn:active{transform: translateY(0) scale(0.995); filter: brightness(0.98)}

.sr-btn-primary{background: linear-gradient(135deg, var(--sr-violet), var(--sr-cyan));
  border-color: transparent;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(2,6,23,.35);
  border: none;
}

.sr-btn-ghost{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.20);
  color:#fff;
}

.sr-btn-wide{width:100%}

.sr-btn::after{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.55) 20%, transparent 40%);
  transform: translateX(-140%);
  transition: transform .55s ease;
  pointer-events:none;
  opacity:.0;
}
.sr-btn:hover::after{transform: translateX(140%); opacity:.55}
.sr-btn:focus-visible{
  outline:none;
  box-shadow: 0 0 0 4px rgba(34,211,238,.22), 0 18px 50px rgba(2,6,23,.16);
}


/* Hero */
.sr-hero{
  position: relative;
  color:#fff;
  overflow:hidden;
}
.sr-hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 18%, rgba(124,58,237,.55), transparent 55%),
    radial-gradient(circle at 82% 12%, rgba(34,211,238,.35), transparent 52%),
    linear-gradient(135deg, #2b116a 0%, #3b1689 35%, #2a0f6e 100%);
}
.sr-hero-inner{position:relative; padding: 26px 0 26px}

.sr-topbar{
  position: relative;
  z-index: 3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 18px 0;
}

.sr-brand{display:flex; align-items:center; gap:12px; text-decoration:none; min-width:0}
.sr-mark{
  width:40px; height:40px; border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), rgba(255,255,255,.10)),
    radial-gradient(circle at 70% 70%, rgba(34,211,238,.35), transparent 55%);
  border:1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.sr-brandtext{display:flex; flex-direction:column; gap:2px; min-width:0}
.sr-brandname{font-weight: 950; letter-spacing: .2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.sr-brandtag{font-size: 12px; opacity:.78; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}

.sr-nav{display:flex; align-items:center; gap: 14px; flex-wrap:wrap; justify-content:flex-end}
.sr-nav a{color: rgba(255,255,255,.86); text-decoration:none; padding: 8px 10px; border-radius: 999px; border: 1px solid transparent}
.sr-nav a:hover{background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18)}
.sr-nav a.sr-nav-cabinet{
  color:#fff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  font-weight: 800;
}
.sr-nav a.sr-nav-cabinet:hover{
  color:#fff;
  border-color: rgba(255,255,255,.30);
  background: rgba(255,255,255,.16);
}


/* Burger */
.sr-burger{
  display:none;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap: 4px;
}
.sr-burger span{
  display:block;
  height:2px;
  width: 18px;
  background: rgba(255,255,255,.92);
  border-radius: 99px;
  transform: none;
}

.sr-hero-grid{
  position: relative;
  z-index: 2;
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 18px;
  align-items:center;
}
.sr-btn.sr-btn-primary {
  color: white;
}
.sr-kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.10);
  font-size: 12px;
  color: rgba(255,255,255,.92);
}
.sr-kdot{width: 8px; height: 8px; border-radius:99px; background: var(--sr-cyan); box-shadow: 0 0 0 4px rgba(34,211,238,.18)}

.sr-h1{margin: 14px 0 10px; font-size: clamp(26px, 4.2vw, 44px); line-height: 1.08; letter-spacing: -.4px}
.sr-lead{margin:0; max-width: 64ch; color: rgba(255,255,255,.84); font-size: 14px}

.sr-hero-actions{display:flex; gap: 12px; flex-wrap:wrap; margin-top: 18px}

.sr-hero-art{display:flex; justify-content:flex-end}
.sr-art-svg{max-width: 100%; height: auto; border-radius: 26px}

.sr-feature-row{
  position: relative;
  z-index: 3;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
  padding-bottom: 14px;
}

.sr-card{
  border-radius: var(--sr-radius);
  box-shadow: var(--sr-shadow2);
  border: 1px solid rgba(255,255,255,.14);
  overflow:hidden;
}
.sr-card h3{margin: 10px 0 6px; font-size: 14px}
.sr-card p{margin:0; font-size: 13px; line-height:1.5}
.sr-ic{font-size: 18px}

.sr-card-lite{
  padding: 16px;
  background: rgba(255,255,255,.92);
  color: var(--sr-ink);
  border-color: rgba(255,255,255,.60);
}
.sr-card-lite p{color: var(--sr-muted)}

.sr-card-dark{
  padding: 16px;
  background: rgba(255,255,255,.12);
  color:#fff;
}
.sr-card-dark p{color: rgba(255,255,255,.80)}

.sr-wave{display:block; width:100%; height: 96px; position:relative; z-index:1; margin-bottom:-1px; background: transparent; line-height:0;}

/* Sections */
.sr-section{padding: 64px 0}
.sr-section-white{background:#fff}

.sr-head{display:flex; align-items:flex-end; justify-content:space-between; gap: 18px; flex-wrap:wrap}
.sr-eyebrow{font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--sr-violet); font-weight: 900}
.sr-h2{margin: 10px 0 0; font-size: 28px; letter-spacing: -.3px; color: var(--sr-ink)}
.sr-muted{margin:0; color: var(--sr-muted); max-width: 72ch; font-size: 14px}
.sr-text{color: var(--sr-muted); font-size: 14px; margin: 10px 0 0; max-width: 80ch}

/* Split block */
.sr-split{display:grid; grid-template-columns: 1.05fr .95fr; gap: 22px; align-items:center}

.sr-checklist{margin: 16px 0 0; padding: 0; list-style:none; display:grid; gap: 10px}
.sr-checklist li{
  position:relative;
  padding-left: 28px;
  color: var(--sr-ink);
  font-weight: 650;
}
.sr-checklist li::before{
  content:"";
  position:absolute;
  left:0;
  top:.22em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sr-violet), var(--sr-cyan));
  box-shadow: 0 10px 26px rgba(124,58,237,.22);
}

.sr-mini{
  margin-top: 28px;
  max-width: 80ch;
  padding-top: 18px;
  border-top: 1px solid rgba(2,6,23,.10);
}
.sr-mini-title{
  margin: 0;
  color: var(--sr-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}
.sr-bullets{
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--sr-muted);
  font-size: 14px;
  line-height: 1.65;
  display: grid;
  gap: 8px;
}
.sr-bullets li::marker{color: var(--sr-violet)}
.sr-actions{display:flex; gap: 12px; flex-wrap:wrap; margin-top: 18px}
.sr-actions .sr-btn-ghost{background: rgba(2,6,23,.05); border-color: rgba(2,6,23,.10); color: var(--sr-ink)}

/* About isometric */
.sr-about-art{display:flex; justify-content:center}
.sr-iso{position:relative; width: min(460px, 100%); height: 320px}
.sr-iso-card{
  position:absolute;
  left: 34px;
  top: 74px;
  width: 190px;
  height: 210px;
  transform: skewY(-12deg);
  filter: drop-shadow(0 26px 50px rgba(2,6,23,.18));
}
.sr-iso-card2{left: 220px; top: 44px; width: 210px; height: 240px}
.sr-iso-top{height: 22%; border-radius: 18px 18px 12px 12px; background: linear-gradient(135deg, rgba(124,58,237,.28), rgba(34,211,238,.18)); border: 1px solid rgba(2,6,23,.10)}
.sr-iso-mid{height: 54%; margin-top: 10px; border-radius: 16px; background: #fff; border: 1px solid rgba(2,6,23,.10)}
.sr-iso-bot{height: 18%; margin-top: 10px; border-radius: 14px; background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(34,211,238,.12)); border: 1px solid rgba(2,6,23,.10)}
.sr-iso-person{
  position:absolute;
  right: 68px;
  bottom: 44px;
  width: 76px;
  height: 120px;
  border-radius: 38px;
  background: radial-gradient(circle at 35% 25%, rgba(124,58,237,.45), rgba(34,211,238,.18));
  border: 1px solid rgba(2,6,23,.10);
  box-shadow: 0 26px 70px rgba(2,6,23,.18);
}

/* Offer grid */
.sr-grid-6{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 22px;
}

.sr-tile{
  background: #fff;
  border: 1px solid var(--sr-border);
  border-radius: var(--sr-radius);
  padding: 18px;
  box-shadow: var(--sr-shadow);
}
.sr-tile-ic{width: 44px; height: 44px; border-radius: 14px; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(34,211,238,.12));
  border:1px solid rgba(2,6,23,.08);
}
.sr-tile h3{margin: 12px 0 8px; font-size: 14px}
.sr-tile p{margin:0; color: var(--sr-muted); font-size: 13px}

/* Pricing */
.sr-pricing{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  margin-top: 22px;
}

.sr-price{
  isolation:isolate;
  position:relative;
  background: #fff;
  border: 1px solid var(--sr-border);
  border-radius: var(--sr-radius);
  box-shadow: var(--sr-shadow);
  padding: 18px;
  display:flex;
  flex-direction:column;
}
.sr-price-featured{
  border-color: rgba(124,58,237,.35);
  box-shadow: 0 18px 60px rgba(124,58,237,.16);
}
.sr-badge{
  position:absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(34,211,238,.12));
  border: 1px solid rgba(124,58,237,.25);
  color: var(--sr-ink);
  font-weight: 900;
  font-size: 12px;
}
.sr-price-top{padding-right: 84px}
.sr-price-name{font-weight: 950; font-size: 14px; color: var(--sr-ink)}
.sr-price-val{margin-top: 10px; font-size: 24px; font-weight: 950; letter-spacing:-.2px; color: var(--sr-ink); line-height:1.35; word-break:break-word}
.sr-price-sub{margin-top: 4px; font-size: 12px; color: var(--sr-muted)}

.sr-price-list{margin: 14px 0 18px; padding:0; list-style:none; display:grid; gap: 10px}
.sr-price-list li{color: var(--sr-muted); font-size: 13px; position:relative; padding-left: 18px}
.sr-price-list li::before{content:"\2022"; position:absolute; left:0; color: var(--sr-violet)}
.sr-price-intro{
  margin:10px 0 10px;
  color:var(--sr-muted);
  font-size:13px;
  line-height:1.45;
  font-weight:600;
}
.sr-price-outro{
  margin:8px 0 14px;
  color:var(--sr-muted);
  font-size:13px;
  line-height:1.45;
  font-weight:600;
}
.sr-price-country strong{
  color:var(--sr-ink);
  font-weight:800;
}

.sr-price .sr-btn{margin-top:auto}

/* Keep pricing cards visually aligned across columns */
.sr-price-top{
  min-height:96px;
}
.sr-price-intro{
  min-height:56px;
}
.sr-price-list{
  margin-top:10px;
  margin-bottom:0;
}
.sr-price-list li{
  line-height:1.4;
}
.sr-price-outro{
  min-height:40px;
  margin-bottom:12px;
}
.sr-price form{
  margin-top:auto;
}

/* Map section */
.sr-map{
  background: #2b116a;
  color:#fff;
  position: relative;
}
.sr-map::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: #2b116a;
  transform: translateY(-2px);
  pointer-events: none;
  z-index: 2;
}
.sr-container.sr-map-inner {
  padding: 56px 0;
  position: relative;
  z-index: 3;
}
.sr-map-inner{position:relative}
.sr-map-head{max-width: 820px}

.sr-eyebrow-on{color: rgba(255,255,255,.80)}
.sr-h2-on{color:#fff}
.sr-muted-on{color: rgba(255,255,255,.78)}

.sr-map-canvas{margin-top: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: 18px; box-shadow: var(--sr-shadow2)}
.sr-map-svg{width:100%; height:auto; display:block}

/* Steps */
.sr-steps{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 22px;
}
.sr-step{
  display:flex;
  gap: 12px;
  padding: 16px;
  border-radius: var(--sr-radius);
  border: 1px solid var(--sr-border);
  background: #fff;
  box-shadow: var(--sr-shadow);
}
.sr-step-num{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(2,6,23,.35);
  background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(34,211,238,.12));
  border: 1px solid rgba(2,6,23,.08);
}
.sr-step-title{font-weight: 950; color: var(--sr-ink)}
.sr-step-text{margin-top: 6px; color: var(--sr-muted); font-size: 13px}

.sr-cta{
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(124,58,237,.20);
  background: linear-gradient(135deg, rgba(124,58,237,.10), rgba(34,211,238,.08));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}
.sr-cta-title{font-weight: 950; color: var(--sr-ink)}
.sr-cta-text{margin-top: 6px; color: var(--sr-muted); font-size: 13px; max-width: 78ch}
.sr-cta-actions{display:flex; gap: 12px; flex-wrap:wrap}
.sr-cta-actions .sr-btn-ghost{background:#fff; border-color: rgba(2,6,23,.10); color: var(--sr-ink)}

/* FAQ */
.sr-faq{display:grid; grid-template-columns: .9fr 1.1fr; gap: 18px; align-items:start}
.sr-faq > div > .sr-btn-primary{margin-top: 12px}
.sr-accordion{display:grid; gap: 12px}
.sr-acc{border-radius: 18px; overflow:hidden; border: 1px solid var(--sr-border); background:#fff; box-shadow: var(--sr-shadow)}
.sr-acc-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 16px;
  border:0;
  background: transparent;
  cursor:pointer;
  font-weight: 900;
  color: var(--sr-ink);
}
.sr-acc-ico{width: 28px; height: 28px; border-radius: 999px; display:flex; align-items:center; justify-content:center;
  background: rgba(124,58,237,.10);
  border: 1px solid rgba(124,58,237,.18);
  color: var(--sr-ink);
}
.sr-acc-panel{padding: 0 16px; max-height: 0; overflow:hidden; transition: max-height .22s ease}
.sr-acc-panel p{margin: 0; padding: 0 0 14px; color: var(--sr-muted); font-size: 13px}
.sr-acc.is-open .sr-acc-panel{max-height: 220px}
.sr-acc.is-open .sr-acc-ico{background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(34,211,238,.12))}

/* Download section */
.sr-download{background: linear-gradient(135deg, #2b116a 0%, #3b1689 35%, #2a0f6e 100%); padding: 56px 0}
.sr-download-box{
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  box-shadow: var(--sr-shadow2);
  padding: 22px;
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 18px;
  align-items:center;
  overflow:hidden;
}
.sr-download-actions{display:flex; gap: 12px; flex-wrap:wrap; margin-top: 16px}

.sr-phones{position:relative; height: 300px; display:flex; justify-content:center; align-items:center}
.sr-phone{
  width: 175px;
  height: 300px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 30% 20%, rgba(124,58,237,.55), rgba(34,211,238,.18)),
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 30px 90px rgba(0,0,0,.30);
  transform: rotate(-12deg);
}
.sr-phone2{
  position:absolute;
  transform: rotate(8deg);
  left: 55%;
  top: 18px;
  width: 190px;
  height: 325px;
}

/* Quotes */
.sr-quotes{display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 22px}
.sr-quote{background:#fff; border:1px solid var(--sr-border); border-radius: var(--sr-radius); box-shadow: var(--sr-shadow); padding: 18px}
.sr-quote p{margin: 10px 0 0; color: var(--sr-muted); font-size: 13px}
.sr-stars{color: var(--sr-violet); font-weight: 950; letter-spacing: .12em}
.sr-qperson{margin-top: 14px; display:flex; align-items:center; gap: 10px}
.sr-avatar{width: 34px; height: 34px; border-radius: 999px; background: linear-gradient(135deg, rgba(124,58,237,.35), rgba(34,211,238,.22)); border:1px solid rgba(2,6,23,.10)}
.sr-qsub{color: var(--sr-muted); font-size: 12px}

/* Team */
.sr-team{display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; margin-top: 22px}
.sr-person{background:#fff; border:1px solid var(--sr-border); border-radius: var(--sr-radius); box-shadow: var(--sr-shadow); padding: 16px; text-align:center}
.sr-face{height: 140px; border-radius: 16px; background: linear-gradient(135deg, rgba(124,58,237,.22), rgba(34,211,238,.10)); border:1px solid rgba(2,6,23,.08)}
.sr-person-name{margin-top: 12px; font-weight: 950; color: var(--sr-ink)}
.sr-person-role{margin-top: 4px; color: var(--sr-muted); font-size: 12px}
.sr-person .sr-btn{margin-top: 12px}

/* Blog */
.sr-blog{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 22px}
.sr-post{background:#fff; border:1px solid var(--sr-border); border-radius: var(--sr-radius); box-shadow: var(--sr-shadow); overflow:hidden}
.sr-post-media{height: 150px; background: linear-gradient(135deg, rgba(124,58,237,.35), rgba(34,211,238,.18))}
.sr-post-media2{background: linear-gradient(135deg, rgba(34,211,238,.30), rgba(124,58,237,.16))}
.sr-post-media3{background: linear-gradient(135deg, rgba(124,58,237,.26), rgba(124,58,237,.12))}
.sr-post-body{padding: 16px}
.sr-post-meta{font-size: 12px; color: var(--sr-violet); font-weight: 900; letter-spacing: .08em; text-transform: uppercase}
.sr-post h3{margin: 10px 0 8px; font-size: 14px; color: var(--sr-ink)}
.sr-post p{margin:0; color: var(--sr-muted); font-size: 13px}
.sr-post .sr-btn{margin-top: 12px; color: var(--sr-ink); background: rgba(2,6,23,.05); border-color: rgba(2,6,23,.10)}

.sr-logos{margin-top: 26px; display:flex; flex-wrap:wrap; gap: 18px; justify-content:center; color: rgba(15,23,42,.55); font-weight: 900; letter-spacing:.12em}

/* Legal */
.sr-legal{display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 22px}
.sr-legal-card{background:#fff; border:1px solid var(--sr-border); border-radius: var(--sr-radius); box-shadow: var(--sr-shadow); padding: 18px}
.sr-legal-card h3{margin:0 0 10px; font-size: 14px; color: var(--sr-ink)}
.sr-legal-card ul{margin:0; padding-left: 18px; color: var(--sr-muted); font-size: 13px}
.sr-legal-card li{margin: 8px 0}

/* Footer */
.sr-footer{background: #1a1140; color:#fff; padding: 26px 0 0}
.sr-footer-inner{display:flex; align-items:flex-start; justify-content:space-between; gap: 16px; flex-wrap:wrap}
.sr-footer-main{width:100%}
.sr-footer-brand{font-weight: 950; letter-spacing:.2px}
.sr-footer-note{margin-top: 8px; color: rgba(255,255,255,.74); font-size: 12px; max-width: 82ch}
.sr-footer-info-grid{display:grid; grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr) minmax(220px, 1fr); gap: 24px; margin-top: 14px}

.sr-footer-legal,
.sr-footer-contacts,
.sr-footer-links{font-size: 12px; color: rgba(255,255,255,.74); line-height: 1.6}
.sr-footer-legal{max-width: 92ch}
.sr-footer-legal strong,
.sr-footer-contacts strong,
.sr-footer-links strong{color: rgba(255,255,255,.92)}
.sr-footer-contacts a,
.sr-footer-links a{color: rgba(255,255,255,.82); text-decoration:none}
.sr-footer-contacts a:hover,
.sr-footer-links a:hover{text-decoration:underline}

.sr-footer-bottom{margin-top: 24px; padding: 14px 0 18px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.68); font-size: 12px}
.sr-footer-bottom .sr-container{display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap}
.sr-footer-banks{display:block; width:auto; max-height:50px; margin-left:auto}


/* Responsive */
@media (max-width: 980px){
  .sr-hero-grid{grid-template-columns: 1fr;}
  .sr-hero-art{justify-content:flex-start}
  .sr-split{grid-template-columns: 1fr;}
  .sr-download-box{grid-template-columns: 1fr;}
  .sr-faq{grid-template-columns: 1fr;}
}

@media (max-width: 860px){
  .sr-feature-row{grid-template-columns: 1fr;}
  .sr-footer-info-grid{grid-template-columns: 1fr;}
  .sr-grid-6{grid-template-columns: repeat(2, minmax(0,1fr));}
  .sr-pricing{grid-template-columns: repeat(2, minmax(0,1fr));}
  .sr-steps{grid-template-columns: 1fr;}
  .sr-team{grid-template-columns: repeat(2, minmax(0,1fr));}
  .sr-blog{grid-template-columns: 1fr;}
  .sr-quotes{grid-template-columns: 1fr;}
  .sr-legal{grid-template-columns: 1fr;}
}

@media (max-width: 720px){
  .sr-burger{display:inline-flex; align-items:center; justify-content:center}
  .sr-nav{
    position: fixed;
    top: 14px;
    right: 14px;
    left: 14px;
    z-index: 40;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 22px;
    border: none;
    background: rgba(26,17,64,.92);
    backdrop-filter: blur(10px);
    box-shadow: var(--sr-shadow2);
  }
  body.sr-menu-open .sr-nav{display:flex}
  .sr-nav a{padding: 12px 14px}
  .sr-nav a.sr-nav-cabinet{text-align:center; justify-content:center; width:100%;}
  .sr-price-top, .sr-price-intro, .sr-price-outro{min-height:0;}
}

@media (max-width: 520px){
  .sr-grid-6{grid-template-columns: 1fr;}
  .sr-pricing{grid-template-columns: 1fr;}
  .sr-team{grid-template-columns: 1fr;}
  .sr-phone2{left: 50%}
}


/* Wave dividers between blocks */
.sr-wave-divider{display:block; width:100%; height:80px; margin-top:-1px}
.sr-wave-divider-bottom{margin-top: 0}

/* Pricing toolbar */
.sr-pricing-toolbar{
  display:flex;
  align-items:stretch;
  justify-content:space-between;
  gap: 14px;
  margin: 18px 0 22px;
  flex-wrap:wrap;
}
.sr-field{
  display:flex;
  flex-direction:column;
  gap: 8px;
  min-width: 240px;
}
.sr-label{
  font-size: 12px;
  font-weight: 900;
  color: var(--sr-muted);
  letter-spacing:.2px;
}
.sr-select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  padding: 12px 44px 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--sr-border);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3.5 5.25L7 8.75L10.5 5.25' stroke='%230b1537' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 14px;
  box-shadow: var(--sr-shadow);
  font-weight: 850;
  color: var(--sr-ink);
  cursor:pointer;
}
.sr-select:focus-visible{
  outline:none;
  box-shadow: 0 0 0 4px rgba(124,58,237,.18), var(--sr-shadow);
}
.sr-ratebox{
  flex:1;
  min-width: 260px;
  border-radius: 18px;
  border: 1px solid var(--sr-border);
  background: linear-gradient(135deg, rgba(124,58,237,.10), rgba(34,211,238,.08));
  box-shadow: var(--sr-shadow);
  padding: 14px 16px;
}
.sr-rate-title{font-weight: 950; font-size: 12px; color: var(--sr-ink)}
.sr-rate-val{margin-top: 0; font-weight: 950; letter-spacing:-.2px; color: var(--sr-ink); line-height:1.45}
.sr-rate-sub{margin-top: 4px; font-size: 12px; color: var(--sr-muted)}
.sr-note{margin-top: 14px; color: var(--sr-muted); font-size: 12px}

/* Pricing money formatting */
.sr-money{display:inline-block; white-space:normal}
.sr-money-sub{display:block; margin-top:6px; font-size:12px; color: var(--sr-muted); font-weight: 800}


/* === Patch: readability, buttons, softer shadows, stable waves === */
:root{
  --sr-shadow: 0 10px 28px rgba(2,6,23,.07);
  --sr-shadow2: 0 14px 36px rgba(2,6,23,.09);
}

body.landing{background:#f6f7ff;}
.sr-lead + .sr-lead{margin-top:10px;}
.sr-lead-soft{color:rgba(255,255,255,.76);}

.sr-btn{
  color:#fff;
  text-shadow:0 1px 8px rgba(2,6,23,.30);
  box-shadow:0 10px 26px rgba(2,6,23,.12);
}
.sr-btn:hover{
  transform:translateY(-2px) scale(1.01);
  filter:brightness(1.03);
  box-shadow:0 14px 30px rgba(2,6,23,.14);
}
.sr-btn-primary,
.sr-cta .sr-btn-primary,
.sr-price .sr-btn-primary,
.sr-faq .sr-btn-primary{
  background:linear-gradient(135deg, #2b116a 0%, #6d28d9 42%, #22d3ee 100%);
  border-color:transparent;
  color:#fff;
}
.sr-btn-primary:visited{color:#fff;}
.sr-btn-ghost{color:#fff;}

.sr-card,
.sr-tile,
.sr-price,
.sr-legal-card,
.sr-quote,
.sr-person,
.sr-post,
.sr-ratebox,
.sr-select,
.sr-map-canvas,
.sr-acc{box-shadow:var(--sr-shadow)!important;}
.sr-price-featured{
  border-color:rgba(124,58,237,.28);
  box-shadow:0 12px 32px rgba(124,58,237,.12)!important;
}
.sr-mark,
.sr-iso,
.sr-iso-card,
.sr-iso-card2{box-shadow:none!important; filter:none!important;}

.sr-wave,
.sr-wave-divider{
  display:block;
  width:100%;
  height:74px;
  margin:0;
  line-height:0;
  vertical-align:middle;
  overflow:hidden;
}
.sr-wave path,
.sr-wave-divider path{shape-rendering:geometricPrecision;}
.sr-wave-divider-bottom{margin-top:0;}

.sr-pricing-toolbar{align-items:stretch;}
.sr-rate-sub{margin-top:6px;}
.sr-money-sub{font-weight:800;color:var(--sr-muted);}

.sr-legal{grid-template-columns:repeat(2, minmax(0,1fr));}

@media (max-width: 860px){
  .sr-wave,
  .sr-wave-divider{height:60px;}
}
@media (max-width: 640px){
  .sr-wave,
  .sr-wave-divider{height:52px;}
  .sr-legal{grid-template-columns:1fr;}
}

/* Wave + section spacing */
.sr-wave + .sr-section{padding-top: 54px}

svg.sr-wave{display:block}


/* === Patch: country buttons + cleaner pricing === */
.sr-head{align-items:flex-end}
.sr-head > .sr-muted{display:none}
.sr-pricing-toolbar{margin:18px 0 20px}
.sr-field-countries{width:100%; min-width:0}
.sr-country-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
}
.sr-country-btn{
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
  min-height:58px;
  padding:12px 14px;
  border-radius:18px;
  border:1px solid var(--sr-border);
  background:#fff;
  box-shadow:var(--sr-shadow);
  color:var(--sr-muted);
  cursor:pointer;
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
  text-align:left;
}
.sr-country-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(124,58,237,.24);
}
.sr-country-btn:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(124,58,237,.16), var(--sr-shadow);
}
.sr-country-btn.is-active{
  border-color:rgba(124,58,237,.34);
  background:linear-gradient(135deg, rgba(124,58,237,.11), rgba(34,211,238,.08));
  box-shadow:0 14px 30px rgba(124,58,237,.10);
}
.sr-country-flag{width:24px; height:18px; object-fit:cover; border-radius:3px; border:1px solid rgba(15,23,42,.12); flex:0 0 auto}
.sr-country-name{font-size:14px; font-weight:900; line-height:1.2}
.sr-country-empty{
  padding:14px 16px;
  border-radius:18px;
  border:1px solid var(--sr-border);
  background:#fff;
  color:var(--sr-muted);
  font-weight:800;
}
.sr-price-top{padding-right:0}
.sr-badge{
  top:16px;
  right:16px;
  padding:6px 11px;
  font-size:11px;
  letter-spacing:.02em;
}
.sr-badge-neutral{
  background:rgba(15,23,42,.05);
  border-color:rgba(15,23,42,.08);
  color:var(--sr-muted);
}
.sr-price-val{
  margin-top:12px;
  font-size:20px;
  line-height:1.25;
  letter-spacing:-.01em;
}
.sr-money{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap:6px;
}
.sr-money-part{
  white-space:nowrap;
}
.sr-money-sep{
  color:rgba(11,21,55,.42);
  font-weight:800;
}
@media (max-width: 980px){
  .sr-country-grid{grid-template-columns:repeat(3, minmax(0, 1fr));}
}
@media (max-width: 720px){
  .sr-country-grid{grid-template-columns:repeat(2, minmax(0, 1fr));}
  .sr-country-btn{min-height:54px; padding:11px 12px;}
  .sr-country-flag{width:22px; height:16px;}
  .sr-price-val{font-size:18px;}
  .sr-price-top, .sr-price-intro, .sr-price-outro{min-height:0;}
}
@media (max-width: 460px){
  .sr-country-grid{grid-template-columns:1fr;}
}

/* === Image-based landing assets === */
.sr-brand{
  display:flex;
  align-items:center;
}

.sr-brand-logo{
  display:block;
  width:auto;
  max-width:220px;
  height:56px;
  object-fit:contain;
}

.sr-hero-art{
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

.sr-hero-image,
.sr-section-image,
.sr-map-image,
.sr-wave-img{
  display:block;
  max-width:100%;
  height:auto;
}

.sr-hero-image{
  width:min(560px, 100%);
  border-radius:26px;
  box-shadow: var(--sr-shadow2);
}

.sr-about-art{
  display:flex;
  justify-content:center;
  align-items:center;
}

.sr-section-image{
  width:min(460px, 100%);
  border-radius:24px;
  box-shadow: var(--sr-shadow);
}

.sr-map-canvas{
  padding:18px;
}

.sr-map-image{
  width:100%;
  border-radius:18px;
}

.sr-wave,
.sr-wave-divider,
.sr-wave-img{
  display:block;
  width:100%;
  height:auto;
  line-height:0;
  margin:0;
}

@media (max-width: 860px){
  .sr-brand-logo{height:48px; max-width:180px;}
}

@media (max-width: 640px){
  .sr-brand-logo{height:42px; max-width:160px;}
  .sr-hero-image,
  .sr-section-image{border-radius:20px;}
}

/* === 2026-03-07 hotfix: main page image overflow / header layout === */
body.landing .sr-topbar{
  gap: 20px;
  align-items: center;
  flex-wrap: nowrap;
}

body.landing .sr-brand{
  flex: 0 0 auto;
  min-width: 0;
  max-width: min(44vw, 320px);
}

body.landing .sr-brand-logo{
  display: block !important;
  width: 100% !important;
  max-width: min(44vw, 320px) !important;
  height: auto !important;
  max-height: 84px !important;
  object-fit: contain !important;
}

body.landing .sr-nav{
  flex: 1 1 auto;
  min-width: 0;
  row-gap: 8px;
}

body.landing .sr-nav a{
  white-space: nowrap;
}

body.landing .sr-hero-grid,
body.landing .sr-split{
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
}

body.landing .sr-hero-copy,
body.landing .sr-head,
body.landing .sr-feature-row,
body.landing .sr-pricing,
body.landing .sr-grid-6,
body.landing .sr-faq,
body.landing .sr-footer-info-grid{
  min-width: 0;
}

body.landing .sr-hero-art,
body.landing .sr-about-art{
  min-width: 0;
}

body.landing .sr-hero-image,
body.landing .sr-section-image,
body.landing .sr-map-image{
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
}

body.landing .sr-hero-image{
  max-width: 560px !important;
  margin-left: auto;
}

body.landing .sr-section-image{
  max-width: 460px !important;
}

body.landing .sr-wave,
body.landing .sr-wave-divider,
body.landing .sr-wave-img{
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: cover;
}

@media (max-width: 1120px){
  body.landing .sr-nav{gap: 10px;}
  body.landing .sr-nav a{padding: 8px 9px; font-size: 15px;}
}

@media (max-width: 980px){
  body.landing .sr-brand{
    max-width: min(48vw, 280px);
  }

  body.landing .sr-brand-logo{
    max-width: min(48vw, 280px) !important;
    max-height: 72px !important;
  }

  body.landing .sr-hero-grid,
  body.landing .sr-split{
    grid-template-columns: 1fr;
  }

  body.landing .sr-hero-art{
    justify-content: center;
  }

  body.landing .sr-hero-image,
  body.landing .sr-section-image{
    margin-inline: auto;
  }
}

@media (max-width: 720px){
  body.landing .sr-topbar{
    gap: 12px;
  }

  body.landing .sr-brand{
    max-width: calc(100% - 56px);
  }

  body.landing .sr-brand-logo{
    width: auto !important;
    max-width: min(62vw, 220px) !important;
    max-height: 54px !important;
  }

  body.landing .sr-nav{
    flex: initial;
  }
  .sr-price-top, .sr-price-intro, .sr-price-outro{min-height:0;}
}

@media (max-width: 480px){
  body.landing .sr-brand-logo{
    max-width: min(64vw, 180px) !important;
    max-height: 46px !important;
  }
}


/* === 2026-03-07 hotfix v3: full replacement for desktop one-row header and adaptive logo/image === */
body.landing .sr-container{
  max-width: 1240px;
}

body.landing .sr-hero-inner{
  padding-top: 8px;
}

body.landing .sr-topbar{
  gap: 18px;
  align-items: center;
}

body.landing .sr-brand{
  flex: 0 0 auto;
  min-width: 0;
}

body.landing .sr-brand-logo{
  display: block !important;
  width: auto !important;
  height: clamp(54px, 4.6vw, 76px) !important;
  max-width: min(26vw, 430px) !important;
  max-height: none !important;
  object-fit: contain !important;
}

body.landing .sr-nav{
  min-width: 0;
}

body.landing .sr-nav a{
  line-height: 1.2;
}

body.landing .sr-hero-grid{
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
}

body.landing .sr-hero-art{
  min-width: 0;
  justify-content: flex-end;
  align-self: stretch;
}

body.landing .sr-hero-image{
  width: min(100%, 560px) !important;
  max-width: 560px !important;
  height: auto !important;
  margin-left: auto;
  object-fit: contain !important;
}

body.landing .sr-section-image{
  width: min(100%, 460px) !important;
  max-width: 460px !important;
  object-fit: contain !important;
}

@media (min-width: 981px){
  body.landing .sr-topbar{
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: clamp(20px, 3vw, 40px);
    padding-top: 20px;
    padding-bottom: 14px;
  }

  body.landing .sr-nav{
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(8px, 1.15vw, 22px);
    overflow: hidden;
  }

  body.landing .sr-nav a{
    flex: 0 1 auto;
    min-width: 0;
    white-space: nowrap;
    padding: 8px 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    font-size: clamp(14px, .98vw, 16px);
  }

  body.landing .sr-nav a:hover{
    background: transparent;
    border-color: transparent;
    color: #fff;
    opacity: .92;
  }

  body.landing .sr-nav .sr-btn,
  body.landing .sr-nav a.sr-btn{
    flex: 0 0 auto;
    margin-left: clamp(8px, 1vw, 16px);
    padding: 11px 18px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,.12);
  }
}

@media (max-width: 1180px){
  body.landing .sr-container{
    max-width: 1160px;
  }

  body.landing .sr-brand-logo{
    max-width: min(28vw, 380px) !important;
  }

  body.landing .sr-nav{
    gap: 10px;
  }

  body.landing .sr-nav a{
    font-size: 15px;
  }
}

@media (max-width: 980px){
  body.landing .sr-container{
    max-width: 1120px;
  }

  body.landing .sr-topbar{
    display: flex;
    flex-wrap: nowrap;
  }

  body.landing .sr-brand-logo{
    height: clamp(48px, 6vw, 64px) !important;
    max-width: min(42vw, 290px) !important;
  }

  body.landing .sr-hero-grid{
    grid-template-columns: 1fr;
  }

  body.landing .sr-hero-art{
    justify-content: center;
  }

  body.landing .sr-hero-image,
  body.landing .sr-section-image{
    margin-inline: auto;
  }
}

@media (max-width: 720px){
  body.landing .sr-brand{
    max-width: calc(100% - 56px);
  }

  body.landing .sr-brand-logo{
    height: clamp(42px, 8vw, 54px) !important;
    max-width: min(62vw, 230px) !important;
  }
  .sr-price-top, .sr-price-intro, .sr-price-outro{min-height:0;}
}

@media (max-width: 480px){
  body.landing .sr-brand-logo{
    max-width: min(66vw, 190px) !important;
  }
}


.sr-hero-compact .sr-wave{height:72px}
.sr-hero-inner-compact{padding-top: 14px; padding-bottom: 18px}
.sr-hero-grid-compact{align-items:center}

.sr-contact-grid{display:grid; grid-template-columns:minmax(280px, .9fr) minmax(0, 1.1fr); gap:22px; margin-top:24px}
.sr-contact-card{padding:24px; background:#fff; border:1px solid var(--sr-border); box-shadow:var(--sr-shadow)}
.sr-contact-card h3{margin:0 0 10px; font-size:22px; color:var(--sr-ink)}
.sr-contact-list{display:grid; gap:14px; margin-top:16px}
.sr-contact-item{padding:16px 18px; border-radius:16px; background:linear-gradient(135deg, rgba(91,33,182,.07), rgba(34,211,238,.08)); border:1px solid rgba(91,33,182,.10)}
.sr-contact-label{font-size:12px; text-transform:uppercase; letter-spacing:.08em; font-weight:900; color:var(--sr-violet); margin-bottom:6px}
.sr-contact-item a{font-weight:800; color:var(--sr-ink); text-decoration:none}
.sr-contact-item a:hover{text-decoration:underline}
.sr-contact-form-text{margin-bottom:16px}
.sr-contact-form{margin-top:12px}
.sr-contact-form-grid{display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:16px; margin-bottom:18px}
.sr-contact-form label{display:flex; flex-direction:column; gap:8px; font-weight:700; color:var(--sr-ink)}
.sr-contact-form label.sr-consent-item{flex-direction:row; align-items:center; gap:10px; font-weight:400; color:var(--sr-muted)}
.sr-contact-form input, .sr-contact-form textarea, .sr-contact-form select{width:100%; border:1px solid var(--sr-border); border-radius:16px; padding:14px 16px; font:inherit; color:var(--sr-ink); background:#fff; box-shadow:var(--sr-shadow)}
.sr-contact-form input:focus, .sr-contact-form textarea:focus, .sr-contact-form select:focus{outline:none; border-color:rgba(91,33,182,.45); box-shadow:0 0 0 4px rgba(124,58,237,.10)}
.sr-contact-form textarea{resize:vertical; min-height:140px}
.sr-contact-form-full{grid-column:1 / -1}
.sr-form-alert{margin:14px 0 0; padding:14px 16px; border-radius:16px; font-weight:700}
.sr-form-alert-success{background:rgba(34,197,94,.12); color:#166534; border:1px solid rgba(34,197,94,.22)}
.sr-form-alert-error{background:rgba(239,68,68,.10); color:#991b1b; border:1px solid rgba(239,68,68,.18)}
.sr-consent-list{margin:14px 0; display:grid; gap:8px}
.sr-consent-list-compact{margin:0 0 12px}
.sr-consent-item{display:flex; align-items:center; gap:10px; color:var(--sr-muted); font-size:14px; line-height:1.45}
.sr-consent-item input[type="checkbox"]{
  margin:0;
  width:16px;
  height:16px;
  min-width:16px;
  flex:0 0 16px;
  display:inline-block;
}
.sr-consent-item a{color:var(--sr-ink); text-decoration:underline}
.sr-cart-confirm-form{display:grid; gap:10px}

@media (max-width: 860px){
  .sr-contact-grid{grid-template-columns:1fr}
}
@media (max-width: 720px){
  .sr-contact-form-grid{grid-template-columns:1fr}
  .sr-price-top, .sr-price-intro, .sr-price-outro{min-height:0;}
}





/* === UX patch: flat white buttons, no text shadows, cart/order layout, floating actions === */
body.landing,
body.landing *{
  text-shadow: none !important;
}

body.landing .sr-btn,
body.landing .sr-btn:hover,
body.landing .sr-btn:focus-visible{
  box-shadow: none;
}

body.landing .sr-btn-primary{
  text-shadow: none;
}

body.landing .sr-btn-ghost,
body.landing a.sr-btn-ghost,
body.landing button.sr-btn-ghost{
  box-shadow: none !important;
  border: 1px solid rgba(2,6,23,.14);
}

/* Cart layout */
.sr-cart-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:20px;
  align-items:stretch;
}
.sr-cart-actions form{
  display:flex;
}
.sr-cart-actions .sr-btn{
  min-height:46px;
}
.sr-cart-empty .sr-text{
  margin: 10px 0 16px;
}

/* User cabinet order card */
.sr-order-head{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.sr-order-meta{
  margin-top:4px;
  overflow-wrap:anywhere;
}
.sr-order-key{
  margin-top:8px;
  padding:10px 12px;
  border:1px solid rgba(2,6,23,.12);
  border-radius:12px;
  background:#fff;
  white-space:pre-wrap;
  overflow-wrap:anywhere;
  word-break:break-word;
  display:block;
}

/* Floating controls */
.sr-fab-stack{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:90;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.sr-fab{
  width:48px;
  height:48px;
  border-radius:999px;
  border:1px solid rgba(2,6,23,.16);
  background:#ffffff;
  color:#0f172a;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  box-shadow:none;
}
.sr-fab:hover{
  background:#f8fafc;
}
.sr-fab-cart{
  position:relative;
}
.sr-fab-badge{
  position:absolute;
  right:-3px;
  top:-3px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:#ef4444;
  color:#fff;
  font-size:11px;
  line-height:18px;
  text-align:center;
  border:1px solid #fff;
}

@media (max-width: 640px){
  .sr-fab-stack{
    right:12px;
    bottom:12px;
  }
}
.sr-fab-cart{
  position:relative;
  color:#334155;
}
.sr-fab-cart-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
  line-height:1;
}
.sr-fab-cart-icon svg{
  display:block;
}
.sr-fab-badge{
  position:absolute;
  right:-4px;
  top:-4px;
  min-width:18px;
  height:18px;
  padding:0 4px;
  border-radius:999px;
  background:#ef4444;
  color:#fff;
  font-size:11px;
  font-weight:800;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid #fff;
  box-sizing:border-box;
}



/* === 2026-03-07 mobile overflow stabilization === */
html,
body.landing{
  max-width:100%;
  overflow-x:hidden;
}

body.landing .sr-hero,
body.landing .sr-section,
body.landing .sr-footer{
  overflow-x:clip;
}

body.landing img,
body.landing svg{
  max-width:100%;
  height:auto;
}

body.landing .sr-hero-grid > *,
body.landing .sr-split > *,
body.landing .sr-footer-bottom .sr-container > *{
  min-width:0;
}

@media (max-width: 760px){
  body.landing .sr-container{
    padding-left:14px;
    padding-right:14px;
  }

  body.landing .sr-topbar{
    gap:10px;
  }

  body.landing .sr-brand-logo{
    width:auto !important;
    max-width:min(72vw, 220px) !important;
    max-height:52px !important;
    height:auto !important;
  }

  body.landing .sr-hero-grid,
  body.landing .sr-split{
    grid-template-columns:1fr !important;
    gap:16px;
  }

  body.landing .sr-hero-art,
  body.landing .sr-about-art{
    justify-content:center !important;
    width:100%;
  }

  body.landing .sr-hero-image,
  body.landing .sr-section-image,
  body.landing .sr-map-image{
    width:100% !important;
    max-width:100% !important;
    margin:0 auto;
  }

  body.landing .sr-footer-bottom .sr-container{
    justify-content:flex-start;
    gap:10px;
  }

  body.landing .sr-footer-banks{
    margin-left:0;
    max-height:36px;
    max-width:100%;
  }
}







/* === Anti-seam fix for SVG wave transitions === */
body.landing .sr-wave,
body.landing .sr-wave-divider,
body.landing .sr-wave-img{
  position:relative;
  z-index:2;
  display:block;
  line-height:0;
  vertical-align:top;
  overflow:hidden;
  margin-top:-1px;
  margin-bottom:-1px;
}

body.landing .sr-wave path,
body.landing .sr-wave-divider path{
  shape-rendering:geometricPrecision;
}

body.landing .sr-wave + .sr-section,
body.landing .sr-wave-divider + .sr-section,
body.landing .sr-wave + .sr-footer,
body.landing .sr-wave-divider + .sr-footer{
  position:relative;
  z-index:1;
}





/* Fix: hide top seam between divider and dark map section */
body.landing .sr-wave-divider + .sr-map{
  margin-top: -2px;
}


/* Cookie consent */
body.landing .sr-cookie-consent{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: min(420px, calc(100vw - 24px));
  z-index: 1200;
  background: #ffffff;
  border: 1px solid var(--sr-border);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(2,6,23,.18);
  padding: 14px;
}
body.landing .sr-cookie-title{
  font-size: 16px;
  font-weight: 900;
  color: var(--sr-ink);
}
body.landing .sr-cookie-text{
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--sr-muted);
}
body.landing .sr-cookie-actions{
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
body.landing .sr-cookie-actions .sr-btn{
  min-height: 38px;
  padding: 9px 14px;
}
body.landing .sr-cookie-actions .sr-btn-ghost{
  color: var(--sr-ink);
  background: rgba(2,6,23,.05);
  border-color: rgba(2,6,23,.12);
  text-shadow: none;
}
body.landing .sr-cookie-modal{
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
}
body.landing .sr-cookie-modal.is-open{display:block;}
body.landing .sr-cookie-modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,.52);
}
body.landing .sr-cookie-modal__dialog{
  position: relative;
  width: min(760px, calc(100vw - 24px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--sr-border);
  box-shadow: 0 24px 60px rgba(2,6,23,.24);
  padding: 18px;
  overflow: auto;
}
body.landing .sr-cookie-modal__dialog h3{
  margin: 0;
  font-size: 22px;
  color: var(--sr-ink);
}
body.landing .sr-cookie-modal__content{
  margin-top: 12px;
  color: var(--sr-muted);
  font-size: 14px;
  line-height: 1.6;
}
body.landing .sr-cookie-modal__content ul{margin: 8px 0 8px 20px;}
body.landing .sr-cookie-modal__close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(2,6,23,.16);
  background: #fff;
  color: var(--sr-ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 640px){
  body.landing .sr-cookie-consent{right: 10px; bottom: 10px; width: calc(100vw - 20px);}
}


