*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;overflow-x:hidden}
:root{
  --red:#DC2626;
  --red-dark:#B91C1C;
  --red-deep:#991B1B;
  --ink:#141416;
  --ink-2:#1F1F22;
  --ink-3:#2A2A2E;
  --gray:#6B7075;
  --gray-soft:#F4F4F5;
  --gray-line:#E4E4E7;
  --w:#fff;
}
body{font-family:'Manrope',system-ui,sans-serif;background:#fff;color:var(--ink);overflow-x:hidden;-webkit-font-smoothing:antialiased;line-height:1.5}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font-family:inherit;cursor:pointer;border:none;background:none}

.container{max-width:1240px;margin:0 auto;padding:0 32px}

/* NAV */
.nav{position:fixed;top:0;left:0;right:0;z-index:200;background:rgba(20,20,22,.86);backdrop-filter:blur(20px);border-bottom:1px solid rgba(255,255,255,.06)}
.nav-inner{max-width:1240px;margin:0 auto;padding:18px 32px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.logo{display:flex;align-items:center;gap:10px;color:#fff}
.logo-mark{width:34px;height:34px;background:var(--red);border-radius:6px;display:grid;place-items:center;font-weight:800;color:#fff;font-size:.95rem;letter-spacing:-.04em;box-shadow:0 6px 22px rgba(220,38,38,.35)}
.logo-name{font-weight:800;font-size:.95rem;letter-spacing:-.01em;line-height:1}
.logo-name span{color:var(--red)}
.nav-links{display:flex;gap:22px;list-style:none;align-items:center;margin-top:-4px}
.nav-links a{color:rgba(255,255,255,.72);font-size:.82rem;font-weight:500;transition:color 180ms;white-space:nowrap}
.nav-links a:hover{color:#fff}
.nav-r{display:flex;align-items:center;gap:14px}
.lang{display:flex;gap:6px;align-items:center;color:rgba(255,255,255,.72);font-size:.82rem;font-weight:600}
.lang a{padding:4px 6px;color:rgba(255,255,255,.72);transition:color 180ms}
.lang a.active,.lang a:hover{color:#fff}
.lang span{color:rgba(255,255,255,.3)}
.nav-cta{display:inline-flex;align-items:center;gap:8px;background:linear-gradient(120deg,var(--red) 0%,#FF4444 35%,var(--red-dark) 70%,var(--red) 100%);background-size:300% 100%;color:#fff;font-weight:800;font-size:.82rem;padding:11px 22px;border-radius:6px;transition:transform 180ms,box-shadow 180ms;animation:grad 4s linear infinite;box-shadow:0 8px 22px rgba(220,38,38,.35);white-space:nowrap}
.nav-cta:hover{transform:translateY(-1px);box-shadow:0 12px 28px rgba(220,38,38,.5)}
@keyframes grad{0%{background-position:0% 50%}100%{background-position:300% 50%}}
.burger{display:none;width:42px;height:42px;border-radius:6px;background:rgba(255,255,255,.08);align-items:center;justify-content:center;flex-direction:column;gap:5px}
.burger span{width:18px;height:2px;background:#fff;border-radius:2px;transition:transform 240ms,opacity 200ms}
.burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.open span:nth-child(2){opacity:0}
.burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.drawer{position:fixed;inset:0;background:var(--ink);z-index:150;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:14px;opacity:0;pointer-events:none;transition:opacity 260ms;padding:80px 24px 40px}
.drawer.open{opacity:1;pointer-events:all}
.drawer a{color:#fff;font-size:1.15rem;font-weight:700;letter-spacing:-.02em}
.drawer .lang{margin-top:18px}

/* HERO */
.hero{position:relative;padding:140px 0 90px;min-height:100vh;background:var(--ink);overflow:hidden;display:flex;align-items:center}
.hero-bg{position:absolute;inset:0;background-image:url('https://images.unsplash.com/photo-1690742215448-37b787cd3494?w=2000&q=85&auto=format&fit=crop');background-size:cover;background-position:center;opacity:.62;filter:saturate(.75) contrast(1.08)}
.hero-bg::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(20,20,22,.72) 0%,rgba(20,20,22,.5) 50%,rgba(20,20,22,.78) 100%)}
.hero-tint{position:absolute;inset:0;background:radial-gradient(900px 500px at 50% 30%,rgba(220,38,38,.18),transparent 65%)}
.hero-inner{position:relative;z-index:5;width:100%;text-align:center;display:flex;flex-direction:column;align-items:center}
.hero-h{color:#fff;font-size:clamp(2.4rem,5.4vw,4.8rem);font-weight:800;line-height:1.05;letter-spacing:-.04em;margin-bottom:26px;max-width:980px}
.hero-h em{font-style:normal;color:#fff}
.hero-sub{color:#fff;font-size:clamp(1.1rem,1.55vw,1.35rem);font-weight:600;line-height:1.5;margin-bottom:32px;max-width:740px}
.hero-bullets{list-style:none;display:flex;flex-direction:column;gap:14px;margin-bottom:42px;text-align:left;max-width:640px}
.hero-bullets li{display:flex;align-items:flex-start;gap:14px;color:rgba(255,255,255,.92);font-size:1.02rem;font-weight:500;line-height:1.45}
.hero-bullets li svg{flex-shrink:0;width:24px;height:24px;color:var(--red);margin-top:2px}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;font-weight:700;border-radius:8px;transition:transform 180ms,box-shadow 180ms;text-align:center}
.btn-grad{background:linear-gradient(120deg,var(--red) 0%,#FF4444 35%,var(--red-dark) 70%,var(--red) 100%);background-size:300% 100%;color:#fff;font-weight:800;font-size:.95rem;padding:14px 28px;box-shadow:0 10px 26px rgba(220,38,38,.4);animation:grad 4s linear infinite;letter-spacing:.005em}
.btn-grad:hover{transform:translateY(-2px);box-shadow:0 20px 44px rgba(220,38,38,.55)}

/* SECTIONS */
#why,#forwhom,#problems,#solution,#tasks,#process,#faq,#contact{scroll-margin-top:80px}
.sec{padding:100px 0;background:#fff}
.sec-alt{background:var(--gray-soft)}
.sec-dark{background:var(--ink);color:#fff}
.sec-head{text-align:center;margin-bottom:54px;display:flex;flex-direction:column;align-items:center}
.sec-h{font-size:clamp(2rem,3.6vw,3.2rem);font-weight:800;letter-spacing:-.035em;line-height:1.1;color:var(--ink);max-width:880px;margin:0 auto 16px}
.sec-h em{font-style:normal;color:var(--red)}
.sec-dark .sec-h{color:#fff}
.sec-sub{font-size:1.05rem;color:var(--gray);max-width:720px;margin:0 auto;line-height:1.6}
.sec-dark .sec-sub{color:rgba(255,255,255,.66)}

/* WHY US */
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.why-card{background:#fff;border:1px solid var(--gray-line);border-radius:14px;padding:32px 26px;position:relative;transition:transform 240ms,box-shadow 240ms,border-color 240ms;min-height:240px;display:flex;flex-direction:column}
.why-card:hover{transform:translateY(-4px);border-color:var(--red);box-shadow:0 18px 40px rgba(220,38,38,.12)}
.why-card.red{background:var(--red);border-color:var(--red);color:#fff}
.why-card.red:hover{box-shadow:0 24px 50px rgba(220,38,38,.35)}
.why-card.dark{background:var(--ink);border-color:var(--ink);color:#fff}
.why-card.dark:hover{box-shadow:0 24px 50px rgba(0,0,0,.35)}
.why-n{font-size:2.6rem;font-weight:800;letter-spacing:-.05em;line-height:1;margin-bottom:18px;color:var(--red)}
.why-card.red .why-n,.why-card.dark .why-n{color:rgba(255,255,255,.5)}
.why-h{font-size:1.05rem;font-weight:800;letter-spacing:-.02em;line-height:1.2;margin-bottom:10px}
.why-t{font-size:.86rem;line-height:1.55;color:var(--gray)}
.why-card.red .why-t,.why-card.dark .why-t{color:rgba(255,255,255,.85)}
.why-bot{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:18px}

/* FOR WHOM */
.whom-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
.whom-list{display:flex;flex-direction:column}
.whom-item{display:flex;align-items:flex-start;gap:14px;padding:16px 0;border-bottom:1px solid var(--gray-line);font-size:.92rem;color:var(--ink-2);line-height:1.5}
.whom-item:first-child{border-top:1px solid var(--gray-line)}
.whom-icon{flex-shrink:0;width:36px;height:36px;border-radius:8px;background:rgba(220,38,38,.08);color:var(--red);display:grid;place-items:center;margin-top:-2px}
.whom-icon svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.whom-right-title{font-size:.95rem;font-weight:800;letter-spacing:-.01em;color:var(--ink);margin-bottom:18px}
.industries{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:32px}
.ind-tag{font-size:.82rem;font-weight:600;color:var(--ink-2);border:1px solid var(--gray-line);border-radius:100px;padding:9px 16px;background:#fff;transition:all 200ms}
.ind-tag:hover{border-color:var(--red);color:var(--red)}
.whom-card{background:var(--ink);border-radius:14px;padding:30px 26px;position:relative;overflow:hidden;color:#fff;text-align:center}
.whom-card::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,transparent,var(--red),transparent)}
.whom-card-label{font-size:.78rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--red);margin-bottom:12px}
.whom-card-text{font-size:.9rem;line-height:1.7;color:rgba(255,255,255,.78)}
.whom-card-text strong{color:#fff}

/* CTA-MID */
.cta-mid{padding:80px 0;background:#fff}
.cta-mid-card{background:var(--red);border-radius:18px;padding:54px 48px;text-align:center;color:#fff;position:relative;overflow:hidden;box-shadow:0 30px 80px rgba(220,38,38,.25)}
.cta-mid-card::before{content:"";position:absolute;right:-100px;top:-100px;width:380px;height:380px;border-radius:50%;background:rgba(255,255,255,.07)}
.cta-mid-card::after{content:"";position:absolute;left:-50px;bottom:-150px;width:300px;height:300px;border-radius:50%;background:rgba(0,0,0,.07)}
.cta-mid h2{font-size:clamp(1.7rem,3vw,2.4rem);font-weight:800;letter-spacing:-.025em;line-height:1.15;margin-bottom:14px;position:relative}
.cta-mid p{font-size:1rem;font-weight:700;color:rgba(255,255,255,.95);max-width:640px;margin:0 auto 28px;line-height:1.55;position:relative}
.cta-mid .btn-grad-d{position:relative;display:inline-flex;align-items:center;justify-content:center;background:linear-gradient(120deg,var(--ink) 0%,#3A3A3F 50%,var(--ink) 100%);background-size:300% 100%;color:#fff;font-weight:800;font-size:1rem;padding:20px 38px;border-radius:8px;animation:grad 4s linear infinite;box-shadow:0 14px 30px rgba(0,0,0,.3);transition:transform 180ms}
.cta-mid .btn-grad-d:hover{transform:translateY(-2px);box-shadow:0 18px 38px rgba(0,0,0,.4)}

/* SOLUTION */
.sol-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.sol-list{margin-top:14px}
.sol-list .feat{display:flex;gap:16px;padding:18px 0;border-bottom:1px solid var(--gray-line)}
.sol-list .feat:last-child{border-bottom:none}
.feat-icon{flex:0 0 48px;width:48px;height:48px;background:var(--red);border-radius:10px;display:grid;place-items:center}
.feat-icon svg{width:22px;height:22px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.feat-h{font-size:1rem;font-weight:800;color:var(--ink);letter-spacing:-.01em;margin-bottom:4px}
.feat-t{font-size:.88rem;color:var(--gray);line-height:1.5}
.sol-card{background:var(--red);color:#fff;border-radius:16px;padding:40px 36px;position:relative;overflow:hidden;box-shadow:0 30px 70px rgba(220,38,38,.25);text-align:center}
.sol-card::before{content:"";position:absolute;right:-100px;top:-100px;width:300px;height:300px;border-radius:50%;background:rgba(255,255,255,.07)}
.sol-card-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.2);border-radius:100px;padding:8px 16px;font-size:.7rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;margin-bottom:24px;position:relative}
.sol-card h3{font-size:1.25rem;font-weight:800;letter-spacing:-.02em;line-height:1.3;margin-bottom:20px;position:relative}
.sol-card-list{list-style:none;position:relative;display:flex;flex-direction:column;gap:8px;text-align:left;max-width:420px;margin:0 auto}
.sol-card-list li{display:flex;align-items:flex-start;gap:10px;padding:6px 0;font-size:.86rem;line-height:1.5;color:rgba(255,255,255,.95)}
.sol-card-list li::before{content:"✓";font-weight:800;flex:0 0 16px}
.sol-grid .sec-h{text-align:center;margin-left:auto;margin-right:auto;font-size:clamp(2.1rem,3.8vw,3.3rem)}
.sol-grid .sec-sub{text-align:center;margin:0 auto 28px}
.sol-grid > div:first-child{display:flex;flex-direction:column}

/* TASKS / TABS */
.tabs{display:flex;gap:10px;justify-content:center;margin-bottom:34px;flex-wrap:wrap;background:var(--gray-soft);padding:6px;border-radius:100px;max-width:fit-content;margin-left:auto;margin-right:auto}
.tab{font-size:.9rem;font-weight:700;color:var(--gray);padding:12px 24px;cursor:pointer;border:none;background:none;border-radius:100px;transition:all 200ms;white-space:nowrap;flex:0 0 auto}
.tab.active{color:#fff;background:var(--red);box-shadow:0 6px 18px rgba(220,38,38,.3)}
.tab:hover:not(.active){color:var(--ink-2)}
.panel{display:none}
.panel.active{display:block}
.task-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.task{background:#fff;border:1px solid var(--gray-line);border-radius:14px;padding:28px 26px;display:flex;gap:18px;align-items:flex-start;transition:transform 220ms,border-color 220ms,box-shadow 220ms}
.task:hover{transform:translateY(-3px);border-color:var(--red);box-shadow:0 14px 36px rgba(220,38,38,.1)}
.task-icon{flex:0 0 50px;width:50px;height:50px;background:var(--red);color:#fff;border-radius:12px;display:grid;place-items:center}
.task-icon svg{width:24px;height:24px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.task-h{font-size:1.02rem;font-weight:800;color:var(--ink);letter-spacing:-.01em;margin-bottom:6px;line-height:1.25}
.task-t{font-size:.88rem;color:var(--gray);line-height:1.55}

/* PROCESS */
.steps{display:grid;grid-template-columns:repeat(5,1fr);gap:30px;position:relative}
.steps::before{content:"";position:absolute;top:32px;left:60px;right:60px;height:2px;background:linear-gradient(90deg,var(--red) 0%,rgba(220,38,38,.4) 50%,rgba(220,38,38,.15) 100%);z-index:0}
.step{padding:0 12px;position:relative;text-align:center;z-index:1}
.step-dot{width:64px;height:64px;border-radius:50%;background:#fff;border:3px solid var(--red);display:grid;place-items:center;margin:0 auto 22px;box-shadow:0 8px 22px rgba(220,38,38,.18);transition:transform 220ms}
.step:hover .step-dot{transform:scale(1.08)}
.step-dot svg{width:28px;height:28px;stroke:var(--red);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.step-h{font-size:1rem;font-weight:800;letter-spacing:-.01em;color:var(--ink);margin-bottom:8px;line-height:1.25}
.step-t{font-size:.85rem;color:var(--gray);line-height:1.5}

/* FAQ */
.faq-list{display:flex;flex-direction:column;max-width:880px;margin:0 auto}
.faq-item{border:1px solid var(--gray-line);border-radius:12px;margin-bottom:10px;overflow:hidden;background:#fff;transition:border-color 200ms}
.faq-item.open{border-color:var(--red)}
.faq-q{width:100%;display:flex;align-items:center;justify-content:space-between;gap:20px;padding:22px 26px;cursor:pointer;text-align:left;font-family:inherit;font-size:.98rem;font-weight:700;color:var(--ink);line-height:1.4;transition:color 200ms;letter-spacing:-.01em}
.faq-q:hover{color:var(--red)}
.faq-arrow{width:18px;height:18px;flex-shrink:0;color:var(--red);transition:transform 250ms}
.faq-item.open .faq-arrow{transform:rotate(180deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height 350ms ease}
.faq-a-inner{padding:0 26px 22px;font-size:.9rem;line-height:1.7;color:var(--gray)}

/* CTA FORM */
.cta{padding:100px 0;background:#fff}
.cta-card{background:var(--red);border-radius:18px;padding:64px 60px;display:grid;grid-template-columns:1.2fr 1fr;gap:50px;align-items:center;color:#fff;position:relative;overflow:hidden;box-shadow:0 30px 80px rgba(220,38,38,.25)}
.cta-card::before{content:"";position:absolute;right:-100px;top:-100px;width:400px;height:400px;border-radius:50%;background:rgba(255,255,255,.07)}
.cta-card::after{content:"";position:absolute;left:-50px;bottom:-150px;width:300px;height:300px;border-radius:50%;background:rgba(0,0,0,.07)}
.cta-h{font-size:clamp(1.7rem,3vw,2.6rem);font-weight:800;letter-spacing:-.035em;line-height:1.08;margin-bottom:14px;position:relative}
.cta-sub{font-size:1rem;color:rgba(255,255,255,.92);max-width:520px;line-height:1.55;margin-bottom:6px;position:relative}
.cta-form{position:relative;display:flex;flex-direction:column;gap:10px}
.cta-form input{width:100%;padding:16px 20px;border-radius:8px;background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.22);color:#fff;font-size:.95rem;font-family:inherit;outline:none;transition:background 180ms,border-color 180ms}
.cta-form input::placeholder{color:rgba(255,255,255,.7)}
.cta-form input:focus{background:rgba(255,255,255,.2);border-color:rgba(255,255,255,.45)}
.cta-form input.invalid{border-color:#FFD3D3}
.cta-policy{display:flex;align-items:center;gap:10px;font-size:.78rem;color:rgba(255,255,255,.92);line-height:1.45;margin-top:6px;cursor:pointer;user-select:none}
.cta-policy input[type="checkbox"]{-webkit-appearance:none;appearance:none;width:18px;height:18px;padding:0;flex-shrink:0;border:2px solid rgba(255,255,255,.75);border-radius:3px;background:transparent;cursor:pointer;position:relative;transition:background 150ms,border-color 150ms}
.cta-policy input[type="checkbox"]:checked{background:#fff;border-color:#fff}
.cta-policy input[type="checkbox"]:checked::after{content:"";position:absolute;left:3px;top:0;width:8px;height:12px;border-right:2.5px solid var(--red);border-bottom:2.5px solid var(--red);transform:rotate(45deg)}
.cta-policy a{color:#fff;text-decoration:underline;font-weight:600}
.cta-form button{padding:18px 24px;border-radius:8px;background:linear-gradient(120deg,var(--ink) 0%,#3A3A3F 50%,var(--ink) 100%);background-size:300% 100%;color:#fff;font-weight:800;font-size:.98rem;animation:grad 4s linear infinite;transition:transform 180ms,opacity 180ms;margin-top:6px}
.cta-form button:hover:not(:disabled){transform:translateY(-1px)}
.cta-form button:disabled{opacity:.45;cursor:not-allowed;animation:none;background:rgba(0,0,0,.45)}

/* FOOTER */
.foot{padding:64px 0 32px;background:var(--ink);color:rgba(255,255,255,.66)}
.foot-grid{display:grid;grid-template-columns:1.4fr 1.2fr 1.1fr;gap:50px;margin-bottom:50px}
.foot-about{font-size:.88rem;line-height:1.6;max-width:340px;margin-top:18px}
.foot-h{color:#fff;font-size:.78rem;text-transform:uppercase;letter-spacing:.16em;font-weight:700;margin-bottom:18px}
.foot-list{list-style:none;display:flex;flex-direction:column;gap:10px}
.foot-list a{font-size:.9rem;color:rgba(255,255,255,.66);transition:color 180ms}
.foot-list a:hover{color:var(--red)}
.foot-cont{font-size:.92rem;line-height:1.7}
.foot-cont a{display:block;color:#fff;font-weight:700;font-size:1rem;margin-bottom:6px;word-break:break-word}
.foot-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:24px;display:flex;justify-content:space-between;font-size:.8rem;flex-wrap:wrap;gap:14px}
.foot-bottom a{color:rgba(255,255,255,.66);transition:color 180ms}
.foot-bottom a:hover{color:#fff}

/* SCROLL TOP */
.scroll-top{position:fixed;right:24px;bottom:24px;width:48px;height:48px;border-radius:50%;background:var(--red);color:#fff;display:grid;place-items:center;box-shadow:0 12px 28px rgba(220,38,38,.4);opacity:0;pointer-events:none;transition:opacity 220ms,transform 220ms;z-index:120}
.scroll-top.show{opacity:1;pointer-events:all}
.scroll-top:hover{transform:translateY(-3px)}
.scroll-top svg{width:20px;height:20px;stroke:#fff;fill:none;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round}

@media (max-width:1280px){
  .nav-links,.nav-cta{display:none}
  .burger{display:flex}
  .why-grid,.why-bot{grid-template-columns:repeat(2,1fr)}
  .whom-grid,.sol-grid{grid-template-columns:1fr;gap:40px}
  .task-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:repeat(3,1fr);row-gap:50px}
  .steps::before{display:none}
  .cta-card{grid-template-columns:1fr;padding:44px 32px;gap:30px}
  .foot-grid{grid-template-columns:1fr 1fr;gap:36px}
  .cta-mid-card{padding:44px 32px}
}
@media (max-width:600px){
  .container{padding:0 18px}
  .industries{flex-direction:column}
  .ind-tag{text-align:center}
  .whom-right-title{text-align:center}
  .nav-inner{padding:12px 16px;gap:10px}
  .lang{font-size:.75rem}
  .lang a{padding:3px 4px}
  .logo-mark{width:30px;height:30px;font-size:.85rem}
  .logo-name{font-size:.88rem}
  .hero{padding:110px 0 90px}
  .hero-bullets li{font-size:.95rem}
  .sec{padding:24px 0}
  .sec-head{margin-bottom:28px}
  .cta-mid,.cta{padding:16px 0}
  .why-grid,.why-bot,.steps{grid-template-columns:1fr}
  .steps{row-gap:30px}
  .tabs{padding:5px;gap:4px;width:100%;max-width:100%}
  .tab{padding:11px 14px;font-size:.78rem;flex:1 1 0;text-align:center}
  .foot-grid{grid-template-columns:1fr}
  .cta-card{padding:36px 22px}
  .scroll-top{left:16px;right:auto;bottom:16px;width:44px;height:44px}
  .prob-grid{grid-template-columns:1fr}
  .cookie-banner-inner{flex-direction:column;gap:16px;align-items:flex-start}
}
@media(max-width:600px){.hero{padding:100px 0 110px}}

/* FAQ PARAGRAPHS */
.faq-a-inner p+p{margin-top:12px}

/* PROBLEMS */
.prob-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;max-width:900px;margin:0 auto}
.prob-item{display:flex;align-items:flex-start;gap:14px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:12px;padding:20px 22px;transition:border-color 200ms}
.prob-item:hover{border-color:rgba(220,38,38,.35)}
.prob-x{flex-shrink:0;width:30px;height:30px;border-radius:50%;background:rgba(220,38,38,.15);border:1.5px solid rgba(220,38,38,.45);display:grid;place-items:center;color:var(--red);font-size:1rem;font-weight:800;line-height:1}
.prob-text{font-size:.9rem;line-height:1.65;color:rgba(255,255,255,.95)}
.prob-x svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
@media(max-width:600px){.prob-grid{grid-template-columns:1fr}}

/* COOKIE BANNER */
.cookie-banner{position:fixed;bottom:0;left:0;right:0;z-index:500;background:var(--ink-2);border-top:1px solid rgba(255,255,255,.08);padding:18px 32px;transform:translateY(100%);transition:transform 300ms ease;pointer-events:none}
.cookie-banner.show{transform:translateY(0);pointer-events:all}
.cookie-banner-inner{max-width:1240px;margin:0 auto;display:flex;align-items:center;gap:24px;justify-content:space-between}
.cookie-text{font-size:.85rem;color:rgba(255,255,255,.75);line-height:1.5;flex:1}
.cookie-text a{color:#fff;text-decoration:underline}
.cookie-actions{display:flex;gap:10px;flex-shrink:0}
.cookie-btn-accept{background:var(--red);color:#fff;font-weight:700;font-size:.85rem;padding:10px 22px;border-radius:6px;cursor:pointer;border:none;font-family:inherit;transition:background 180ms}
.cookie-btn-accept:hover{background:var(--red-dark)}
.cookie-btn-decline{background:transparent;color:rgba(255,255,255,.6);font-weight:600;font-size:.85rem;padding:10px 16px;border-radius:6px;cursor:pointer;border:1px solid rgba(255,255,255,.2);font-family:inherit;transition:all 180ms}
.cookie-btn-decline:hover{color:#fff;border-color:rgba(255,255,255,.4)}

/* CONTACT WIDGET — mobile-first */
.contact-widget{position:fixed;right:16px;bottom:16px;z-index:350;display:flex;flex-direction:column;align-items:center;gap:8px}
.contact-widget__item{width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;text-decoration:none;cursor:pointer;color:#fff;transition:filter 200ms}
.contact-widget__item:hover{filter:brightness(1.12)}
.contact-widget__whatsapp{background:rgb(37,211,102)}
.contact-widget__telegram{background:rgb(44,165,224)}
.contact-widget__items{overflow:hidden;max-height:0;transition:max-height 300ms ease;display:flex;flex-direction:column;align-items:center;gap:12px}
.contact-widget.expanded .contact-widget__items{max-height:300px}
.contact-widget__toggle{display:flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:50%;background:var(--red);color:#fff;flex-shrink:0;box-shadow:0 4px 14px rgba(220,38,38,.4)}
.contact-widget__toggle svg{transition:transform 200ms}
.contact-widget.expanded .contact-widget__toggle svg{transform:rotate(45deg)}
@media(min-width:601px){
  .contact-widget{right:24px;bottom:84px;gap:0}
  .contact-widget__items{overflow:visible;max-height:none}
  .contact-widget__toggle{display:none}
}
