@import url("fonts.css");
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;800;900&display=swap");

:root{
  --black:#0b0b0c;
  --ink:#161616;
  --red:#c8102e;
  --red-deep:#5c0c1a;
  --red-bright:#e31837;
  --cream:#f4f1ec;
  --paper:#faf8f5;
  --muted:#8a8a8a;
  --muted-light:#c9c6c1;
  --line:rgba(255,255,255,.14);
  --line-dark:rgba(11,11,12,.12);
  --max:1180px;
  --gutter:clamp(20px,5vw,64px);
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:"Montserrat",system-ui,sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{
  font-family:"Unbounded","Montserrat",sans-serif;
  margin:0;
  line-height:1.08;
  font-weight:700;
  letter-spacing:-0.01em;
}
p{margin:0}
ul{margin:0;padding:0;list-style:none}
button{font-family:inherit;cursor:pointer}
.container{max-width:var(--max);margin:0 auto;padding:0 var(--gutter)}
:focus-visible{outline:3px solid var(--red);outline-offset:3px}
@media (prefers-reduced-motion: reduce){
  *{animation:none!important;transition:none!important}
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:15px 28px;
  font-family:"Unbounded",sans-serif;
  font-weight:600;
  font-size:.86rem;
  border-radius:2px;
  border:1.5px solid transparent;
  transition:transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn-primary{background:var(--red);color:#fff;box-shadow:0 10px 24px rgba(200,16,46,.28)}
.btn-primary:hover{background:var(--red-bright);transform:translateY(-2px);box-shadow:0 14px 30px rgba(200,16,46,.38)}
.btn-outline-dark{border-color:rgba(11,11,12,.3);color:var(--ink)}
.btn-outline-dark:hover{border-color:var(--ink);background:var(--ink);color:#fff;transform:translateY(-2px)}
.btn-outline-light{border-color:rgba(255,255,255,.35);color:#fff}
.btn-outline-light:hover{border-color:#fff;background:#fff;color:var(--black);transform:translateY(-2px)}

/* ---------- Nav ---------- */
.site-header{
  position:sticky;top:0;z-index:50;
  background:var(--black);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px var(--gutter);
  max-width:var(--max);margin:0 auto;
}
.brand{display:flex;align-items:center;gap:12px;color:#fff}
.brand img{width:42px;height:42px;border-radius:50%}
.brand-word{font-family:"Unbounded",sans-serif;font-weight:800;font-size:1.02rem;letter-spacing:.01em;color:#fff}
.brand-word span{color:var(--red-bright)}
.nav-links{display:flex;align-items:center;gap:34px}
.nav-links a{
  color:var(--muted-light);
  font-size:.86rem;
  font-weight:600;
  padding:6px 2px;
  border-bottom:2px solid transparent;
  transition:color .15s ease,border-color .15s ease;
}
.nav-links a:hover,.nav-links a.active{color:#fff;border-color:var(--red)}
.nav-cta{display:flex;align-items:center;gap:16px}
.lang-switch{
  display:flex;align-items:center;
  border:1px solid var(--line);border-radius:2px;
  overflow:hidden;flex-shrink:0;
}
.lang-switch a{
  padding:6px 10px;font-size:.76rem;font-weight:700;
  font-family:"Unbounded",sans-serif;color:var(--muted-light);
  border-bottom:0;
}
.lang-switch a.active{background:var(--red);color:#fff}
.lang-switch a:hover{color:#fff}
.nav-cta-mobile{display:none}
.nav-toggle{display:none;background:none;border:0;color:#fff;padding:6px}
.nav-toggle svg{width:26px;height:26px}

@media (max-width:880px){
  .nav-links{
    position:fixed;top:64px;left:0;right:0;
    background:var(--black);
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:10px var(--gutter) 24px;
    transform:translateY(-8px);
    opacity:0;
    pointer-events:none;
    transition:opacity .2s ease, transform .2s ease;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    max-height:calc(100vh - 64px);
    overflow-y:auto;
    box-shadow:0 18px 30px rgba(0,0,0,.4);
  }
  .nav-links.open{opacity:1;transform:translateY(0);pointer-events:auto}
  .nav-links a{width:100%;padding:16px 0;border-bottom:1px solid var(--line);font-size:1rem}
  .nav-cta{display:none}
  .nav-links .nav-cta-mobile{display:flex;margin-top:16px}
  .nav-toggle{display:block}
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  background:var(--black);
  color:#fff;
  overflow:hidden;
  padding:96px var(--gutter) 0;
}
.hero-inner{
  max-width:var(--max);margin:0 auto;
  display:grid;grid-template-columns:1.15fr .85fr;gap:40px;
  align-items:center;
  padding-bottom:76px;
}
.hero-pulse-bg{
  position:absolute;
  left:0;right:0;bottom:0;
  height:120px;
  opacity:.5;
  pointer-events:none;
}
.hero-pulse-bg svg{width:100%;height:100%;display:block}
.eyebrow-none{margin-bottom:22px}
.hero h1{
  font-size:clamp(2.4rem,5.2vw,4.1rem);
  font-weight:800;
  color:#fff;
}
.hero h1 em{
  font-style:normal;color:var(--red-bright);
}
.hero .lede{
  margin-top:22px;
  max-width:46ch;
  font-size:1.08rem;
  color:var(--muted-light);
}
.hero-actions{display:flex;gap:14px;margin-top:36px;flex-wrap:wrap}
.hero-badge{
  position:relative;
  display:flex;align-items:center;justify-content:center;
}
.hero-badge img{
  width:min(320px,90%);
  filter:drop-shadow(0 30px 60px rgba(200,16,46,.35));
}
.stat-strip{
  border-top:1px solid var(--line);
  background:var(--black);
  color:#fff;
}
.stat-strip .container{
  padding:26px var(--gutter);
}
.stat-row{display:flex;flex-wrap:wrap}
.stat-strip .stat{
  flex:1 1 200px;
  padding:6px 28px;
  border-left:1px solid var(--line);
}
.stat-strip .stat:first-child{border-left:0}
.stat-num{font-family:"Unbounded",sans-serif;font-weight:800;font-size:1.5rem;color:var(--red-bright)}
.stat-label{font-size:.84rem;color:var(--muted-light);margin-top:4px}

@media (max-width:880px){
  .hero-inner{grid-template-columns:1fr;padding-bottom:56px}
  .hero-badge{order:-1;margin-bottom:8px}
  .hero-badge img{width:180px}
}

/* ---------- Section basics ---------- */
.section{padding:96px var(--gutter)}
.section-tight{padding:76px var(--gutter)}
.section-dark{background:var(--black);color:#fff}
.section-cream{background:var(--cream)}
.section-head{
  display:grid;grid-template-columns:.9fr 1.1fr;gap:40px;
  margin-bottom:56px;
  align-items:end;
}
.section-head h2{font-size:clamp(1.8rem,3.4vw,2.6rem)}
.section-dark .section-head p, .section-head p{color:var(--muted);max-width:52ch}
.section-dark .section-head p{color:var(--muted-light)}
@media (max-width:760px){
  .section{padding:64px var(--gutter)}
  .section-head{grid-template-columns:1fr;gap:16px}
}

/* ---------- Services list (index overview) ---------- */
.service-rows{border-top:1px solid var(--line-dark)}
.service-row{
  display:grid;grid-template-columns:44px 1fr;gap:24px;
  padding:26px 0;
  border-bottom:1px solid var(--line-dark);
  align-items:start;
}
.service-icon{display:inline-block;width:32px;height:32px;margin-top:2px;flex-shrink:0}
.service-icon svg{width:100%;height:100%}
.service-row h3{font-size:1.18rem;margin-bottom:6px}
.service-row p{color:var(--muted);max-width:60ch}

/* ---------- Detailed services page ---------- */
.service-group{margin-bottom:64px}
.service-group-title{
  font-family:"Unbounded",sans-serif;font-weight:700;
  font-size:.85rem;letter-spacing:.02em;
  color:var(--red);margin-bottom:26px;
}
.service-detail{
  display:grid;grid-template-columns:1fr 1fr;gap:40px;
  padding:36px 0;border-top:1px solid var(--line-dark);
  align-items:center;
}
.service-detail:last-child{border-bottom:1px solid var(--line-dark)}
.service-detail h3{font-size:1.5rem;margin-bottom:14px}
.service-detail p{color:var(--muted);max-width:52ch}
.service-visual{
  aspect-ratio:4/3;border-radius:2px;
  background:linear-gradient(135deg,var(--black),var(--red-deep));
  position:relative;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 20px 40px rgba(0,0,0,.18);
}
.service-visual svg{width:56%;opacity:.9}
@media (max-width:760px){
  .service-detail{grid-template-columns:1fr}
  .service-visual{order:-1;aspect-ratio:16/9}
}

/* ---------- Clients ---------- */
.clients-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px}
.client-card{
  background:#141414;
  border:1px solid var(--line);
  padding:44px 36px;
  display:flex;flex-direction:column;gap:24px;
  min-height:320px;
  box-shadow:0 24px 48px rgba(0,0,0,.35);
}
.client-card img{max-height:96px;width:auto;object-fit:contain;align-self:center}
.client-card .client-copy{margin-top:auto}
.client-name{font-family:"Unbounded",sans-serif;font-weight:700;font-size:1.1rem;margin-bottom:8px}
.client-desc{color:var(--muted-light);font-size:.95rem;max-width:42ch}
@media (max-width:760px){.clients-grid{grid-template-columns:1fr}}

/* ---------- Video portfolio ---------- */
.video-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.video-card{
  position:relative;
  aspect-ratio:9/16;
  background:#000;
  border:1px solid var(--line);
  overflow:hidden;
}
.video-card video{width:100%;height:100%;object-fit:cover;display:block}
@media (max-width:900px){.video-grid{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.video-grid{grid-template-columns:1fr;max-width:320px;margin:0 auto}}

/* ---------- Process (steps) ---------- */
.process-list{border-top:1px solid var(--line-dark)}
.process-item{
  display:grid;grid-template-columns:90px 1fr;gap:30px;
  padding:38px 0;border-bottom:1px solid var(--line-dark);
}
.process-num{
  font-family:"Unbounded",sans-serif;font-weight:800;
  font-size:2rem;color:var(--red);
}
.process-item h3{font-size:1.3rem;margin-bottom:10px}
.process-item p{color:var(--muted);max-width:60ch}
@media (max-width:600px){
  .process-item{grid-template-columns:1fr;gap:8px}
}

/* ---------- CTA band ---------- */
.cta-band{
  background:linear-gradient(120deg,var(--red-deep),var(--red));
  color:#fff;padding:74px var(--gutter);
}
.cta-band .container{
  display:flex;justify-content:space-between;align-items:center;gap:30px;flex-wrap:wrap;
}
.cta-band h2{font-size:clamp(1.7rem,3.4vw,2.4rem);max-width:16ch}
.cta-band .cta-contacts{display:flex;flex-direction:column;gap:6px;font-size:.95rem}
.cta-band .cta-contacts a{font-weight:600}
.cta-actions{display:flex;flex-direction:column;gap:14px;align-items:flex-start}

/* ---------- Footer ---------- */
.site-footer{background:var(--black);color:var(--muted-light);padding:64px var(--gutter) 26px}
.footer-grid{
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;
  padding-bottom:44px;border-bottom:1px solid var(--line);
}
.footer-brand .brand{margin-bottom:16px}
.footer-brand p{color:var(--muted);max-width:36ch;font-size:.92rem}
.footer-col h4{font-family:"Unbounded",sans-serif;font-size:.82rem;color:#fff;margin-bottom:16px;font-weight:600}
.footer-col ul li{margin-bottom:10px}
.footer-col a{color:var(--muted-light);font-size:.92rem}
.footer-col a:hover{color:var(--red-bright)}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;
  padding-top:22px;font-size:.82rem;color:var(--muted);flex-wrap:wrap;gap:10px;
}
.social-row{display:flex;gap:14px}
.social-row a{
  width:36px;height:36px;border:1px solid var(--line);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  transition:border-color .15s ease, background .15s ease;
}
.social-row a:hover{border-color:var(--red);background:var(--red)}
.social-row svg{width:16px;height:16px}
@media (max-width:820px){
  .footer-grid{grid-template-columns:1fr 1fr;row-gap:36px}
}
@media (max-width:520px){
  .footer-grid{grid-template-columns:1fr}
}

/* ---------- Page header (inner pages) ---------- */
.page-head{
  background:var(--black);color:#fff;
  padding:150px var(--gutter) 70px;
  position:relative;overflow:hidden;
}
.page-head h1{font-size:clamp(2.1rem,4.4vw,3.2rem);max-width:18ch}
.page-head p{color:var(--muted-light);max-width:56ch;margin-top:20px;font-size:1.05rem}
.page-head .container{position:relative;z-index:1}

/* ---------- About page ---------- */
.about-copy{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:start}
.about-copy p{margin-bottom:20px;color:var(--ink);font-size:1.03rem}
.about-copy .lead{font-family:"Unbounded",sans-serif;font-weight:600;font-size:1.3rem;line-height:1.35;color:var(--ink)}
.pulse-line-divider{width:100%;height:auto;margin:8px 0}
.values-row{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line-dark);margin-top:8px}
.value-item{background:var(--paper);padding:34px 30px}
.value-item h3{font-size:1.05rem;margin-bottom:10px}
.value-item p{color:var(--muted);font-size:.94rem}
@media (max-width:820px){
  .about-copy{grid-template-columns:1fr}
  .values-row{grid-template-columns:1fr}
}

/* ---------- Contact page ---------- */
.contact-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:60px}
.contact-info h2{font-size:1.6rem;margin-bottom:20px}
.contact-block{margin-bottom:30px}
.contact-block h4{font-family:"Unbounded",sans-serif;font-size:.8rem;color:var(--red);margin-bottom:8px;font-weight:600}
.contact-block a, .contact-block p{font-size:1.05rem}
.contact-form{display:grid;gap:18px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.field{display:flex;flex-direction:column;gap:8px}
.field label{font-size:.82rem;color:var(--muted);font-weight:600}
.field input,.field textarea{
  border:1.5px solid var(--line-dark);
  background:#fff;
  padding:14px 16px;
  font-family:"Montserrat",sans-serif;
  font-size:.98rem;
  border-radius:2px;
  color:var(--ink);
}
.field input:focus,.field textarea:focus{border-color:var(--red);outline:none}
.field textarea{resize:vertical;min-height:140px}
.form-note{font-size:.82rem;color:var(--muted)}

/* ---------- Pricing cards ---------- */
.pricing-intro{max-width:64ch;color:var(--muted);margin-bottom:48px;font-size:1.02rem}
.pricing-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:28px;
  align-items:stretch;
}
.pricing-card{
  background:#fff;
  border:1.5px solid var(--line-dark);
  padding:38px 32px;
  display:flex;flex-direction:column;
  position:relative;
}
.pricing-card.featured{
  border-color:var(--red);
  box-shadow:0 28px 56px rgba(200,16,46,.14);
}
.pricing-badge{
  position:absolute;top:-15px;right:32px;
  background:var(--red);color:#fff;
  font-family:"Unbounded",sans-serif;font-weight:600;font-size:.7rem;
  letter-spacing:.02em;
  padding:7px 14px;border-radius:2px;
}
.pricing-name{font-family:"Unbounded",sans-serif;font-weight:700;font-size:1.25rem;margin-bottom:14px}
.pricing-price{
  font-family:"Unbounded",sans-serif;font-weight:800;
  font-size:2.1rem;color:var(--ink);line-height:1;
  margin-bottom:6px;
}
.pricing-price span{
  font-family:"Montserrat",sans-serif;font-weight:600;
  font-size:.92rem;color:var(--muted);
}
.pricing-note{font-size:.8rem;color:var(--muted);margin-bottom:26px;min-height:1.2em}
.pricing-features{list-style:none;margin:0 0 30px;padding:0;display:flex;flex-direction:column;gap:13px;flex:1}
.pricing-features li{display:flex;gap:10px;align-items:flex-start;font-size:.92rem;color:var(--ink);line-height:1.45}
.pricing-features svg{flex-shrink:0;margin-top:2px;width:15px;height:15px;color:var(--red)}
.pricing-card .btn{justify-content:center;width:100%}
@media (max-width:900px){
  .pricing-grid{grid-template-columns:1fr;max-width:440px;margin-left:auto;margin-right:auto}
}

/* ---------- Success modal ---------- */
.success-overlay{
  position:fixed;
  top:0;left:0;right:0;bottom:0;
  background:rgba(11,11,12,.78);
  display:flex;align-items:center;justify-content:center;
  padding:24px;
  z-index:200;
  opacity:0;pointer-events:none;
  transition:opacity .25s ease;
}
.success-overlay.show{opacity:1;pointer-events:auto}
.success-card{
  background:#fff;
  max-width:380px;width:100%;
  padding:44px 34px 36px;
  text-align:center;
  border-radius:3px;
  position:relative;
  transform:translateY(14px);
  transition:transform .3s ease;
  box-shadow:0 30px 70px rgba(0,0,0,.35);
}
.success-overlay.show .success-card{transform:translateY(0)}
.success-close{
  position:absolute;top:14px;right:14px;
  width:30px;height:30px;border:0;background:none;
  color:var(--muted);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}
.success-close:hover{background:var(--cream);color:var(--ink)}
.success-close svg{width:16px;height:16px}
.check-circle{width:74px;height:74px;margin:0 auto 22px}
.check-circle svg{width:100%;height:100%}
.check-circle circle{
  fill:none;stroke:var(--red);stroke-width:3;
  stroke-dasharray:220;stroke-dashoffset:220;
}
.check-circle path{
  fill:none;stroke:var(--red);stroke-width:4;
  stroke-linecap:round;stroke-linejoin:round;
  stroke-dasharray:46;stroke-dashoffset:46;
}
.success-overlay.show .check-circle circle{
  animation:draw-circle .5s ease forwards;
}
.success-overlay.show .check-circle path{
  animation:draw-check .35s ease forwards .45s;
}
@keyframes draw-circle{to{stroke-dashoffset:0}}
@keyframes draw-check{to{stroke-dashoffset:0}}
.success-card h3{font-size:1.25rem;margin-bottom:10px}
.success-card p{color:var(--muted);font-size:.98rem;line-height:1.55}
@media (prefers-reduced-motion: reduce){
  .check-circle circle,.check-circle path{animation:none;stroke-dashoffset:0}
}

/* ---------- Floating contact buttons ---------- */
.floating-contacts{
  position:fixed;right:20px;bottom:20px;
  display:flex;flex-direction:column;gap:12px;
  z-index:150;
}
.floating-contacts a{
  width:54px;height:54px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 24px rgba(0,0,0,.35);
  transition:transform .18s ease;
}
.floating-contacts a:hover{transform:scale(1.08)}
.floating-contacts a:active{transform:scale(.96)}
.floating-contacts svg{width:28px;height:28px}
.fc-whatsapp{background:#25D366}
.fc-viber{background:#7360F2}
@media (max-width:600px){
  .floating-contacts{right:14px;bottom:80px;gap:10px}
  .floating-contacts a{width:48px;height:48px}
  .floating-contacts svg{width:24px;height:24px}
}
@media (max-width:820px){
  .contact-grid{grid-template-columns:1fr;gap:40px}
  .form-row{grid-template-columns:1fr}
}

/* ---------- Promo bar ---------- */
.promo-bar{
  background:linear-gradient(120deg,var(--red-deep),var(--red));
  color:#fff;
  padding:11px var(--gutter);
  text-align:center;
}
.promo-bar .container{
  display:flex;align-items:center;justify-content:center;gap:14px;
  flex-wrap:wrap;
  max-width:var(--max);margin:0 auto;
}
.promo-bar p{font-size:.88rem;font-weight:600}
.promo-bar s{opacity:.75;font-weight:400}
.promo-bar a{
  font-family:"Unbounded",sans-serif;font-weight:600;font-size:.78rem;
  text-decoration:underline;text-underline-offset:3px;white-space:nowrap;
}
@media (max-width:600px){
  .promo-bar p{font-size:.8rem}
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-sticky-cta{
  display:none;
  position:fixed;left:0;right:0;bottom:0;
  z-index:140;
  background:var(--black);
  border-top:1px solid var(--line);
  padding:10px 16px;
  padding-bottom:calc(10px + env(safe-area-inset-bottom));
}
.mobile-sticky-cta a{
  display:flex;align-items:center;justify-content:center;gap:8px;
  width:100%;
}
@media (max-width:760px){
  .mobile-sticky-cta{display:block}
}

/* ---------- Lead magnet ---------- */
.lead-magnet-grid{
  display:grid;grid-template-columns:1.1fr .9fr;gap:56px;
  align-items:center;
}
.lead-magnet-points{margin-top:24px;display:flex;flex-direction:column;gap:12px}
.lead-magnet-points li{display:flex;gap:10px;align-items:flex-start;color:var(--ink);font-size:.96rem}
.lead-magnet-points svg{flex-shrink:0;margin-top:3px;width:16px;height:16px;color:var(--red)}
.lead-card{
  background:var(--black);color:#fff;
  padding:40px 34px;
  border:1px solid var(--line);
}
.lead-card h3{font-size:1.2rem;margin-bottom:8px;color:#fff}
.lead-card .lead-sub{color:var(--muted-light);font-size:.9rem;margin-bottom:22px}
.lead-card .field label{color:var(--muted-light)}
.lead-card .field input{background:#161616;border-color:var(--line);color:#fff}
.lead-card form{display:grid;gap:16px}
.lead-success{text-align:center;padding:10px 0}
.lead-success svg{width:48px;height:48px;color:var(--red);margin:0 auto 16px}
.lead-success h3{margin-bottom:10px}
.lead-success p{color:var(--muted-light);margin-bottom:20px;font-size:.92rem}
@media (max-width:900px){
  .lead-magnet-grid{grid-template-columns:1fr;gap:36px}
}
