/* =========================================================================
   Sprzatus theme - main stylesheet
   ========================================================================= */
:root{
  --navy-950:#06264D; --navy-900:#08376E; --navy-850:#07315F;
  --blue-800:#0757A8; --blue-700:#0868CF;
  --cyan:#08C8DA; --cyan-dark:#05AEBE; --cyan-soft:#E7FBFD;
  --orange:#FF6A00; --orange-hover:#FF7A1A; --orange-dark:#E95D00;
  --white:#FFFFFF; --page-bg:#FFFFFF; --soft-bg:#F7FBFF;
  --text-main:#062B5F; --text-muted:#5F718A; --border:#DDE8F3;
  --shadow-soft:0 14px 35px rgba(6,43,95,.10);
  --shadow-card:0 8px 24px rgba(6,43,95,.08);
  --radius:18px;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:96px;-webkit-text-size-adjust:100%}
body{
  margin:0;background:var(--page-bg);color:var(--text-main);
  font-family:"Nunito Sans",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-weight:400;line-height:1.55;overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{margin:0;line-height:1.12;color:var(--text-main)}
p{margin:0}
ul{margin:0;padding:0;list-style:none}

.container{max-width:1320px;margin:0 auto;padding:0 32px}
.container-narrow{max-width:920px}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-weight:800;font-size:16px;border:0;cursor:pointer;
  padding:14px 24px;border-radius:14px;transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.btn-lg{padding:17px 28px;font-size:17px}
.btn .btn-ic svg,.btn .btn-arrow{width:20px;height:20px}
.btn .btn-ic svg{fill:currentColor}
.btn-orange{background:var(--orange);color:#fff;box-shadow:0 10px 22px rgba(255,106,0,.30)}
.btn-orange:hover{background:var(--orange-hover);transform:translateY(-2px);box-shadow:0 14px 28px rgba(255,106,0,.38)}
.btn-ghost{background:rgba(255,255,255,.10);color:#fff;border:1.5px solid rgba(255,255,255,.30)}
.btn-ghost:hover{background:rgba(255,255,255,.18);transform:translateY(-2px)}
.btn-arrow{display:inline-flex;align-items:center}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:60;
  background:var(--navy-950);transition:background .25s ease,box-shadow .25s ease,padding .25s ease;
}
.hdr-inner{display:flex;align-items:center;gap:22px;padding:16px 32px;}
.brand{flex:0 0 auto}
.brand img{height:46px;width:auto}
.main-nav{display:flex;align-items:center;gap:26px;margin-left:auto}
.main-nav a{color:#fff;font-weight:700;font-size:15.5px;opacity:.92;transition:opacity .15s,color .15s}
.main-nav a:hover{opacity:1}
.hdr-cta{flex:0 0 auto}
/* scrolled state */
.site-header.scrolled{background:var(--navy-950);box-shadow:0 6px 22px rgba(6,43,95,.25);backdrop-filter:blur(6px)}
/* when header sits over a light section (not hero) */
.site-header.solid{background:var(--navy-950);box-shadow:0 6px 22px rgba(6,43,95,.25)}

.burger{display:none;flex-direction:column;gap:5px;background:transparent;border:0;cursor:pointer;padding:8px;margin-left:auto}
.burger span{width:26px;height:3px;background:#fff;border-radius:3px;transition:.25s}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(8px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}

.mobile-nav{
  display:none;flex-direction:column;gap:4px;background:var(--navy-900);
  padding:14px 22px 22px;
}
.mobile-nav a{color:#fff;font-weight:700;padding:12px 6px;border-bottom:1px solid rgba(255,255,255,.10)}
.mobile-nav a.btn{justify-content:center;margin-top:12px;border-bottom:0}
.mobile-nav.open{display:flex}

/* ---------- Hero ---------- */
.hero{
  position:relative;margin-top:-78px;padding:120px 0 64px;
  background:linear-gradient(118deg,#06305f 0%,#0a4685 50%,#0c52a2 100%);
  overflow:hidden;
}
.hero-scene{position:absolute;right:0;bottom:0;width:64%;height:88%;z-index:1}
.hero-scene img{width:100%;height:100%;object-fit:cover;object-position:center bottom}
.hero-scene::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:
    linear-gradient(90deg,#06305f 0%,#0a4685 6%,rgba(10,70,133,.5) 16%,rgba(10,70,133,.12) 34%,rgba(10,70,133,.05) 100%),
    linear-gradient(180deg,#0a4685 0%,rgba(10,70,133,.86) 9%,rgba(10,70,133,.45) 20%,rgba(10,70,133,0) 38%,rgba(10,70,133,0) 76%,rgba(8,55,110,.28) 100%);
}
.hero-inner{position:relative;z-index:2}
.hero-text{max-width:500px}
.hero-title{font-weight:900;font-size:clamp(40px,5.2vw,66px);color:#fff;letter-spacing:-.5px}
.hero-title span{display:block}
.hero-sub{margin-top:8px;font-weight:900;font-size:clamp(28px,3.6vw,46px);color:var(--cyan);line-height:1.1}
.hero-sub span{display:block}
.hero-desc{margin-top:20px;max-width:430px;color:rgba(255,255,255,.86);font-size:17px;line-height:1.6}
.hero-phone{display:inline-flex;align-items:center;gap:16px;margin-top:22px;color:#fff}
.hero-phone-ic{
  width:58px;height:58px;flex:0 0 auto;border-radius:50%;display:grid;place-items:center;
  background:var(--orange);box-shadow:0 8px 18px rgba(255,106,0,.4)
}
.hero-phone-ic svg{width:28px;height:28px;fill:#fff}
.hero-phone-num{font-weight:900;font-size:clamp(34px,4.2vw,52px);letter-spacing:.5px}
.hero-cta{display:flex;flex-wrap:wrap;gap:14px;margin-top:26px}
.hero-wave{position:absolute;left:0;right:0;bottom:-1px;z-index:3;line-height:0;pointer-events:none}
.hero-wave svg{width:100%;height:120px;display:block}

/* ---------- Benefits bar ---------- */
.benefits-wrap{position:relative;z-index:5;margin-top:-58px}
.benefits{
  background:linear-gradient(180deg,var(--navy-850),var(--navy-950));
  border-radius:var(--radius);padding:26px 30px;
  display:grid;grid-template-columns:repeat(5,1fr);gap:22px;
  box-shadow:var(--shadow-soft);
}
.benefit{display:flex;align-items:center;gap:14px}
.benefit-ic{width:60px;height:60px;flex:0 0 auto;display:grid;place-items:center}
.benefit-ic img{width:100%;height:100%;object-fit:contain;filter:drop-shadow(0 4px 8px rgba(0,0,0,.25))}
.benefit-tx{display:flex;flex-direction:column}
.benefit-tx strong{color:#fff;font-weight:800;font-size:15px;line-height:1.2}
.benefit-tx span{color:rgba(255,255,255,.72);font-size:13px;line-height:1.3;margin-top:3px}

/* ---------- Generic section ---------- */
.section{padding:64px 0}
.section-soft{background:var(--soft-bg)}
.section-title{text-align:center;font-weight:900;font-size:clamp(26px,3.2vw,38px);margin-bottom:36px;color:var(--text-main)}
.section-title.left{text-align:left;margin-bottom:18px}

.card{background:#fff;border:1px solid var(--border);border-radius:16px;box-shadow:var(--shadow-card)}

.grid{display:grid;gap:22px}
.grid-6{grid-template-columns:repeat(6,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}

/* ---------- Services ---------- */
.service-card{padding:18px;text-align:center;transition:transform .2s ease,box-shadow .2s ease}
.service-card:hover{transform:translateY(-4px);box-shadow:0 16px 30px rgba(6,43,95,.14)}
.service-img{border-radius:12px;margin-bottom:14px;height:172px;display:grid;place-items:center}
.service-img img{max-width:92%;max-height:172px;width:auto;object-fit:contain;filter:drop-shadow(0 10px 16px rgba(6,43,95,.14))}
.service-card h3{font-weight:800;font-size:19px;margin-bottom:6px}
.service-card p{color:var(--text-muted);font-size:14px;line-height:1.45}

/* ---------- Why clients choose ---------- */
.why-card{display:grid;grid-template-columns:repeat(4,1fr);padding:34px 14px}
.why-col{text-align:center;padding:8px 22px;position:relative}
.why-col + .why-col::before{content:"";position:absolute;left:0;top:8px;bottom:8px;width:1px;background:var(--border)}
.why-ic{height:90px;display:grid;place-items:center;margin-bottom:14px}
.why-ic img{height:84px;width:auto;object-fit:contain}
.why-col h3{font-weight:800;font-size:18px;margin-bottom:8px}
.why-col p{color:var(--text-muted);font-size:14px;line-height:1.45}

/* ---------- Steps ---------- */
.steps{display:flex;align-items:stretch;justify-content:center;gap:0;flex-wrap:nowrap}
.step-card{position:relative;flex:1 1 0;padding:30px 18px 22px;text-align:center;transition:transform .2s ease}
.step-card:hover{transform:translateY(-4px)}
.step-num{
  position:absolute;top:-16px;left:-12px;width:42px;height:42px;border-radius:50%;
  display:grid;place-items:center;color:#fff;font-weight:900;font-size:19px;
  background:linear-gradient(180deg,var(--blue-700),var(--blue-800));box-shadow:0 6px 14px rgba(8,55,110,.35)
}
.step-img{height:150px;display:grid;place-items:center;margin-bottom:12px}
.step-img img{max-height:150px;width:auto;object-fit:contain}
.step-card h3{font-weight:800;font-size:18px;margin-bottom:6px}
.step-card p{color:var(--text-muted);font-size:14px;line-height:1.45}
.step-arrow{align-self:center;flex:0 0 auto;padding:0 8px;font-size:30px;color:var(--blue-700);font-weight:900}

/* ---------- Team ---------- */
.team-card{display:flex;align-items:center;gap:12px;padding:16px;transition:transform .2s ease,box-shadow .2s ease}
.team-card:hover{transform:translateY(-4px);box-shadow:0 16px 30px rgba(6,43,95,.14)}
.team-img{flex:0 0 108px;display:grid;place-items:center}
.team-img img{width:108px;max-height:152px;height:auto;object-fit:contain;filter:drop-shadow(0 8px 14px rgba(6,43,95,.18))}
.team-tx h3{font-weight:800;font-size:16px;margin-bottom:5px}
.team-tx p{color:var(--text-muted);font-size:13.5px;line-height:1.4}

/* ---------- Worth + Map (40/60) ---------- */
.worth-grid{display:grid;grid-template-columns:40% 60%;gap:24px;align-items:start}
.worth-card{padding:30px 30px 34px}
.worth-list{display:flex;flex-direction:column;gap:14px;margin-top:8px}
.worth-list li{display:flex;align-items:flex-start;gap:12px;font-size:16px;font-weight:600;color:var(--text-main)}
.li-check{flex:0 0 auto;width:24px;height:24px;border-radius:50%;display:grid;place-items:center;background:var(--cyan-soft)}
.li-check svg{width:15px;height:15px;fill:var(--cyan-dark)}
.map-card{padding:30px}
.map-sub{color:var(--cyan-dark);font-weight:800;font-size:17px;margin-top:-6px;margin-bottom:14px}
.map-img{border-radius:12px;overflow:hidden}
.map-img img{width:100%;height:auto;object-fit:contain}

/* ---------- Form ---------- */
.form-card{max-width:920px;margin:0 auto;padding:38px 40px}
.form-sub{text-align:center;color:var(--text-muted);max-width:620px;margin:0 auto 24px;font-size:15.5px}
.form-fallback{text-align:center;color:var(--text-muted)}
.form-body input[type=text],
.form-body input[type=tel],
.form-body input[type=email],
.form-body textarea,
.form-body select{
  width:100%;border:1px solid var(--border);border-radius:11px;padding:14px 16px;
  font:inherit;color:var(--text-main);background:#fff;transition:border .15s,box-shadow .15s;
}
.form-body textarea{min-height:120px;resize:vertical}
.form-body input:focus,.form-body textarea:focus,.form-body select:focus{
  outline:0;border-color:var(--cyan);box-shadow:0 0 0 3px rgba(8,200,218,.18)
}
.form-body .wpcf7-form .form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.form-body .wpcf7-form .form-files{grid-template-columns:repeat(3,1fr)}
.form-body p{margin:0 0 14px}
.form-body label{font-weight:700;font-size:14px;color:var(--text-main);display:block}
.form-body .file-row label{margin-bottom:6px}
.form-body input[type=file]{width:100%;border:1px dashed var(--border);border-radius:11px;padding:12px;background:var(--soft-bg);font-size:14px}
.form-body .acceptance-row{font-weight:400}
.form-body .wpcf7-list-item{margin:0}
.form-body input[type=submit],
.form-body .wpcf7-submit{
  width:100%;background:var(--orange);color:#fff;font-weight:800;font-size:17px;border:0;
  padding:16px 24px;border-radius:13px;cursor:pointer;transition:transform .18s,background .18s,box-shadow .18s;
  box-shadow:0 10px 22px rgba(255,106,0,.30)
}
.form-body input[type=submit]:hover,.form-body .wpcf7-submit:hover{background:var(--orange-hover);transform:translateY(-2px)}
.wpcf7-not-valid-tip{color:#d33;font-size:13px}
.wpcf7-response-output{border-radius:11px!important;margin:14px 0 0!important;padding:12px 16px!important;font-size:14px}

/* ---------- FAQ ---------- */
.faq{display:flex;flex-direction:column;gap:12px}
.faq-item{background:#fff;border:1px solid var(--border);border-radius:14px;box-shadow:var(--shadow-card);overflow:hidden}
.faq-item summary{
  cursor:pointer;list-style:none;padding:18px 22px;font-weight:800;font-size:17px;color:var(--text-main);
  display:flex;justify-content:space-between;align-items:center;gap:14px
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";font-size:24px;color:var(--cyan-dark);font-weight:700;line-height:1}
.faq-item[open] summary::after{content:"\2212"}
.faq-a{padding:0 22px 18px;color:var(--text-muted);font-size:15px;line-height:1.55}

/* ---------- CTA above footer ---------- */
.cta-wrap{padding:30px 0 64px}
.cta{
  background:linear-gradient(120deg,var(--navy-900),var(--blue-800));
  border-radius:var(--radius);padding:26px 38px;
  display:flex;align-items:center;justify-content:space-between;gap:26px;flex-wrap:wrap;
  box-shadow:var(--shadow-soft);position:relative;overflow:hidden
}
.cta-left{display:flex;align-items:center;gap:18px}
.cta-art{width:auto;height:150px;flex:0 0 auto;filter:drop-shadow(0 10px 18px rgba(0,0,0,.25))}
.cta-heading{color:#fff;font-weight:800;font-size:20px;margin-bottom:6px}
.cta-phone{display:inline-flex;align-items:center;gap:12px;color:#fff;font-weight:900;font-size:34px}
.cta-phone-ic{width:46px;height:46px;border-radius:50%;display:grid;place-items:center;background:var(--cyan);flex:0 0 auto}
.cta-phone-ic svg{width:24px;height:24px;fill:#fff}
.cta-adv{display:grid;grid-template-columns:repeat(4,auto);gap:18px 26px}
.cta-adv li{display:flex;flex-direction:column;align-items:center;gap:8px;color:#fff;font-weight:700;font-size:13.5px;text-align:center;max-width:120px}
.cta-adv li span{width:46px;height:46px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.12)}
.cta-adv li span svg{width:24px;height:24px;fill:#fff}

/* ---------- Footer ---------- */
.site-footer{background:var(--navy-950);color:rgba(255,255,255,.78)}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;gap:30px;padding:54px 32px 40px}
.footer-brand img{height:44px;width:auto;margin-bottom:14px}
.footer-brand p{font-size:14px;line-height:1.6;max-width:260px}
.footer-col h4{color:#fff;font-weight:800;font-size:16px;margin-bottom:16px}
.footer-list li{margin-bottom:9px}
.footer-list a,.footer-contact a{font-size:14px;transition:color .15s}
.footer-list a:hover,.footer-contact a:hover{color:var(--cyan)}
.footer-contact li{display:flex;align-items:center;gap:9px;margin-bottom:10px;font-size:14px}
.footer-contact li span{width:22px;height:22px;flex:0 0 auto;display:grid;place-items:center}
.footer-contact li span svg{width:18px;height:18px;fill:var(--cyan)}
.footer-social{display:flex;gap:12px}
.soc{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;transition:transform .18s}
.soc:hover{transform:translateY(-3px)}
.soc svg{width:22px;height:22px;fill:#fff}
.soc-fb{background:#1877F2}.soc-ig{background:radial-gradient(circle at 30% 110%,#fdf497,#fd5949 45%,#d6249f 70%,#285AEB)}.soc-google{background:#fff}
.soc-google svg{fill:#4285F4}
.footer-bottom{border-top:1px solid rgba(255,255,255,.10);padding:18px 0;font-size:13px;text-align:center;color:rgba(255,255,255,.6)}

/* ---------- To top ---------- */
.totop{
  position:fixed;right:24px;bottom:24px;z-index:70;width:50px;height:50px;border:0;cursor:pointer;
  border-radius:50%;display:grid;place-items:center;opacity:0;visibility:hidden;transform:translateY(12px);
  background:linear-gradient(180deg,var(--cyan),var(--navy-900));box-shadow:0 10px 24px rgba(6,43,95,.35);
  transition:opacity .25s,visibility .25s,transform .25s
}
.totop.show{opacity:1;visibility:visible;transform:translateY(0)}
.totop:hover{transform:translateY(-3px)}
.totop svg{width:24px;height:24px;fill:#fff}

/* ---------- Reveal animations ---------- */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease}
.reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1!important;transform:none!important;transition:none}
  html{scroll-behavior:auto}
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width:1200px){
  .hero-inner{grid-template-columns:44% 56%}
  .grid-6{grid-template-columns:repeat(3,1fr)}
  .cta-adv{grid-template-columns:repeat(4,auto);gap:14px}
}
@media (max-width:992px){
  .main-nav,.hdr-cta{display:none}
  .burger{display:flex}
  .hero{display:flex;flex-direction:column;padding:96px 0 0}
  .hero-scene{position:static;order:2;width:100%;height:auto;margin-top:18px}
  .hero-scene img{height:auto;object-fit:contain}
  .hero-scene::after{display:none}
  .hero-inner{order:1;text-align:center}
  .hero-text{max-width:none}
  .hero-desc{margin-left:auto;margin-right:auto}
  .hero-phone{justify-content:center}
  .hero-cta{justify-content:center}
  .hero-wave{display:none}
  .benefits{grid-template-columns:repeat(2,1fr);gap:18px}
  .why-card{grid-template-columns:repeat(2,1fr);gap:20px 0}
  .why-col + .why-col::before{display:none}
  .why-col:nth-child(2)::before{display:none}
  .steps{flex-wrap:wrap;gap:26px 0}
  .step-card{flex:0 0 calc(50% - 0px)}
  .step-arrow{display:none}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .worth-grid{grid-template-columns:1fr;gap:20px}
  .cta{flex-direction:column;align-items:flex-start}
  .cta-adv{grid-template-columns:repeat(4,1fr);width:100%}
  .footer-grid{grid-template-columns:1.4fr 1fr 1fr;gap:26px}
}
@media (max-width:768px){
  .container{padding:0 20px}
  .hdr-inner{padding:14px 20px}
  .section{padding:48px 0}
  .grid-6{grid-template-columns:repeat(2,1fr)}
  .hero-title{font-size:clamp(34px,8vw,44px)}
  .hero-sub{font-size:clamp(26px,7vw,34px)}
  .hero-phone-num{font-size:clamp(30px,9vw,40px)}
  .team-card{flex-direction:column;text-align:center}
  .team-img{flex:0 0 auto}
  .cta-adv{grid-template-columns:repeat(2,1fr);gap:16px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:24px}
  .footer-brand{grid-column:1/-1}
  .form-card{padding:28px 22px}
  .form-body .wpcf7-form .form-row{grid-template-columns:1fr}
}
@media (max-width:560px){
  .benefits{grid-template-columns:1fr}
  .grid-6,.grid-4{grid-template-columns:1fr}
  .why-card{grid-template-columns:1fr}
  .step-card{flex:0 0 100%}
  .hero-cta .btn{width:100%}
  .cta-adv{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr}
  .totop{right:16px;bottom:16px}
}

/* =========================================================================
   Art direction pass: navy mockup style
   ========================================================================= */
:root{
  --yellow:#FFC400;
  --yellow-hover:#FFD21F;
  --ink:#041832;
  --wave-blue:#EAF8FF;
}

.btn-orange{
  background:linear-gradient(180deg,var(--yellow),#FFB800);
  color:var(--navy-950);
  box-shadow:0 14px 28px rgba(255,196,0,.32);
}
.btn-orange:hover{
  background:var(--yellow-hover);
  box-shadow:0 18px 34px rgba(255,196,0,.42);
}
.btn-ghost{
  background:rgba(4,24,50,.78);
  border-color:rgba(255,255,255,.18);
}

.hero{
  margin-top:0;
  min-height:650px;
  padding:78px 0 112px;
  isolation:isolate;
  background:
    radial-gradient(620px 520px at 73% 52%,rgba(255,196,0,.98) 0 48%,rgba(255,196,0,.22) 49%,rgba(255,196,0,0) 70%),
    linear-gradient(118deg,#041832 0%,#06264D 46%,#0B4C8E 100%);
}
.hero::before{
  content:"";position:absolute;inset:0;z-index:0;pointer-events:none;
  background:
    radial-gradient(circle at 8px 8px,rgba(255,255,255,.16) 2px,transparent 2.5px) right 42px top 72px/22px 22px no-repeat,
    linear-gradient(90deg,rgba(4,24,50,.92) 0%,rgba(4,24,50,.76) 34%,rgba(4,24,50,.08) 60%,rgba(4,24,50,0) 100%);
}
.hero-scene{
  right:max(18px,calc((100vw - 1320px)/2));
  bottom:36px;
  width:min(58vw,760px);
  height:auto;
}
.hero-scene::before{
  content:"";position:absolute;right:3%;bottom:8%;z-index:0;
  width:86%;aspect-ratio:1/.78;border-radius:52% 48% 46% 54%/58% 48% 52% 42%;
  background:linear-gradient(135deg,var(--yellow),#FFB300);
  box-shadow:0 22px 50px rgba(255,196,0,.22);
}
.hero-scene::after{display:none}
.hero-scene img{
  position:relative;z-index:1;width:100%;height:auto;object-fit:contain;object-position:center bottom;
  filter:drop-shadow(0 26px 32px rgba(0,0,0,.30));
}
.hero-text{max-width:560px}
.hero-title{
  font-size:clamp(42px,5.6vw,76px);
  letter-spacing:0;
  text-shadow:0 5px 18px rgba(0,0,0,.18);
}
.hero-sub{
  color:var(--yellow);
  font-size:clamp(30px,3.8vw,50px);
  text-shadow:0 4px 14px rgba(0,0,0,.14);
}
.hero-desc{max-width:500px;color:rgba(255,255,255,.9);font-weight:600}
.hero-phone-ic{background:var(--yellow);box-shadow:0 12px 24px rgba(255,196,0,.34)}
.hero-phone-ic svg{fill:var(--navy-950)}
.hero-phone-num{color:#fff;text-shadow:0 5px 18px rgba(0,0,0,.18)}
.hero-wave svg{height:150px}

.benefits-wrap{margin-top:-78px}
.benefits{
  background:#fff;
  border:1px solid rgba(6,43,95,.08);
  border-radius:26px;
  padding:18px 22px;
}
.benefit-tx strong{color:var(--text-main)}
.benefit-tx span{color:var(--text-muted)}
.benefit-ic img{filter:drop-shadow(0 8px 14px rgba(6,43,95,.12))}

#uslugi{
  position:relative;
  overflow:hidden;
  margin-top:48px;
  padding:90px 0 98px;
  color:#fff;
  background:
    radial-gradient(780px 260px at 82% 14%,rgba(255,196,0,.18),transparent 62%),
    linear-gradient(135deg,var(--navy-900),var(--navy-950));
}
#uslugi::before,
#uslugi::after{
  content:"";position:absolute;left:-5%;right:-5%;height:92px;background:#fff;z-index:0;
}
#uslugi::before{top:-48px;border-radius:0 0 50% 50%/0 0 100% 100%}
#uslugi::after{bottom:-50px;border-radius:50% 50% 0 0/100% 100% 0 0}
#uslugi .container{position:relative;z-index:1}
#uslugi .section-title{color:#fff;text-align:left;margin-bottom:28px}
#uslugi .services{gap:0;border-top:1px solid rgba(255,255,255,.16);border-bottom:1px solid rgba(255,255,255,.16)}
#uslugi .service-card{
  background:transparent;border:0;border-radius:0;box-shadow:none;color:#fff;padding:22px 18px;
  border-right:1px solid rgba(255,255,255,.16);
}
#uslugi .service-card:last-child{border-right:0}
#uslugi .service-card:hover{background:rgba(255,255,255,.07);box-shadow:none}
#uslugi .service-img{height:126px;margin-bottom:12px}
#uslugi .service-img img{max-height:126px;filter:drop-shadow(0 12px 18px rgba(0,0,0,.26))}
#uslugi .service-card h3{color:#fff}
#uslugi .service-card p{color:rgba(255,255,255,.78)}

.section-soft{background:var(--wave-blue)}
.why-card{
  border:0;
  box-shadow:none;
  background:#fff;
  border-radius:26px;
}
#jak-dzialamy{
  position:relative;overflow:hidden;
  background:var(--wave-blue);
  padding-top:82px;
  padding-bottom:84px;
}
#jak-dzialamy::before{
  content:"";position:absolute;left:-5%;right:-5%;top:-52px;height:96px;background:#fff;
  border-radius:0 0 50% 50%/0 0 100% 100%;
}
#jak-dzialamy .container{position:relative;z-index:1}
.step-card,.team-card,.worth-card,.map-card,.form-card,.faq-item{
  border-radius:24px;
}
.step-card{
  border-color:rgba(6,43,95,.08);
  box-shadow:0 14px 30px rgba(6,43,95,.08);
}
.step-num{
  background:linear-gradient(180deg,var(--yellow),#FFB800);
  color:var(--navy-950);
}
.step-arrow{color:var(--navy-900)}

.cta{
  background:
    radial-gradient(360px 180px at 78% 50%,rgba(255,196,0,.20),transparent 68%),
    linear-gradient(120deg,var(--ink),var(--navy-950));
}
.cta-phone-ic{background:var(--yellow)}
.cta-phone-ic svg{fill:var(--navy-950)}

@media (max-width:1200px){
  .hero-scene{width:min(58vw,690px)}
  #uslugi .grid-6{grid-template-columns:repeat(3,1fr)}
  #uslugi .service-card:nth-child(3){border-right:0}
}
@media (max-width:992px){
  .hero{min-height:0;padding:68px 0 0}
  .hero::before{background:linear-gradient(180deg,rgba(4,24,50,.88),rgba(4,24,50,.16))}
  .hero-scene{width:100%;right:auto;bottom:auto;padding:0 20px 34px}
  .hero-scene::before{right:8%;bottom:8%;width:78%}
  .benefits-wrap{margin-top:-22px}
}
@media (max-width:768px){
  #uslugi{margin-top:34px;padding:76px 0 84px}
  #uslugi .grid-6{grid-template-columns:repeat(2,1fr)}
  #uslugi .service-card:nth-child(3){border-right:1px solid rgba(255,255,255,.16)}
  #uslugi .service-card:nth-child(2n){border-right:0}
}
@media (max-width:560px){
  .hero{padding-top:46px}
  .hero-scene{padding-bottom:26px}
  #uslugi .grid-6{grid-template-columns:1fr}
  #uslugi .service-card{border-right:0;border-bottom:1px solid rgba(255,255,255,.16)}
  #uslugi .service-card:last-child{border-bottom:0}
}

/* =========================================================================
   Mockup alignment pass: hero and services
   ========================================================================= */
:root{
  --brand-navy:#082F5F;
  --brand-navy-deep:#061F42;
  --brand-blue:#0B4F94;
  --brand-yellow:#FFC400;
  --brand-cream:#FFFDF4;
}

.site-header,
.site-header.scrolled,
.site-header.solid{
  background:var(--brand-navy);
}

.hero{
  min-height:636px;
  padding:52px 0 112px;
  background:
    radial-gradient(560px 500px at 72% 56%,rgba(255,196,0,.96) 0 47%,rgba(255,196,0,.18) 48%,rgba(255,196,0,0) 68%),
    linear-gradient(105deg,var(--brand-navy) 0%,#093A72 50%,var(--brand-blue) 100%);
}
.hero::before{
  background:
    radial-gradient(circle at 8px 8px,rgba(255,255,255,.14) 2px,transparent 2.5px) right 54px top 72px/22px 22px no-repeat,
    linear-gradient(90deg,rgba(8,47,95,.10) 0%,rgba(8,47,95,.05) 48%,rgba(8,47,95,0) 78%);
}
.hero-kicker{
  margin:0 0 12px;
  color:var(--brand-yellow);
  font-size:14px;
  font-weight:900;
  letter-spacing:.11em;
  text-transform:uppercase;
}
.hero-text{
  max-width:680px;
}
.hero-title{
  font-size:clamp(44px,4.4vw,66px);
  line-height:1.12;
  letter-spacing:0;
}
.hero-title span:nth-child(2){
  white-space:nowrap;
}
.hero-sub{
  margin-top:18px;
  font-size:clamp(30px,3.1vw,46px);
  line-height:1.12;
  max-width:520px;
}
.hero-desc{
  margin-top:24px;
  max-width:560px;
  font-size:17px;
}
.hero-phone{
  margin-top:26px;
}
.hero-phone-ic{
  width:58px;
  height:58px;
  background:var(--brand-yellow);
  box-shadow:0 14px 26px rgba(255,196,0,.28);
}
.hero-phone-num{
  font-size:clamp(36px,3.8vw,54px);
}
.hero-cta{
  margin-top:28px;
}
.hero-scene{
  right:max(44px,calc((100vw - 1320px)/2 - 8px));
  bottom:28px;
  width:min(55vw,770px);
}
.hero-scene::before{
  right:-1%;
  bottom:0;
  width:92%;
  border-radius:53% 47% 48% 52%/57% 49% 51% 43%;
}
.hero-scene img{
  filter:drop-shadow(0 22px 30px rgba(0,0,0,.26));
}
.hero-wave svg{
  height:106px;
}

.benefits-wrap{
  margin-top:-74px;
  z-index:8;
}
.benefits{
  max-width:1264px;
  margin:0 auto;
  border-radius:24px;
  padding:20px 24px;
  gap:28px;
  box-shadow:0 20px 42px rgba(6,43,95,.13);
}
.benefit{
  gap:16px;
}
.benefit-ic{
  width:58px;
  height:58px;
}

#uslugi{
  margin-top:-22px;
  padding:116px 0 108px;
  background:
    radial-gradient(760px 320px at 86% 10%,rgba(255,196,0,.10),transparent 66%),
    linear-gradient(180deg,#0A3E76 0%,#073461 46%,#062B52 100%);
}
#uslugi::before{
  top:-64px;
  height:124px;
  left:-8%;
  right:-8%;
  border-radius:0 0 50% 50%/0 0 82% 82%;
}
#uslugi::after{
  bottom:-66px;
  height:116px;
  left:-8%;
  right:-8%;
  border-radius:50% 50% 0 0/82% 82% 0 0;
}
#uslugi .section-title{
  margin-bottom:34px;
  font-size:clamp(32px,3.2vw,42px);
}
#uslugi .services{
  border-color:rgba(255,255,255,.20);
}
#uslugi .service-card{
  padding:28px 28px 30px;
  border-color:rgba(255,255,255,.18);
}
#uslugi .service-img{
  height:118px;
}
#uslugi .service-img img{
  max-height:118px;
}
#uslugi .service-card h3{
  font-size:21px;
}
#uslugi .service-card p{
  font-size:15px;
  line-height:1.52;
}

@media (max-width:1200px){
  .hero-text{max-width:600px}
  .hero-title span:nth-child(2){white-space:normal}
  .hero-scene{right:24px;width:min(54vw,650px)}
}
@media (max-width:992px){
  .hero{
    padding:54px 0 0;
    background:linear-gradient(180deg,var(--brand-navy) 0%,var(--brand-blue) 100%);
  }
  .hero-title span:nth-child(2){white-space:normal}
  .hero-scene{right:auto;width:100%}
  #uslugi{margin-top:-12px}
}
@media (max-width:768px){
  .hero{padding-top:40px}
  .hero-kicker{text-align:center}
  .hero-title{font-size:clamp(36px,8vw,48px)}
  .benefits{gap:18px}
  #uslugi{padding-top:94px}
}

/* =========================================================================
   Final section-wave pass: controlled SVG waves and brand-orange accents
   ========================================================================= */
:root{
  --brand-accent:#FF6A00;
  --brand-accent-hover:#FF7A1A;
  --brand-accent-soft:#FFB347;
}

.btn-orange,
.hero-phone-ic,
.step-num,
.cta-phone-ic{
  background:linear-gradient(180deg,var(--brand-accent-hover),var(--brand-accent));
  color:#fff;
  box-shadow:0 14px 28px rgba(255,106,0,.30);
}
.btn-orange:hover{
  background:var(--brand-accent-hover);
  box-shadow:0 18px 34px rgba(255,106,0,.38);
}
.btn-orange,
.btn-orange .btn-ic svg,
.hero-phone-ic svg,
.cta-phone-ic svg{
  fill:#fff;
}
.hero-kicker,
.hero-sub{
  color:var(--brand-accent-soft);
}

.hero{
  background:
    radial-gradient(560px 500px at 72% 56%,rgba(255,138,0,.88) 0 47%,rgba(255,138,0,.18) 48%,rgba(255,138,0,0) 68%),
    linear-gradient(105deg,var(--brand-navy) 0%,#093A72 50%,var(--brand-blue) 100%);
}
.hero-scene::before{
  background:linear-gradient(135deg,#FFB347 0%,var(--brand-accent) 100%);
  border-radius:50%;
}
.hero-wave svg{
  height:92px;
}

.benefits-wrap{
  margin-top:-64px;
}

#uslugi{
  margin-top:-36px;
  padding:108px 0 104px;
  background:#073866;
}
#uslugi::before,
#uslugi::after{
  left:0;
  right:0;
  height:82px;
  border-radius:0;
  background-repeat:no-repeat;
  background-position:center;
  background-size:100% 100%;
  pointer-events:none;
}
#uslugi::before{
  top:-1px;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 82' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M0 0H1440V36C1180 70 920 64 720 42C490 18 260 76 0 34V0Z'/%3E%3C/svg%3E");
}
#uslugi::after{
  bottom:-1px;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 82' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M0 82H1440V40C1190 12 930 16 710 42C470 70 250 20 0 42V82Z'/%3E%3C/svg%3E");
}
#uslugi .services{
  border-top-color:rgba(255,255,255,.18);
  border-bottom-color:rgba(255,255,255,.18);
}
#uslugi .service-card{
  border-right-color:rgba(255,255,255,.18);
}

#uslugi + .section-soft{
  background:#fff;
  padding-top:58px;
}

#jak-dzialamy{
  background:#EAF8FF;
}
#jak-dzialamy::before{
  display:none;
}

@media (max-width:992px){
  #uslugi{
    margin-top:-18px;
    padding-top:96px;
    padding-bottom:94px;
  }
  #uslugi::before,
  #uslugi::after{
    height:64px;
  }
}

/* =========================================================================
   Section depth pass: layered bands without random blobs
   ========================================================================= */
:root{
  --brand-sky:#EAF8FF;
  --brand-sky-deep:#D9F1FF;
}

.section{
  position:relative;
}
.section-title{
  position:relative;
}
.section-title::after{
  content:"";
  display:block;
  width:72px;
  height:5px;
  margin:14px auto 0;
  border-radius:999px;
  background:linear-gradient(90deg,var(--brand-accent),var(--brand-accent-soft));
}
.section-title.left::after,
#uslugi .section-title::after{
  margin-left:0;
}

#uslugi + .section-soft{
  margin-top:-1px;
  padding:54px 0 64px;
  background:#fff;
}
#uslugi + .section-soft .why-card{
  margin-top:-8px;
  border:1px solid rgba(6,43,95,.07);
  box-shadow:0 18px 44px rgba(6,43,95,.10);
}

#jak-dzialamy{
  margin-top:0;
  padding:104px 0 112px;
  background:linear-gradient(180deg,var(--brand-sky) 0%,var(--brand-sky-deep) 100%);
  overflow:hidden;
}
#jak-dzialamy::before,
#jak-dzialamy::after{
  content:"";
  display:block;
  position:absolute;
  left:0;
  right:0;
  height:86px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:100% 100%;
  pointer-events:none;
  z-index:0;
}
#jak-dzialamy::before{
  top:-1px;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 86' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M0 0H1440V42C1180 18 920 62 720 44C482 22 258 8 0 46V0Z'/%3E%3C/svg%3E");
}
#jak-dzialamy::after{
  bottom:-1px;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 86' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M0 86H1440V42C1190 70 942 18 706 42C462 68 232 56 0 34V86Z'/%3E%3C/svg%3E");
}
#jak-dzialamy .container{
  position:relative;
  z-index:1;
}
.step-card{
  background:rgba(255,255,255,.94);
  border-color:rgba(6,43,95,.06);
  box-shadow:0 18px 42px rgba(6,43,95,.10);
}

#jak-dzialamy + .section-soft{
  background:#fff;
  padding-top:54px;
}
#jak-dzialamy + .section-soft .team-card{
  border-color:rgba(6,43,95,.06);
  box-shadow:0 16px 36px rgba(6,43,95,.08);
}

#gdzie-dzialamy{
  padding:78px 0 82px;
  background:
    linear-gradient(180deg,#fff 0%,#F5FBFF 100%);
}
#gdzie-dzialamy .worth-card,
#gdzie-dzialamy .map-card{
  border:1px solid rgba(6,43,95,.07);
  box-shadow:0 18px 44px rgba(6,43,95,.09);
}

#wycena{
  padding:92px 0;
  background:
    linear-gradient(180deg,#F5FBFF 0%,#fff 100%);
}
#wycena .form-card{
  box-shadow:0 22px 54px rgba(6,43,95,.12);
}

.cta-wrap{
  padding-top:18px;
}

@media (max-width:992px){
  #jak-dzialamy{
    padding:84px 0 92px;
  }
  #jak-dzialamy::before,
  #jak-dzialamy::after{
    height:64px;
  }
}

/* =========================================================================
   Logo navy pass: align global dark blue with the logo outline
   ========================================================================= */
:root{
  --logo-navy:#082050;
  --logo-navy-deep:#06183F;
  --logo-navy-lift:#0B356A;
  --navy-950:var(--logo-navy);
  --navy-900:#092A60;
  --navy-850:#0B356A;
  --brand-navy:var(--logo-navy);
  --brand-navy-deep:var(--logo-navy-deep);
  --brand-blue:var(--logo-navy-lift);
  --text-main:var(--logo-navy);
}

.site-header,
.site-header.scrolled,
.site-header.solid,
.site-footer{
  background:var(--logo-navy);
}

.hero{
  background:
    radial-gradient(560px 500px at 72% 56%,rgba(255,106,0,.78) 0 47%,rgba(255,106,0,.16) 48%,rgba(255,106,0,0) 68%),
    linear-gradient(105deg,var(--logo-navy) 0%,#0A2B60 54%,var(--logo-navy-lift) 100%);
}
.hero::before{
  background:
    radial-gradient(circle at 8px 8px,rgba(255,255,255,.12) 2px,transparent 2.5px) right 54px top 72px/22px 22px no-repeat,
    linear-gradient(90deg,rgba(8,32,80,.08) 0%,rgba(8,32,80,.04) 48%,rgba(8,32,80,0) 78%);
}

#uslugi{
  background:var(--logo-navy);
}

.cta{
  background:
    radial-gradient(360px 180px at 78% 50%,rgba(255,106,0,.16),transparent 68%),
    linear-gradient(120deg,var(--logo-navy-deep),var(--logo-navy));
}

.totop{
  background:linear-gradient(180deg,var(--brand-accent),var(--logo-navy));
}

/* =========================================================================
   Contrast pass: deeper navy and dark text on orange CTAs
   ========================================================================= */
:root{
  --logo-navy:#041536;
  --logo-navy-deep:#020A1F;
  --logo-navy-lift:#082653;
  --brand-navy:var(--logo-navy);
  --brand-navy-deep:var(--logo-navy-deep);
  --brand-blue:var(--logo-navy-lift);
  --text-main:var(--logo-navy);
}

.site-header,
.site-header.scrolled,
.site-header.solid,
.site-footer,
#uslugi{
  background:var(--logo-navy);
}

.hero{
  background:
    radial-gradient(560px 500px at 72% 56%,rgba(255,106,0,.74) 0 47%,rgba(255,106,0,.14) 48%,rgba(255,106,0,0) 68%),
    linear-gradient(105deg,var(--logo-navy-deep) 0%,var(--logo-navy) 54%,var(--logo-navy-lift) 100%);
}

.btn-orange{
  color:var(--logo-navy-deep);
  text-shadow:none;
}
.btn-orange .btn-ic svg,
.btn-orange .btn-arrow,
.hero-phone-ic svg,
.cta-phone-ic svg{
  color:var(--logo-navy-deep);
  fill:var(--logo-navy-deep);
}
.btn-orange:hover{
  color:var(--logo-navy-deep);
}

.hero-phone-ic,
.cta-phone-ic{
  box-shadow:0 14px 28px rgba(255,106,0,.34);
}

.cta{
  background:
    radial-gradient(360px 180px at 78% 50%,rgba(255,106,0,.14),transparent 68%),
    linear-gradient(120deg,var(--logo-navy-deep),var(--logo-navy));
}

/* =========================================================================
   Darker gradients pass
   ========================================================================= */
:root{
  --logo-navy-lift:#061F45;
}

.hero{
  background:
    radial-gradient(520px 470px at 72% 56%,rgba(255,106,0,.56) 0 43%,rgba(255,106,0,.10) 48%,rgba(255,106,0,0) 68%),
    linear-gradient(105deg,var(--logo-navy-deep) 0%,#03102C 46%,var(--logo-navy) 74%,var(--logo-navy-lift) 100%);
}
.hero::before{
  background:
    radial-gradient(circle at 8px 8px,rgba(255,255,255,.09) 2px,transparent 2.5px) right 54px top 72px/22px 22px no-repeat,
    linear-gradient(90deg,rgba(2,10,31,.18) 0%,rgba(2,10,31,.08) 52%,rgba(2,10,31,0) 82%);
}
.hero-scene::before{
  background:linear-gradient(135deg,#FF8A1A 0%,#D94E00 100%);
  opacity:.92;
}

#uslugi{
  background:
    linear-gradient(180deg,var(--logo-navy) 0%,var(--logo-navy-deep) 100%);
}

.cta{
  background:
    radial-gradient(340px 160px at 78% 50%,rgba(255,106,0,.10),transparent 70%),
    linear-gradient(120deg,var(--logo-navy-deep) 0%,#03102C 56%,var(--logo-navy) 100%);
}

.totop{
  background:linear-gradient(180deg,var(--brand-accent),var(--logo-navy-deep));
}

/* =========================================================================
   Hero composition pass: larger art and integrated benefits
   ========================================================================= */
.hero{
  min-height:650px;
}
.hero-scene{
  right:max(22px,calc((100vw - 1320px)/2 - 36px));
  bottom:74px;
  width:min(61vw,860px);
}
.hero-scene::before{
  right:1%;
  bottom:-7%;
  width:88%;
}

.benefits-wrap{
  margin-top:-104px;
  z-index:9;
}
.benefits{
  background:linear-gradient(180deg,rgba(3,16,44,.94),rgba(2,10,31,.90));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 24px 54px rgba(2,10,31,.38);
  backdrop-filter:blur(8px);
}
.benefit{
  min-width:0;
}
.benefit-ic{
  width:54px;
  height:54px;
  border-radius:50%;
  background:linear-gradient(180deg,var(--brand-accent-hover),var(--brand-accent));
  box-shadow:0 12px 24px rgba(255,106,0,.20);
}
.benefit-ic img{
  width:42px;
  height:42px;
  filter:none;
}
.benefit-tx strong{
  color:#fff;
}
.benefit-tx span{
  color:rgba(255,255,255,.68);
}

@media (max-width:1200px){
  .hero-scene{
    right:12px;
    bottom:70px;
    width:min(58vw,740px);
  }
}
@media (max-width:992px){
  .hero-scene{
    bottom:auto;
    width:100%;
  }
  .benefits-wrap{
    margin-top:-18px;
  }
  .benefits{
    background:#fff;
    border-color:rgba(6,43,95,.08);
    box-shadow:0 18px 42px rgba(6,43,95,.12);
  }
  .benefit-tx strong{color:var(--text-main)}
  .benefit-tx span{color:var(--text-muted)}
}

/* =========================================================================
   Benefits spacing pass
   ========================================================================= */
.benefits-wrap{
  margin-top:34px;
  margin-bottom:46px;
}
#uslugi{
  margin-top:0;
}

@media (max-width:992px){
  .benefits-wrap{
    margin-top:24px;
    margin-bottom:34px;
  }
}

/* =========================================================================
   Process section brand pass
   ========================================================================= */
#jak-dzialamy{
  padding:106px 0 112px;
  background:
    radial-gradient(680px 260px at 78% 12%,rgba(255,106,0,.10),transparent 68%),
    linear-gradient(180deg,var(--logo-navy) 0%,var(--logo-navy-deep) 100%);
}
#jak-dzialamy::before{
  display:block;
  top:-1px;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 86' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M0 0H1440V40C1190 72 930 28 720 48C488 70 250 38 0 50V0Z'/%3E%3C/svg%3E");
}
#jak-dzialamy::after{
  display:block;
  bottom:-1px;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 86' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M0 86H1440V38C1180 18 934 66 708 44C462 20 230 72 0 42V86Z'/%3E%3C/svg%3E");
}
#jak-dzialamy .section-title{
  color:#fff;
}
#jak-dzialamy .step-card{
  background:rgba(255,255,255,.96);
  border-color:rgba(255,255,255,.14);
  box-shadow:0 22px 52px rgba(2,10,31,.34);
}
#jak-dzialamy .step-num{
  color:var(--logo-navy-deep);
}
#jak-dzialamy .step-arrow{
  color:var(--brand-accent-soft);
  text-shadow:0 8px 18px rgba(255,106,0,.22);
}

@media (max-width:992px){
  #jak-dzialamy{
    padding:88px 0 96px;
  }
}

/* =========================================================================
   Coverage map pass
   ========================================================================= */
#gdzie-dzialamy{
  padding:76px 0 90px;
  background:
    radial-gradient(760px 360px at 78% 18%,rgba(255,106,0,.06),transparent 70%),
    linear-gradient(180deg,#fff 0%,#F6FAFF 100%);
}
#gdzie-dzialamy .worth-grid{
  grid-template-columns:minmax(340px,.9fr) minmax(420px,1.1fr);
  align-items:start;
}
#gdzie-dzialamy .worth-card,
#gdzie-dzialamy .map-card{
  border:1px solid rgba(4,21,54,.08);
  border-radius:22px;
  box-shadow:0 20px 48px rgba(2,10,31,.10);
}
#gdzie-dzialamy .map-card{
  padding:30px 30px 34px;
  overflow:hidden;
}
#gdzie-dzialamy .map-sub{
  color:var(--brand-accent);
}
.map-visual{
  display:grid;
  place-items:center;
  margin:10px auto 0;
  max-width:580px;
  min-height:360px;
  border-radius:20px;
  background:
    radial-gradient(circle at 50% 50%,rgba(0,176,189,.13) 0 24%,rgba(0,176,189,.08) 24% 43%,rgba(255,106,0,.07) 43% 62%,transparent 63%),
    linear-gradient(180deg,#F8FCFF 0%,#EFF7FF 100%);
  border:1px solid rgba(4,21,54,.06);
}
.coverage-map{
  position:relative;
  width:min(100%,520px);
  height:330px;
}
.coverage-map::before,
.coverage-map::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:70%;
  height:1px;
  background:rgba(4,21,54,.12);
  transform-origin:center;
}
.coverage-map::before{transform:translate(-50%,-50%) rotate(28deg)}
.coverage-map::after{transform:translate(-50%,-50%) rotate(-28deg)}
.map-ring{
  position:absolute;
  left:50%;
  top:50%;
  border-radius:50%;
  transform:translate(-50%,-50%);
}
.ring-outer{
  width:270px;
  height:270px;
  background:rgba(255,245,229,.72);
  border:1px solid rgba(255,106,0,.08);
}
.ring-mid{
  width:196px;
  height:196px;
  background:rgba(0,176,189,.15);
  border:1px solid rgba(0,176,189,.10);
}
.ring-inner{
  width:118px;
  height:118px;
  background:rgba(0,176,189,.20);
  border:1px solid rgba(0,176,189,.12);
}
.city{
  position:absolute;
  color:var(--logo-navy);
  font-size:1.05rem;
  font-weight:900;
  line-height:1.05;
  white-space:nowrap;
}
.city::after{
  content:"";
  position:absolute;
  width:9px;
  height:9px;
  border-radius:50%;
  background:#0A5AA5;
  box-shadow:0 0 0 5px rgba(10,90,165,.08);
}
.city-top{left:50%;top:19px;transform:translateX(-50%)}
.city-top::after{left:50%;top:34px;transform:translateX(-50%)}
.city-left-top{left:28px;top:122px}
.city-left-top::after{right:-22px;top:13px}
.city-right-top{right:34px;top:122px}
.city-right-top::after{left:-22px;top:13px}
.city-left-bottom{left:44px;top:238px}
.city-left-bottom::after{right:-22px;top:10px}
.city-right-bottom{right:12px;top:238px}
.city-right-bottom::after{left:-22px;top:10px}
.map-pin{
  position:absolute;
  left:50%;
  top:50%;
  display:grid;
  place-items:center;
  width:54px;
  height:54px;
  color:#fff;
  transform:translate(-50%,-54%);
}
.map-pin svg{
  width:54px;
  height:54px;
  fill:#0A5AA5;
  filter:drop-shadow(0 12px 18px rgba(4,21,54,.22));
}
.city-center{
  position:absolute;
  left:50%;
  top:60%;
  color:#00AEBB;
  font-size:1.85rem;
  line-height:1;
  transform:translateX(-50%);
}
.range-badge{
  position:absolute;
  right:62px;
  bottom:20px;
  padding:12px 26px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(180deg,#00B7C5,#0098A6);
  box-shadow:0 14px 28px rgba(0,176,189,.20);
  font-size:1.45rem;
  font-weight:900;
  line-height:1;
}
@media (max-width:992px){
  #gdzie-dzialamy .worth-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width:560px){
  #gdzie-dzialamy{
    padding:58px 0 70px;
  }
  #gdzie-dzialamy .map-card{
    padding:24px 18px 26px;
  }
  .map-visual{
    min-height:315px;
  }
  .coverage-map{
    height:288px;
  }
  .ring-outer{width:220px;height:220px}
  .ring-mid{width:162px;height:162px}
  .ring-inner{width:100px;height:100px}
  .city{font-size:.82rem}
  .city-left-top{left:0;top:108px}
  .city-right-top{right:4px;top:108px}
  .city-left-bottom{left:10px;top:212px}
  .city-right-bottom{right:0;top:212px}
  .city-center{font-size:1.45rem}
  .range-badge{right:32px;bottom:12px;font-size:1.05rem;padding:10px 18px}
}

/* =========================================================================
   Quote form redesign pass
   ========================================================================= */
#wycena{
  scroll-margin-top:104px;
  padding:112px 0 118px;
  background:
    radial-gradient(760px 360px at 18% 16%,rgba(255,106,0,.13),transparent 68%),
    radial-gradient(620px 280px at 86% 82%,rgba(0,176,189,.08),transparent 70%),
    linear-gradient(180deg,var(--logo-navy) 0%,var(--logo-navy-deep) 100%);
}
.form-shell{
  display:grid;
  grid-template-columns:minmax(300px,.82fr) minmax(560px,1.18fr);
  gap:28px;
  align-items:stretch;
  max-width:1180px;
  margin:0 auto;
}
.form-aside{
  position:relative;
  overflow:hidden;
  min-height:100%;
  padding:42px 38px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.045)),
    rgba(255,255,255,.035);
  box-shadow:0 26px 70px rgba(0,0,0,.24);
}
.form-aside::after{
  content:"";
  position:absolute;
  right:-84px;
  bottom:-92px;
  width:260px;
  height:260px;
  border-radius:50%;
  background:rgba(255,106,0,.18);
}
.form-kicker{
  position:relative;
  z-index:1;
  margin:0 0 16px;
  color:var(--brand-accent-soft);
  font-size:.9rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
#wycena .form-aside .section-title{
  position:relative;
  z-index:1;
  color:#fff;
  margin:0 0 18px;
  text-align:left;
}
#wycena .form-aside .section-title::after{
  margin:18px 0 0;
  background:var(--brand-accent);
}
#wycena .form-sub{
  position:relative;
  z-index:1;
  max-width:none;
  margin:0 0 28px;
  color:rgba(255,255,255,.78);
  text-align:left;
  font-size:1rem;
  line-height:1.65;
}
.form-points{
  position:relative;
  z-index:1;
  display:grid;
  gap:14px;
  margin:0 0 30px;
}
.form-points li{
  display:grid;
  grid-template-columns:38px 1fr;
  gap:12px;
  align-items:center;
  color:#fff;
  font-weight:800;
  line-height:1.35;
}
.form-points span,
.form-phone span{
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:50%;
  background:var(--brand-accent);
  color:var(--logo-navy-deep);
  box-shadow:0 12px 26px rgba(255,106,0,.24);
}
.form-points svg,
.form-phone svg{
  width:19px;
  height:19px;
  fill:currentColor;
}
.form-phone{
  position:relative;
  z-index:1;
  display:inline-grid;
  grid-template-columns:42px 1fr;
  gap:12px;
  align-items:center;
  margin-top:auto;
  color:#fff;
}
.form-phone strong{
  font-size:2rem;
  line-height:1;
}
#wycena .form-card{
  max-width:none;
  margin:0;
  padding:34px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:22px;
  background:rgba(255,255,255,.98);
  box-shadow:0 30px 80px rgba(0,0,0,.26);
}
#wycena .form-body .wpcf7-form{
  display:grid;
  gap:16px;
}
#wycena .form-body p{
  margin:0;
}
#wycena .form-body .wpcf7-form .form-row{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
#wycena .form-body .wpcf7-form .form-files{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:2px;
}
#wycena .form-body label{
  color:var(--logo-navy-deep);
  font-size:.88rem;
  font-weight:900;
}
#wycena .form-body input[type=text],
#wycena .form-body input[type=tel],
#wycena .form-body input[type=email],
#wycena .form-body textarea,
#wycena .form-body select{
  min-height:52px;
  margin-top:7px;
  border:1px solid rgba(4,21,54,.12);
  border-radius:12px;
  background:#F8FBFF;
  color:var(--logo-navy-deep);
  font-weight:700;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}
#wycena .form-body textarea{
  min-height:168px;
  line-height:1.55;
}
#wycena .form-body input:focus,
#wycena .form-body textarea:focus,
#wycena .form-body select:focus{
  border-color:var(--brand-accent);
  box-shadow:0 0 0 4px rgba(255,106,0,.13);
}
#wycena .form-body input[type=file]{
  width:100%;
  margin-top:7px;
  padding:10px;
  border:1px dashed rgba(4,21,54,.18);
  border-radius:12px;
  background:
    linear-gradient(180deg,#fff 0%,#F7FBFF 100%);
  color:var(--text-muted);
  font-size:.86rem;
  font-weight:700;
}
#wycena .form-body input[type=file]::file-selector-button{
  margin-right:10px;
  padding:9px 13px;
  border:0;
  border-radius:9px;
  background:var(--logo-navy);
  color:#fff;
  font:inherit;
  font-weight:900;
  cursor:pointer;
}
#wycena .form-body .acceptance-row,
#wycena .form-body .wpcf7-acceptance label{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--logo-navy-deep);
  font-size:.9rem;
  font-weight:800;
}
#wycena .form-body input[type=checkbox]{
  width:18px;
  height:18px;
  margin-top:1px;
  accent-color:var(--brand-accent);
}
#wycena .form-body input[type=submit],
#wycena .form-body .wpcf7-submit{
  min-height:58px;
  margin-top:2px;
  border-radius:14px;
  background:linear-gradient(180deg,var(--brand-accent-hover),var(--brand-accent));
  color:var(--logo-navy-deep);
  font-size:1.08rem;
  font-weight:1000;
  box-shadow:0 18px 36px rgba(255,106,0,.28);
}
#wycena .form-body input[type=submit]:hover,
#wycena .form-body .wpcf7-submit:hover{
  background:linear-gradient(180deg,#FF8A2A,var(--brand-accent));
  box-shadow:0 22px 42px rgba(255,106,0,.34);
}
#wycena .wpcf7-not-valid-tip{
  margin-top:6px;
  color:#B42318;
  font-weight:800;
}
#wycena .wpcf7-response-output{
  border-radius:12px;
  font-weight:800;
}
@media (max-width:992px){
  .form-shell{
    grid-template-columns:1fr;
  }
  .form-aside{
    padding:34px 28px;
  }
}
@media (max-width:768px){
  #wycena{
    padding:86px 0 92px;
  }
  #wycena .form-card{
    padding:24px 18px;
  }
  #wycena .form-body .wpcf7-form .form-row,
  #wycena .form-body .wpcf7-form .form-files{
    grid-template-columns:1fr;
  }
  .form-phone strong{
    font-size:1.65rem;
  }
}
