/* =========================================================================
   BulldoshkaVPN — site stylesheet
   Rebrand of the original site structure/behavior under new brand identity.
   Palette, type and iconography follow BulldoshkaVPN_BRANDBOOK_v1.0.
   Colors are centralized in CSS variables (brandbook governance rule 03).
   ========================================================================= */

:root{
  /* --- Brandbook palette (Section 06/07) --- */
  --bg:#030507;                 /* Void Black */
  --panel:rgba(8,20,24,.72);    /* Cyber Panel, translucent */
  --panel2:rgba(4,12,15,.88);   /* Cyber Panel, deeper */
  --line:rgba(0,245,196,.24);   /* hairline border, mint-tinted */
  --mint:#00f5c4;                /* Neon Mint — primary accent */
  --mint2:#55ffd9;               /* Aqua Glow — lighter mint */
  --violet:#8b2cff;              /* Cyber Violet — secondary accent */
  --cyan:#19d7ff;                /* Signal Cyan — tertiary accent */
  --text:#f5fffc;                /* Ice White */
  --muted:#a8c5be;               /* Muted Steel */
  --shadow:0 0 35px rgba(0,245,196,.30);
  --shadow-violet:0 0 35px rgba(139,44,255,.30);

  --font-ui:'Manrope',system-ui,-apple-system,'Segoe UI',Roboto,Arial,sans-serif;
  --font-heading:'Oswald','Manrope',system-ui,sans-serif;
  --font-mono:'JetBrains Mono','Space Mono',ui-monospace,Consolas,monospace;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 70% 5%, rgba(0,245,196,.14), transparent 34%),
    radial-gradient(circle at 20% 55%, rgba(139,44,255,.10), transparent 36%),
    var(--bg);
  color:var(--text);
  font-family:var(--font-ui);
  font-feature-settings:'kern' 1,'liga' 1,'calt' 1;
  text-rendering:geometricPrecision;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
  max-width:100%;
}
a{color:inherit;text-decoration:none}
a,button{-webkit-tap-highlight-color:transparent}
html,body{width:100%;max-width:100%;overflow-x:hidden}

/* ---------- Ambient background layers ---------- */
#hexField{position:fixed;inset:0;width:100%;height:100%;z-index:-4;background:var(--bg)}
.noise{
  position:fixed;inset:0;z-index:-2;opacity:.07;pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.12) 1px,transparent 1px);
  background-size:80px 80px;
  mask-image:linear-gradient(to bottom,transparent,#000 18%,#000 88%,transparent);
}
.aurora{position:fixed;z-index:-3;filter:blur(45px);opacity:.40;border-radius:999px;pointer-events:none}
.aurora-a{width:520px;height:520px;background:var(--mint);right:-180px;top:80px;animation:float 12s ease-in-out infinite}
.aurora-b{width:460px;height:460px;background:var(--violet);left:-160px;bottom:10%;animation:float 15s ease-in-out infinite reverse}
@keyframes float{50%{transform:translate3d(30px,-35px,0) scale(1.08)}}

/* ---------- Topbar ---------- */
.topbar{
  height:82px;display:flex;align-items:center;justify-content:space-between;
  padding:0 clamp(22px,6vw,88px);
  border-bottom:1px solid rgba(0,245,196,.14);
  background:rgba(2,4,6,.72);backdrop-filter:blur(18px);
  position:sticky;top:0;z-index:20;
}
.brand{display:flex;gap:14px;align-items:center;font-weight:800;font-size:20px;font-family:var(--font-heading);letter-spacing:-.02em}
.brand-mark{
  width:58px;height:58px;min-width:58px;border-radius:50%;overflow:hidden;
  display:flex;align-items:center;justify-content:center;background:transparent;
}
.brand-mark img{width:100%;height:100%;object-fit:cover;object-position:center center;border-radius:50%;transition:transform .35s ease}
.brand:hover .brand-mark img{transform:scale(1.05)}
.nav{display:flex;gap:34px;font-size:14px;font-weight:600}
.nav a{color:#d7e7e3}
.nav a:hover{color:var(--mint)}
.top-actions{display:flex;align-items:center;gap:16px}
.telegram{
  width:44px;height:44px;border-radius:50%;display:grid;place-items:center;
  background:linear-gradient(135deg,#35c7ff,#1488ff);color:#fff;
  box-shadow:0 0 22px rgba(20,136,255,.38), inset 0 1px 0 rgba(255,255,255,.26);
  transition:transform .24s ease, box-shadow .24s ease, filter .24s ease;
}
.telegram svg{width:22px;height:22px;fill:#fff;transform:translateX(-1px)}
.telegram:hover{transform:translateY(-2px) scale(1.06);box-shadow:0 0 30px rgba(20,136,255,.55),0 0 54px rgba(20,136,255,.22)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:12px;
  border-radius:18px;font-weight:800;font-family:var(--font-heading);
  border:1px solid rgba(255,255,255,.12);
  transition:.25s transform,.25s box-shadow,.25s background;
}
.btn:hover{transform:translateY(-2px)}
.btn-small{
  height:48px;padding:0 24px;min-width:190px;white-space:nowrap;
  background:linear-gradient(135deg,#7dffe6,var(--mint) 60%,#00c9a0);
  color:#02110d;box-shadow:0 0 30px rgba(0,245,196,.34);
}

/* ---------- Section paddings ---------- */
.section-pad{padding:74px clamp(22px,6vw,88px)}
.section-tight{padding:24px clamp(22px,6vw,88px)}

/* ---------- Hero ---------- */
.hero{
  min-height:calc(100vh - 82px);
  display:grid;grid-template-columns:minmax(0,1fr) minmax(420px,.95fr);
  align-items:center;gap:32px;padding-top:52px;position:relative;
}
.hero>*{position:relative;z-index:2}
.pill{
  width:max-content;max-width:100%;padding:13px 20px;border:1px solid var(--line);
  border-radius:999px;background:rgba(0,245,196,.08);box-shadow:0 0 28px rgba(0,245,196,.10);
  font-weight:700;font-size:14px;font-family:var(--font-mono);letter-spacing:.01em;
}
.pill span{display:inline-block;width:10px;height:10px;background:var(--mint);border-radius:50%;box-shadow:0 0 18px var(--mint);margin-right:10px}
.hero h1{
  font-family:var(--font-heading);font-weight:700;
  font-size:clamp(48px,7vw,94px);line-height:.93;margin:30px 0 22px;letter-spacing:-.03em;
}
.hero h1 em,.section-title em{
  font-style:normal;color:var(--mint);text-shadow:0 0 28px rgba(0,245,196,.45);
}
.lead{font-size:clamp(19px,2.1vw,27px);line-height:1.55;color:#d6e8e3;max-width:760px;font-weight:500}
.hero-badges{display:flex;flex-wrap:wrap;gap:12px;margin:28px 0}
.hero-badges span{
  font-size:14px;font-weight:700;color:#eafffa;padding:10px 13px;border:1px solid var(--line);
  border-radius:999px;background:rgba(2,10,10,.5);
}
.hero-actions{display:flex;gap:20px;flex-wrap:wrap;margin-top:34px}
.btn-main{
  min-height:66px;padding:0 34px;font-family:var(--font-heading);
  background:linear-gradient(135deg,#a6fff0,var(--mint) 55%,#00c9a0);
  color:#02110d;box-shadow:0 0 42px rgba(0,245,196,.38);font-size:17px;
}
.btn-glass{
  min-height:66px;padding:0 34px;font-family:var(--font-heading);
  background:rgba(8,15,17,.72);box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);color:#fff;font-size:17px;
}
.btn-main:hover{box-shadow:0 0 54px rgba(0,245,196,.5)}
.btn-glass:hover{box-shadow:inset 0 0 0 1px rgba(0,245,196,.35)}
.btn b{transition:transform .25s ease}
.btn:hover b{transform:translateX(4px)}

.micro-card{
  margin-top:34px;display:flex;gap:16px;align-items:center;width:min(360px,100%);
  padding:18px;border:1px solid var(--line);border-radius:18px;
  background:linear-gradient(135deg,rgba(0,245,196,.08),rgba(4,12,15,.55));
  box-shadow:0 0 35px rgba(0,0,0,.32);
}
.micro-icon{
  position:relative;width:60px;height:60px;min-width:60px;border-radius:50%;overflow:hidden;
  border:1px solid rgba(139,44,255,.36);
  box-shadow:0 0 16px rgba(139,44,255,.24),0 0 30px rgba(0,245,196,.10);
}
.micro-icon::before{
  content:"";position:absolute;inset:0;border-radius:50%;
  background:repeating-conic-gradient(from -90deg,var(--violet) 0deg 2.4deg,transparent 2.4deg 12deg);
  -webkit-mask-image:radial-gradient(circle,transparent 0 60%,#000 61% 72%,transparent 73% 100%);
  mask-image:radial-gradient(circle,transparent 0 60%,#000 61% 72%,transparent 73% 100%);
  filter:drop-shadow(0 0 5px rgba(139,44,255,.4));
}
.micro-icon::after{
  content:"60s";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  color:var(--mint);font-family:var(--font-heading);font-size:14px;font-weight:700;
  letter-spacing:-.02em;text-shadow:0 0 8px rgba(0,245,196,.45);
}
.micro-card small{display:block;color:var(--muted);margin-top:4px}
.micro-card strong{font-family:var(--font-heading)}

/* ---------- Hero visual: cyber globe ---------- */
.hero-visual{min-height:610px;display:flex;align-items:center;justify-content:center;position:relative}
.globe{
  width:min(680px,80vw);aspect-ratio:1;position:relative;
  background:
    radial-gradient(circle at 46% 40%, rgba(0,245,196,.10), rgba(0,0,0,.04) 40%, transparent 72%),
    url('/assets/globe-light.svg') center/contain no-repeat;
  filter:saturate(1.05) contrast(1.08) brightness(.92) drop-shadow(0 0 24px rgba(0,245,196,.22));
  animation:globeFloat 8s ease-in-out infinite;
}
@keyframes globeFloat{0%,100%{transform:translateY(0) scale(1)}50%{transform:translateY(-10px) scale(1.012)}}
.globe-label{
  position:absolute;left:50%;top:51%;transform:translate(-50%,-50%);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  opacity:.92;mix-blend-mode:screen;pointer-events:none;z-index:4;
}
.globe-label strong{
  font-family:var(--font-heading);font-weight:700;color:var(--mint);
  font-size:clamp(44px,5.6vw,80px);line-height:.9;letter-spacing:-.03em;
  text-shadow:0 0 10px rgba(0,245,196,.6),0 0 26px rgba(0,245,196,.30);
}
.node{
  position:absolute;width:22px;height:22px;
  clip-path:polygon(50% 0,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);
  border:1.5px solid var(--mint);background:rgba(0,245,196,.08);
  box-shadow:0 0 14px rgba(0,245,196,.45);opacity:.65;
}
.node.node-violet{border-color:var(--violet);box-shadow:0 0 14px rgba(139,44,255,.5);background:rgba(139,44,255,.08)}
.n1{top:16%;left:20%}
.n2{top:30%;right:12%}
.n3{bottom:20%;right:22%;width:16px;height:16px}
.n4{bottom:35%;left:10%;width:16px;height:16px}

/* ---------- Platforms row ---------- */
.platform-row{
  border:1px solid rgba(255,255,255,.10);border-radius:18px;background:rgba(6,13,15,.68);
  backdrop-filter:blur(14px);box-shadow:0 0 40px rgba(0,0,0,.3);
  display:flex;justify-content:space-around;gap:18px;flex-wrap:wrap;padding:24px;
}
.platform{display:inline-flex;align-items:center;gap:12px;font-weight:700;color:#eaf6f3;font-family:var(--font-heading)}
.platform::before{
  content:"";width:24px;height:24px;display:inline-block;flex:0 0 24px;
  background:#eafffa;opacity:.95;border-radius:0;
  -webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;
  -webkit-mask-size:contain;mask-size:contain;
}
.platform.apple::before,.platform.mac::before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 384 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.2-39.2.6-75.5 22.8-95.7 58.1-41.1 71.2-10.5 176.6 29 234.5 19.5 28.1 42.7 59.8 73.1 58.6 29.3-1.2 40.4-18.9 75.8-18.9 35.2 0 45.6 18.9 76.5 18.3 31.7-.6 51.7-28.7 71-56.9 22.4-32.7 31.6-64.4 32-66-0.7-.3-61.6-23.6-62.1-93.8zM260.4 102.6c16.2-19.6 27.1-46.8 24.1-73.9-23.3.9-51.5 15.5-68.3 35.1-15 17.3-28.2 45-24.6 71.5 26 2 52.6-13.2 68.8-32.7z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 384 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.2-39.2.6-75.5 22.8-95.7 58.1-41.1 71.2-10.5 176.6 29 234.5 19.5 28.1 42.7 59.8 73.1 58.6 29.3-1.2 40.4-18.9 75.8-18.9 35.2 0 45.6 18.9 76.5 18.3 31.7-.6 51.7-28.7 71-56.9 22.4-32.7 31.6-64.4 32-66-0.7-.3-61.6-23.6-62.1-93.8zM260.4 102.6c16.2-19.6 27.1-46.8 24.1-73.9-23.3.9-51.5 15.5-68.3 35.1-15 17.3-28.2 45-24.6 71.5 26 2 52.6-13.2 68.8-32.7z'/%3E%3C/svg%3E")}
.platform.android::before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 576 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M420.6 301.9c0 16.1-13 29.1-29.1 29.1s-29.1-13-29.1-29.1 13-29.1 29.1-29.1 29.1 13 29.1 29.1zm-236.1-29.1c-16.1 0-29.1 13-29.1 29.1s13 29.1 29.1 29.1 29.1-13 29.1-29.1-13-29.1-29.1-29.1zM524.3 64.6 465.8 166c47.1 33.6 78.2 88.6 78.2 150.9v35.1c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32v-35.1c0-62.3 31.1-117.3 78.2-150.9L51.7 64.6c-2.2-3.8-.9-8.7 2.9-10.9s8.7-.9 10.9 2.9l59.1 102.4C172.6 130.2 228.7 114 288 114s115.4 16.2 163.4 45L510.5 56.6c2.2-3.8 7.1-5.1 10.9-2.9s5.1 7.1 2.9 10.9z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 576 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M420.6 301.9c0 16.1-13 29.1-29.1 29.1s-29.1-13-29.1-29.1 13-29.1 29.1-29.1 29.1 13 29.1 29.1zm-236.1-29.1c-16.1 0-29.1 13-29.1 29.1s13 29.1 29.1 29.1 29.1-13 29.1-29.1-13-29.1-29.1-29.1zM524.3 64.6 465.8 166c47.1 33.6 78.2 88.6 78.2 150.9v35.1c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32v-35.1c0-62.3 31.1-117.3 78.2-150.9L51.7 64.6c-2.2-3.8-.9-8.7 2.9-10.9s8.7-.9 10.9 2.9l59.1 102.4C172.6 130.2 228.7 114 288 114s115.4 16.2 163.4 45L510.5 56.6c2.2-3.8 7.1-5.1 10.9-2.9s5.1 7.1 2.9 10.9z'/%3E%3C/svg%3E")}
.platform.windows::before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 93.7 183.6 68.5v177.4H0V93.7zm0 324.6 183.6 25.2V268.4H0v149.9zM203.8 445.8 448 479.4v-211H203.8v177.4zm0-380.3v180.4H448V32.6L203.8 65.5z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 93.7 183.6 68.5v177.4H0V93.7zm0 324.6 183.6 25.2V268.4H0v149.9zM203.8 445.8 448 479.4v-211H203.8v177.4zm0-380.3v180.4H448V32.6L203.8 65.5z'/%3E%3C/svg%3E")}
.platform.linux::before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M220.8 96c-48.8 0-90.8 39.3-90.8 101.3 0 25.1-7.6 53.9-23.2 82.7L78.4 332.5c-18.8 34.6 1.5 76.1 39.8 82.2 20.6 3.3 40.2-4.4 52.7-19.4 12.5 15.1 31.4 24.7 52.6 24.7 21.3 0 40.3-9.7 52.8-24.9 12.6 14.8 32.1 22.4 52.5 19.1 38.2-6.2 58.4-47.6 39.6-82.1L340 280c-15.6-28.8-23.2-57.6-23.2-82.7C316.8 135.3 269.6 96 220.8 96zm-36 96a20 20 0 1 1 0 40 20 20 0 0 1 0-40zm72 0a20 20 0 1 1 0 40 20 20 0 0 1 0-40z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M220.8 96c-48.8 0-90.8 39.3-90.8 101.3 0 25.1-7.6 53.9-23.2 82.7L78.4 332.5c-18.8 34.6 1.5 76.1 39.8 82.2 20.6 3.3 40.2-4.4 52.7-19.4 12.5 15.1 31.4 24.7 52.6 24.7 21.3 0 40.3-9.7 52.8-24.9 12.6 14.8 32.1 22.4 52.5 19.1 38.2-6.2 58.4-47.6 39.6-82.1L340 280c-15.6-28.8-23.2-57.6-23.2-82.7C316.8 135.3 269.6 96 220.8 96zm-36 96a20 20 0 1 1 0 40 20 20 0 0 1 0-40zm72 0a20 20 0 1 1 0 40 20 20 0 0 1 0-40z'/%3E%3C/svg%3E")}
.platform.router::before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 640 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M96 320h448c35.3 0 64 28.7 64 64v32c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64v-32c0-35.3 28.7-64 64-64zm64 64a32 32 0 1 0 0 64 32 32 0 0 0 0-64zm112 16c-8.8 0-16 7.2-16 16s7.2 16 16 16h224c8.8 0 16-7.2 16-16s-7.2-16-16-16H272zM224 256c0-53 43-96 96-96s96 43 96 96h48c0-79.5-64.5-144-144-144S176 176.5 176 256h48zm-96 0C128 149.9 213.9 64 320 64s192 85.9 192 192h48C560 123.5 452.5 16 320 16S80 123.5 80 256h48z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 640 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M96 320h448c35.3 0 64 28.7 64 64v32c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64v-32c0-35.3 28.7-64 64-64zm64 64a32 32 0 1 0 0 64 32 32 0 0 0 0-64zm112 16c-8.8 0-16 7.2-16 16s7.2 16 16 16h224c8.8 0 16-7.2 16-16s-7.2-16-16-16H272zM224 256c0-53 43-96 96-96s96 43 96 96h48c0-79.5-64.5-144-144-144S176 176.5 176 256h48zm-96 0C128 149.9 213.9 64 320 64s192 85.9 192 192h48C560 123.5 452.5 16 320 16S80 123.5 80 256h48z'/%3E%3C/svg%3E")}
.platform:hover::before{background:var(--mint);filter:drop-shadow(0 0 10px rgba(0,245,196,.5));transform:scale(1.08);transition:.25s ease}

/* ---------- Section titles ---------- */
.section-title{text-align:center;margin-bottom:42px}
.section-title h2,.trust h2,.cta h2{
  font-family:var(--font-heading);font-weight:700;
  font-size:clamp(32px,4vw,52px);line-height:1;margin:0 0 14px;letter-spacing:-.02em;
}
.section-title p{color:var(--muted);font-size:18px}

/* ---------- Benefit cards ---------- */
.cards{display:grid;grid-template-columns:repeat(6,1fr);gap:16px}
.card{
  min-height:250px;padding:28px 22px;border:1px solid var(--line);border-radius:22px;
  background:linear-gradient(180deg,rgba(0,245,196,.06),rgba(4,12,15,.75));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);transition:.25s transform,.25s box-shadow;
}
.card:hover{transform:translateY(-8px);box-shadow:0 0 45px rgba(0,245,196,.18)}
.card h3{font-family:var(--font-heading);font-size:21px;line-height:1.14;margin:18px 0 10px;letter-spacing:-.01em}
.card p{color:#c9dcd6;line-height:1.55}
.card .icon{
  width:64px;height:64px;position:relative;display:grid;place-items:center;
  clip-path:polygon(25% 4%,75% 4%,96% 50%,75% 96%,25% 96%,4% 50%);
}
.card:nth-child(odd) .icon{
  background:radial-gradient(circle at 32% 24%,rgba(255,255,255,.30),transparent 22%),linear-gradient(145deg,var(--mint2),var(--mint) 60%,#00a884);
  box-shadow:0 0 22px rgba(0,245,196,.36),inset 0 1px 0 rgba(255,255,255,.30);
}
.card:nth-child(even) .icon{
  background:radial-gradient(circle at 32% 24%,rgba(255,255,255,.28),transparent 22%),linear-gradient(145deg,#b98bff,var(--violet) 60%,#5b12b8);
  box-shadow:0 0 22px rgba(139,44,255,.36),inset 0 1px 0 rgba(255,255,255,.28);
}
.card .icon::after{
  content:"";width:32px;height:32px;display:block;background:#04110d;
  -webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;
  -webkit-mask-size:contain;mask-size:contain;
}
.rocket::after{-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.7 3.2c2.8-.8 5.5-.4 7.1.1.5 1.6.9 4.3.1 7.1-.9 3.1-3.2 6.4-8.2 9.1l-2.2-2.2-3.4 3.4c-.5.5-1.4.2-1.4-.6v-3.2H2.5c-.8 0-1.1-.9-.6-1.4l3.4-3.4-2.2-2.2c2.7-5 6-7.3 9.1-8.2Zm2.9 6.2a2 2 0 1 0-2.8-2.8 2 2 0 0 0 2.8 2.8Z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.7 3.2c2.8-.8 5.5-.4 7.1.1.5 1.6.9 4.3.1 7.1-.9 3.1-3.2 6.4-8.2 9.1l-2.2-2.2-3.4 3.4c-.5.5-1.4.2-1.4-.6v-3.2H2.5c-.8 0-1.1-.9-.6-1.4l3.4-3.4-2.2-2.2c2.7-5 6-7.3 9.1-8.2Zm2.9 6.2a2 2 0 1 0-2.8-2.8 2 2 0 0 0 2.8 2.8Z'/%3E%3C/svg%3E")}
.shield-icon::after{-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 4.5 5.2v5.6c0 5 3.2 9.7 7.5 11.2 4.3-1.5 7.5-6.2 7.5-11.2V5.2L12 2Zm4.2 7.4-5 5.2c-.4.4-1 .4-1.4 0l-2-2.1a1 1 0 0 1 1.4-1.4l1.3 1.3 4.3-4.4a1 1 0 1 1 1.4 1.4Z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 4.5 5.2v5.6c0 5 3.2 9.7 7.5 11.2 4.3-1.5 7.5-6.2 7.5-11.2V5.2L12 2Zm4.2 7.4-5 5.2c-.4.4-1 .4-1.4 0l-2-2.1a1 1 0 0 1 1.4-1.4l1.3 1.3 4.3-4.4a1 1 0 1 1 1.4 1.4Z'/%3E%3C/svg%3E")}
.lock::after{-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10V8a5 5 0 0 1 10 0v2h1a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h1Zm2 0h6V8a3 3 0 0 0-6 0v2Zm3 4a1.6 1.6 0 0 0-.8 3v1.3a.8.8 0 0 0 1.6 0V17a1.6 1.6 0 0 0-.8-3Z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10V8a5 5 0 0 1 10 0v2h1a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h1Zm2 0h6V8a3 3 0 0 0-6 0v2Zm3 4a1.6 1.6 0 0 0-.8 3v1.3a.8.8 0 0 0 1.6 0V17a1.6 1.6 0 0 0-.8-3Z'/%3E%3C/svg%3E")}
.eye::after{-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.4 12S5.8 5.8 12 5.8 21.6 12 21.6 12 18.2 18.2 12 18.2 2.4 12 2.4 12Zm9.6 3.4a3.4 3.4 0 1 0 0-6.8 3.4 3.4 0 0 0 0 6.8Zm0-2a1.4 1.4 0 1 1 0-2.8 1.4 1.4 0 0 1 0 2.8Z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.4 12S5.8 5.8 12 5.8 21.6 12 21.6 12 18.2 18.2 12 18.2 2.4 12 2.4 12Zm9.6 3.4a3.4 3.4 0 1 0 0-6.8 3.4 3.4 0 0 0 0 6.8Zm0-2a1.4 1.4 0 1 1 0-2.8 1.4 1.4 0 0 1 0 2.8Z'/%3E%3C/svg%3E")}
.globe-icon::after{-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm6.9 9h-3.1a15.7 15.7 0 0 0-1.2-5.1A8 8 0 0 1 18.9 11ZM12 4c.7 1 1.5 3.2 1.8 7h-3.6C10.5 7.2 11.3 5 12 4Zm-2.6 1.9A15.7 15.7 0 0 0 8.2 11H5.1a8 8 0 0 1 4.3-5.1ZM5.1 13h3.1c.2 2 .6 3.8 1.2 5.1A8 8 0 0 1 5.1 13ZM12 20c-.7-1-1.5-3.2-1.8-7h3.6c-.3 3.8-1.1 6-1.8 7Zm2.6-1.9c.6-1.3 1-3.1 1.2-5.1h3.1a8 8 0 0 1-4.3 5.1Z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm6.9 9h-3.1a15.7 15.7 0 0 0-1.2-5.1A8 8 0 0 1 18.9 11ZM12 4c.7 1 1.5 3.2 1.8 7h-3.6C10.5 7.2 11.3 5 12 4Zm-2.6 1.9A15.7 15.7 0 0 0 8.2 11H5.1a8 8 0 0 1 4.3-5.1ZM5.1 13h3.1c.2 2 .6 3.8 1.2 5.1A8 8 0 0 1 5.1 13ZM12 20c-.7-1-1.5-3.2-1.8-7h3.6c-.3 3.8-1.1 6-1.8 7Zm2.6-1.9c.6-1.3 1-3.1 1.2-5.1h3.1a8 8 0 0 1-4.3 5.1Z'/%3E%3C/svg%3E")}
.support-icon::after{-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 0 0-10 10v4a3 3 0 0 0 3 3h1a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2H4.1a8 8 0 0 1 15.8 0H18a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h1v.2c0 .9-.7 1.6-1.6 1.6H14a1 1 0 0 0 0 2h3.4A3.6 3.6 0 0 0 21 19.2V19a3 3 0 0 0 1-2.2V12A10 10 0 0 0 12 2Z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 0 0-10 10v4a3 3 0 0 0 3 3h1a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2H4.1a8 8 0 0 1 15.8 0H18a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h1v.2c0 .9-.7 1.6-1.6 1.6H14a1 1 0 0 0 0 2h3.4A3.6 3.6 0 0 0 21 19.2V19a3 3 0 0 0 1-2.2V12A10 10 0 0 0 12 2Z'/%3E%3C/svg%3E")}

/* ---------- Tariffs (infinite marquee — JS in tariffs-all-devices.js clones cards) ---------- */
#tariffs.tariffs-v2{
  width:100vw;max-width:100vw;margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);
  padding:58px 0 56px;overflow:hidden;
}
#tariffs .tariff-head{max-width:820px;margin:0 auto 32px;padding:0 20px;text-align:center}
#tariffs .tariff-head h2{margin:0 0 12px;font-family:var(--font-heading);font-weight:700;font-size:clamp(38px,4vw,64px);line-height:.95;letter-spacing:-.02em;color:var(--text)}
#tariffs .tariff-head p{margin:0 auto;max-width:760px;color:var(--muted);font-size:17px;line-height:1.55}

#tariffs .tariff-marquee{
  width:100vw;max-width:100vw;margin:0;padding:6px 0 18px;overflow-x:auto;overflow-y:hidden;
  -webkit-overflow-scrolling:touch;overscroll-behavior-x:contain;touch-action:pan-x;cursor:grab;
  background:transparent;border:0;
}
#tariffs .tariff-marquee:active{cursor:grabbing}
#tariffs .tariff-marquee::-webkit-scrollbar{display:none}
#tariffs .tariff-track{display:flex;align-items:stretch;gap:22px;width:max-content;padding:0;margin:0}

#tariffs .tariff-card{
  position:relative;flex:0 0 auto;width:315px;min-width:315px;max-width:315px;min-height:335px;
  padding:24px 22px 22px;border-radius:28px;overflow:hidden;display:flex;flex-direction:column;
  background:radial-gradient(circle at 18% 0%,rgba(0,245,196,.14),transparent 36%),linear-gradient(180deg,rgba(6,20,22,.86),rgba(2,7,8,.92));
  border:1px solid var(--line);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.07),inset 0 0 28px rgba(0,245,196,.035),0 0 34px rgba(0,0,0,.34);
  transition:border-color .25s ease,box-shadow .25s ease,background .25s ease,filter .25s ease;
}
#tariffs .online-dot{
  position:absolute;left:18px;top:18px;width:10px;height:10px;border-radius:50%;
  background:var(--mint);box-shadow:0 0 14px rgba(0,245,196,.9),0 0 28px rgba(0,245,196,.35);
}
#tariffs .tariff-countries{display:flex;justify-content:flex-end;gap:6px;margin-bottom:22px}
#tariffs .flag-badge{
  width:31px;height:31px;border-radius:50%;display:inline-block;position:relative;overflow:hidden;
  border:1px solid rgba(255,255,255,.15);box-shadow:inset 0 1px 0 rgba(255,255,255,.22),0 0 14px rgba(0,0,0,.22);
}
#tariffs .flag-badge::after{position:absolute;inset:0;display:grid;place-items:center;font-size:9px;font-weight:800;color:rgba(255,255,255,.92);text-shadow:0 1px 2px rgba(0,0,0,.55)}
#tariffs .flag-nl{background:linear-gradient(180deg,#ae1c28 0 33.33%,#fff 33.33% 66.66%,#21468b 66.66% 100%)}
#tariffs .flag-nl::after{content:"NL"}
#tariffs .flag-de{background:linear-gradient(180deg,#000 0 33.33%,#dd0000 33.33% 66.66%,#ffce00 66.66% 100%)}
#tariffs .flag-de::after{content:"DE"}
#tariffs .flag-fi{background:linear-gradient(90deg,transparent 0 32%,#003580 32% 45%,transparent 45% 100%),linear-gradient(180deg,transparent 0 38%,#003580 38% 55%,transparent 55% 100%),#fff}
#tariffs .flag-fi::after{content:"FI"}
#tariffs .flag-us{background:linear-gradient(180deg,#b22234 0 8%,#fff 8% 16%,#b22234 16% 24%,#fff 24% 32%,#b22234 32% 40%,#fff 40% 48%,#b22234 48% 56%,#fff 56% 64%,#b22234 64% 72%,#fff 72% 80%,#b22234 80% 88%,#fff 88% 96%,#b22234 96% 100%)}
#tariffs .flag-us::before{content:"";position:absolute;left:0;top:0;width:48%;height:54%;background:#3c3b6e}
#tariffs .flag-us::after{content:"US"}
#tariffs .flag-il{background:linear-gradient(180deg,#fff 0 18%,#0038b8 18% 30%,#fff 30% 70%,#0038b8 70% 82%,#fff 82% 100%)}
#tariffs .flag-il::after{content:"✦";color:#0038b8;font-size:13px;text-shadow:none}
#tariffs .tariff-card h3{min-height:58px;margin:0 0 14px;padding-right:86px;font-family:var(--font-heading);font-weight:700;font-size:21px;line-height:1.12;letter-spacing:-.02em;color:var(--text)}
#tariffs .price{display:flex;align-items:baseline;gap:12px;margin-bottom:5px}
#tariffs .price s{color:rgba(220,235,232,.42);font-size:17px;font-weight:700}
#tariffs .price b{color:var(--mint);font-family:var(--font-heading);font-weight:700;font-size:32px;letter-spacing:-.02em;text-shadow:0 0 22px rgba(0,245,196,.3)}
#tariffs .per-month{color:rgba(220,235,232,.62);font-size:14px;font-weight:700;margin-bottom:14px}
#tariffs .tariff-card ul{list-style:none;padding:0;margin:16px 0 22px;display:grid;gap:8px}
#tariffs .tariff-card li{color:rgba(220,235,232,.72);font-size:14px;line-height:1.35}
#tariffs .tariff-card li::before{content:"●";color:var(--mint);font-size:9px;margin-right:8px;vertical-align:1px}
#tariffs .tariff-card a{
  display:inline-flex;align-items:center;justify-content:center;min-height:42px;width:max-content;
  margin-top:auto;padding:0 18px;border-radius:999px;color:#02110d;
  background:linear-gradient(135deg,#a6fff0,var(--mint) 62%,#00c9a0);font-weight:800;font-family:var(--font-heading);
  box-shadow:0 0 24px rgba(0,245,196,.24);
}
#tariffs .tariff-card .tag{
  position:absolute;right:18px;top:62px;z-index:6;padding:6px 10px;border-radius:999px;
  font-size:11px;font-weight:800;color:#1c0630;background:var(--violet);
  box-shadow:0 0 18px rgba(139,44,255,.35);white-space:nowrap;
}

@media(min-width:721px){
  #tariffs .tariff-card:hover{
    border-color:rgba(0,245,196,.6);filter:brightness(1.06) saturate(1.06);
    background:radial-gradient(circle at 18% 0%,rgba(0,245,196,.24),transparent 40%),radial-gradient(circle at 70% 100%,rgba(139,44,255,.10),transparent 44%),linear-gradient(180deg,rgba(8,26,26,.95),rgba(3,10,10,.98));
    box-shadow:inset 0 1px 0 rgba(255,255,255,.12),inset 0 0 48px rgba(0,245,196,.09),0 0 28px rgba(0,245,196,.28),0 14px 38px rgba(0,0,0,.5);
  }
  #tariffs .tariff-card:hover .price b{color:var(--mint2);text-shadow:0 0 12px rgba(0,245,196,.6),0 0 28px rgba(0,245,196,.32)}
  #tariffs .tariff-card:hover .online-dot{background:var(--mint2);box-shadow:0 0 18px rgba(85,255,217,.9),0 0 36px rgba(0,245,196,.5)}
}

/* ---------- Trust / third-party service logos ---------- */
.trust{text-align:center}
.brand-ref{display:flex;flex-wrap:wrap;justify-content:center;gap:28px 34px;margin-top:24px;opacity:.92}
.brand-ref span{font-family:var(--font-heading);font-weight:700;font-size:19px;color:#e2f3ef;letter-spacing:-.01em}

/* ---------- How it works ---------- */
.how-flow{position:relative;z-index:2;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px;max-width:1240px;margin:0 auto}
.how-card{
  position:relative;min-height:300px;padding:30px 24px 26px;border-radius:28px;overflow:hidden;
  background:radial-gradient(circle at 50% 0%,rgba(0,245,196,.12),transparent 38%),linear-gradient(180deg,rgba(6,20,20,.8),rgba(2,7,7,.88));
  border:1px solid var(--line);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06),0 0 36px rgba(0,0,0,.36);
  transition:transform .32s ease,border-color .32s ease,box-shadow .32s ease;
}
.how-card:hover{transform:translateY(-8px);border-color:rgba(0,245,196,.42);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 0 48px rgba(0,245,196,.18)}
.how-num{position:absolute;right:22px;top:18px;font-family:var(--font-mono);font-size:15px;font-weight:700;color:rgba(0,245,196,.4)}
.how-ico{
  width:82px;height:82px;border-radius:50%;position:relative;margin-bottom:26px;
  background:radial-gradient(circle at 34% 24%,rgba(255,255,255,.26),transparent 20%),radial-gradient(circle at 50% 50%,rgba(0,245,196,.16),transparent 52%);
  border:1px solid rgba(0,245,196,.32);box-shadow:0 0 20px rgba(0,245,196,.26),inset 0 0 24px rgba(0,245,196,.1);
}
.how-ico::after{
  content:"";position:absolute;inset:18px;background:var(--mint);
  filter:drop-shadow(0 0 7px rgba(0,245,196,.7)) drop-shadow(0 0 20px rgba(0,245,196,.3));
  -webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-size:contain;mask-size:contain;
}
.how-user::after{-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 8a12 12 0 1 0 0 24 12 12 0 0 0 0-24Zm0 30c-13 0-22 7-22 16v2h44v-2c0-9-9-16-22-16Z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 8a12 12 0 1 0 0 24 12 12 0 0 0 0-24Zm0 30c-13 0-22 7-22 16v2h44v-2c0-9-9-16-22-16Z'/%3E%3C/svg%3E")}
.how-device::after{-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 6h28a4 4 0 0 1 4 4v44a4 4 0 0 1-4 4H18a4 4 0 0 1-4-4V10a4 4 0 0 1 4-4Zm7 8v4h14v-4H25Zm7 34a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 6h28a4 4 0 0 1 4 4v44a4 4 0 0 1-4 4H18a4 4 0 0 1-4-4V10a4 4 0 0 1 4-4Zm7 8v4h14v-4H25Zm7 34a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E")}
.how-config::after{-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 10h26l10 10v34H14V10Zm24 3v11h10L38 13ZM22 30h20v5H22v-5Zm0 10h20v5H22v-5Z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 10h26l10 10v34H14V10Zm24 3v11h10L38 13ZM22 30h20v5H22v-5Zm0 10h20v5H22v-5Z'/%3E%3C/svg%3E")}
.how-check::after{-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 6a26 26 0 1 0 0 52 26 26 0 0 0 0-52Zm-5 36L16 31l5-5 6 6 16-17 5 5-21 22Z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 6a26 26 0 1 0 0 52 26 26 0 0 0 0-52Zm-5 36L16 31l5-5 6 6 16-17 5 5-21 22Z'/%3E%3C/svg%3E")}
.how-card h3{font-family:var(--font-heading);font-weight:700;font-size:22px;line-height:1.12;letter-spacing:-.01em;margin:0 0 14px;color:var(--text)}
.how-card p{font-size:15px;line-height:1.6;margin:0;color:rgba(220,235,232,.72)}
.how-card:not(:last-child)::after{
  content:"";position:absolute;right:-23px;top:50%;width:24px;height:2px;
  background:linear-gradient(90deg,rgba(0,245,196,.15),rgba(0,245,196,.8),rgba(0,245,196,.15));
  box-shadow:0 0 12px rgba(0,245,196,.4);
}

/* ---------- CTA ---------- */
.cta{
  margin:30px clamp(22px,6vw,88px);padding:44px;border:1px solid var(--line);border-radius:32px;
  background:linear-gradient(135deg,rgba(0,245,196,.10),rgba(3,8,9,.9));
  display:flex;align-items:center;justify-content:space-between;gap:30px;flex-wrap:wrap;
}
.cta p{color:var(--muted);font-size:18px}

/* ---------- FAQ ---------- */
.faq{max-width:none;position:relative}
.faq-grid{max-width:1080px;margin:0 auto;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.faq details{
  margin:0;border-radius:22px;border:1px solid var(--line);overflow:hidden;
  background:radial-gradient(circle at 12% 0%,rgba(0,245,196,.08),transparent 38%),linear-gradient(180deg,rgba(6,18,20,.8),rgba(2,7,7,.86));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05),0 0 28px rgba(0,0,0,.26);
  transition:border-color .25s ease,box-shadow .25s ease,transform .25s ease;
}
.faq details[open]{border-color:rgba(0,245,196,.4);box-shadow:inset 0 1px 0 rgba(255,255,255,.07),0 0 34px rgba(0,245,196,.12)}
.faq details:hover{transform:translateY(-2px);border-color:rgba(0,245,196,.36)}
.faq summary{
  position:relative;list-style:none;cursor:pointer;padding:22px 58px 22px 24px;
  font-family:var(--font-heading);font-weight:700;font-size:16px;line-height:1.25;letter-spacing:-.01em;color:var(--text);
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"+";position:absolute;right:22px;top:50%;width:28px;height:28px;transform:translateY(-50%);
  border-radius:50%;display:grid;place-items:center;color:var(--mint);background:rgba(0,245,196,.08);
  border:1px solid rgba(0,245,196,.26);box-shadow:0 0 16px rgba(0,245,196,.1);transition:transform .25s ease,background .25s ease;
}
.faq details[open] summary::after{content:"×";transform:translateY(-50%) rotate(90deg);background:rgba(0,245,196,.18)}
.faq p{padding:0 24px 24px;margin:0;color:rgba(220,235,232,.72);line-height:1.65;font-size:15px}

/* ---------- Footer ---------- */
.footer{
  display:block;padding:0 clamp(22px,6vw,88px) 34px;border-top:1px solid rgba(0,245,196,.16);
  color:rgba(220,235,232,.74);
  background:radial-gradient(circle at 50% 0%,rgba(0,245,196,.09),transparent 38%),linear-gradient(180deg,rgba(2,8,9,.86),rgba(1,4,5,.96));
}
.footer-inner{max-width:1240px;margin:0 auto;padding:42px 0 30px;display:grid;grid-template-columns:1.2fr .8fr;gap:34px}
.footer-logo{display:inline-flex;align-items:center;gap:12px;color:#fff;font-family:var(--font-heading);font-weight:700;font-size:20px;letter-spacing:-.02em}
.footer-logo img{width:46px;height:46px;border-radius:50%;box-shadow:0 0 24px rgba(0,245,196,.2)}
.footer-brand p{max-width:420px;margin:18px 0;color:rgba(220,235,232,.72);line-height:1.6}
.footer-badges{display:flex;flex-wrap:wrap;gap:10px}
.footer-badges span{padding:8px 11px;border-radius:999px;color:#d3fff5;font-size:12px;font-weight:700;border:1px solid var(--line);background:rgba(0,245,196,.06)}
.footer-nav{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:26px}
.footer-nav div{display:grid;gap:12px}
.footer-nav strong{color:#fff;font-family:var(--font-heading);font-size:14px;letter-spacing:-.01em}
.footer-nav a{color:rgba(220,235,232,.70);transition:color .22s ease,transform .22s ease}
.footer-nav a:hover{color:var(--mint);transform:translateX(3px)}
.footer-bottom{
  max-width:1240px;margin:0 auto;padding-top:22px;border-top:1px solid rgba(0,245,196,.12);
  display:flex;justify-content:space-between;gap:16px;color:rgba(220,235,232,.5);font-size:13px;
}

/* =========================================================================
   Responsive breakpoints
   ========================================================================= */
@media(min-width:1101px){
  .hero.section-pad{
    max-width:1860px;margin-left:auto;margin-right:auto;
    grid-template-columns:minmax(640px,1fr) minmax(560px,.92fr);
    column-gap:clamp(18px,2.4vw,44px);
    padding-left:clamp(56px,4.2vw,76px);padding-right:clamp(40px,3.6vw,68px);
  }
  .hero-copy{max-width:820px}
  .hero-visual{transform:translateY(-6%)}
}

@media(max-width:1100px){
  .nav{display:none}
  .hero{grid-template-columns:1fr}
  .hero-visual{min-height:420px}
  .cards{grid-template-columns:repeat(3,1fr)}
  .how-flow{grid-template-columns:repeat(2,minmax(0,1fr))}
  .how-card:not(:last-child)::after{display:none}
}

@media(max-width:920px){
  .topbar{min-height:76px;padding:10px 18px;gap:12px}
  .brand{gap:10px}
  .brand span:last-child{font-size:17px;white-space:nowrap}
  .brand-mark{width:48px;height:48px;min-width:48px}
  .top-actions{margin-left:auto;gap:10px}
  .telegram{width:46px;height:46px;min-width:46px}
  .btn-small{height:46px;min-height:46px;padding:0 18px;font-size:14px;min-width:0}
  .hero{padding-top:34px;gap:18px}
  .hero h1{font-size:clamp(42px,11vw,72px);line-height:.96;letter-spacing:-.02em}
  .lead{font-size:18px}
  .hero-badges span{font-size:12px;padding:8px 12px}
  .hero-actions{display:grid;grid-template-columns:1fr;gap:12px;width:100%}
  .hero-actions .btn{width:100%;min-height:56px;font-size:16px}
  .hero-visual{min-height:390px}
  .globe{width:min(104vw,540px)}
  .platform-row{overflow-x:auto;justify-content:flex-start;gap:18px;padding:16px 18px}
  .platform{min-width:max-content;font-size:15px}
  .cards{grid-template-columns:1fr}
}

@media(min-width:721px){
  .hero-actions{gap:26px;margin-top:40px}
  .hero-actions .btn{min-height:88px;padding:0 48px;font-size:19px}
}

@media(max-width:720px){
  .topbar{height:76px;padding:0 18px}
  .brand{font-size:17px}
  .brand-mark{width:46px;height:46px;min-width:46px}
  .nav{display:none}
  .btn-small{height:50px;padding:0 18px;border-radius:999px}
  .section-pad{padding:44px 20px}
  .hero{padding-top:28px;min-height:auto}
  .hero h1{font-size:44px;letter-spacing:-.01em}
  .lead{font-size:17px}
  .hero-visual{min-height:340px}
  .globe{width:92vw}
  .cards{grid-template-columns:1fr}
  .card{min-height:170px}
  .cta{margin:20px 18px;padding:28px;display:grid}
  .footer{padding-bottom:70px}
  .footer-inner{grid-template-columns:1fr;gap:28px}
  .footer-nav{grid-template-columns:1fr 1fr}
  .footer-bottom{flex-direction:column;text-align:left;padding-bottom:0}
  .faq-grid{grid-template-columns:1fr}
  .faq summary{font-size:14px;padding:19px 54px 19px 18px}
  .faq p{padding:0 18px 20px;font-size:14px}
  .how-flow{grid-template-columns:1fr;gap:16px}
  .how-card{min-height:auto;padding:24px 20px;border-radius:24px}
  .how-ico{width:66px;height:66px;margin-bottom:20px}
  .how-ico::after{inset:15px}
  .how-card h3{font-size:20px}
  .how-card p{font-size:14px}

  /* Tariffs — compact mobile cards, infinite scroll continues via JS */
  #tariffs.tariffs-v2{padding:36px 0 32px}
  #tariffs .tariff-head{margin-bottom:18px}
  #tariffs .tariff-head h2{font-size:34px}
  #tariffs .tariff-head p{max-width:320px;font-size:12px;line-height:1.35}
  #tariffs .tariff-track{gap:12px}
  #tariffs .tariff-card{width:172px;min-width:172px;max-width:172px;min-height:252px;padding:14px 12px 13px;border-radius:18px}
  #tariffs .online-dot{left:10px;top:10px;width:7px;height:7px}
  #tariffs .tariff-countries{gap:4px;margin-bottom:12px}
  #tariffs .flag-badge{width:20px;height:20px}
  #tariffs .flag-badge::after{font-size:5px}
  #tariffs .flag-il::after{font-size:8px}
  #tariffs .tariff-card .tag{top:36px;right:8px;font-size:7px;padding:3px 6px;transform:none}
  #tariffs .tariff-card h3{min-height:43px;font-size:12px;line-height:1.08;margin-bottom:7px;padding-right:58px}
  #tariffs .tariff-card.hot h3,#tariffs .tariff-card.premium h3{max-width:118px}
  #tariffs .price{gap:5px}
  #tariffs .price s{font-size:9px}
  #tariffs .price b{font-size:20px}
  #tariffs .per-month{font-size:9px;margin-bottom:7px}
  #tariffs .tariff-card ul{gap:3px;margin:7px 0 10px}
  #tariffs .tariff-card li{font-size:9px;line-height:1.2}
  #tariffs .tariff-card a{min-height:30px;width:100%;font-size:9px}
  #tariffs .tariff-card:hover,#tariffs .tariff-card:active{transform:none;filter:none}

  /* iOS Safari momentum-scroll hard fix for the marquee track */
  #tariffs .tariff-marquee{overflow-x:scroll;-webkit-overflow-scrolling:auto;scroll-behavior:auto;touch-action:pan-x}
  #tariffs .tariff-track{transform:none;animation:none}
}

@media(max-width:520px){
  body{background:var(--bg)}
  .topbar{position:sticky;top:0;height:64px;min-height:64px;padding:8px 12px}
  .brand{gap:8px}
  .brand-mark{width:38px;height:38px;min-width:38px}
  .brand span:last-child{font-size:13px;letter-spacing:-.01em}
  .telegram{width:38px;height:38px;min-width:38px}
  .btn-small{height:38px;min-height:38px;padding:0 12px;font-size:11px;border-radius:999px;min-width:0}
  .hero{padding:22px 16px 8px;gap:10px}
  .pill{font-size:11px;padding:9px 12px;width:100%;justify-content:center}
  .hero h1{font-size:clamp(38px,14vw,52px);line-height:.94;text-align:left;margin-top:18px}
  .lead{font-size:15px;line-height:1.45;margin-top:16px}
  .hero-badges{display:grid;grid-template-columns:repeat(3,1fr);gap:7px;margin-top:16px}
  .hero-badges span{width:100%;min-height:34px;padding:7px 6px;display:flex;align-items:center;justify-content:center;text-align:center;white-space:normal;line-height:1.12;font-size:9.8px;border-radius:999px}
  .hero-badges span:nth-child(4){grid-column:1/4;max-width:68%;justify-self:center;font-size:10.5px}
  .hero-actions{margin-top:18px;gap:10px}
  .hero-actions .btn{min-height:52px;font-size:14px;border-radius:18px}
  .micro-card{margin-top:18px;padding:14px;border-radius:18px;gap:13px}
  .micro-icon{width:52px;height:52px;min-width:52px}
  .hero-visual{min-height:270px;margin:0 auto;overflow:hidden}
  .globe{width:292px;height:292px;max-width:292px;max-height:292px;opacity:.86}
  .globe-label{transform:translate(-50%,-50%) scale(.68)}
  .platforms{padding:8px 16px 22px}
  .platform-row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;padding:12px;overflow:visible;border-radius:18px}
  .platform{justify-content:flex-start;font-size:12px;gap:8px;min-width:0;padding:6px 4px}
  .platform::before{width:18px;height:18px;flex-basis:18px}
  .section-pad{padding:34px 16px}
  .section-title h2,.trust h2{font-size:26px;line-height:1.05;text-align:center}
  .section-title p{font-size:14px;text-align:center}
  .cards{gap:12px}
  .card{padding:18px;border-radius:18px}
  .card h3{font-size:18px;line-height:1.15}
  .card p{font-size:13px;line-height:1.45}
  .cta{padding:34px 16px}
  .faq{padding-left:16px;padding-right:16px}
  .faq details{border-radius:14px}
  .faq summary{font-size:13px;padding:14px}
  .footer{padding:26px 16px;text-align:center}
  .footer-bottom{padding-bottom:70px}
}

@media(max-width:430px){
  .topbar{padding:9px 12px}
  .brand span:last-child{font-size:15px}
  .brand-mark{width:42px;height:42px;min-width:42px}
  .telegram{width:42px;height:42px;min-width:42px}
  .btn-small{height:42px;min-height:42px;padding:0 13px;font-size:12px}
  .btn-small b{display:none}
  .section-pad{padding-left:18px;padding-right:18px}
  .pill{max-width:100%;font-size:12px;padding:10px 13px}
  .hero h1{font-size:clamp(38px,13vw,56px)}
  .lead{font-size:16px}
  .micro-card{width:100%}
  .hero-visual{min-height:250px}
  .globe{width:265px;height:265px;max-width:265px;max-height:265px}
}

@media(max-width:390px){
  .hero h1{font-size:38px}
  .globe{width:250px;height:250px;max-width:250px;max-height:250px}
}

/* Safari/iOS compositing hints — avoid flicker on transformed/animated elements */
@supports (-webkit-touch-callout:none){
  .btn,.telegram,.platform,.card{transform:translateZ(0)}
}
