:root{
  --black:#050505;
  --black2:#090909;
  --red:#df161d;
  --red2:#ff2029;
  --white:#ffffff;
  --muted:#d7d7d7;
  --soft:#f4f4f4;
  --line:rgba(255,255,255,.16);
  --wrap:1720px;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Montserrat',Arial,sans-serif;
  background:var(--black);
  color:var(--white);
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
button,input,textarea{font:inherit;}
button{border:0;background:0;cursor:pointer;}
ul{list-style:none;}

.page-wrap{
  width:min(var(--wrap), calc(100% - 190px));
  margin:0 auto;
}

/* HEADER */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:110px;
  background:rgba(2,2,2,.96);
  border-bottom:1px solid var(--red);
  z-index:1000;
  backdrop-filter:blur(12px);
}
.header-inner{
  height:110px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:48px;
}
.brand{
  width:260px;
  height:100px;
  display:flex;
  align-items:center;
  flex:0 0 auto;
}
.brand img{
  width:255px;
  height:auto;
  filter:drop-shadow(0 6px 10px rgba(255,255,255,.08));
}
.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:60px;
  flex:1 1 auto;
}
.nav-links a{
  font-size:17px;
  font-weight:900;
  text-transform:uppercase;
  color:#fff;
  letter-spacing:.01em;
  white-space:nowrap;
  text-shadow:0 0 10px rgba(255,255,255,.22);
  transition:.2s ease;
}
.nav-links a:hover{color:var(--red2);}
.header-cta{
  width:236px;
  height:62px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  background:var(--red);
  border-radius:6px;
  color:#fff;
  font-size:16px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.02em;
  box-shadow:0 15px 32px rgba(223,22,29,.28);
  transition:.22s ease;
  flex:0 0 auto;
}
.header-cta:hover,.hero-cta:hover{background:var(--red2);transform:translateY(-2px);}
.menu-toggle,.mobile-nav{display:none;}

/* HERO */
.hero{
  position:relative;
  height:730px;
  min-height:730px;
  padding-top:110px;
  overflow:hidden;
  background:#050505;
}
.hero-bg{
  position:absolute;
  left:0;
  right:0;
  top:110px;
  bottom:auto;
  height:620px;

  background-color:#050505;

background-image:
  linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.40) 28%, rgba(0,0,0,.10) 55%, rgba(0,0,0,0) 100%),
  linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.03) 70%, rgba(0,0,0,.16) 100%),
  url('../images/hero/hero-bg.png');

  background-repeat:no-repeat;
  background-size:auto 200%;
  background-position:right center;
}
.hero-inner{
  position:relative;
  min-height:620px;
  display:flex;
  align-items:center;
}
.hero-copy{
  width:780px;
  max-width:50%;
  padding-top:0;
}
.hero h1{
  text-transform:uppercase;
  font-weight:900;
  font-size:62px;
  line-height:1.06;
  letter-spacing:-.045em;
  margin-bottom:20px;
  text-shadow:0 4px 14px rgba(0,0,0,.55);
}
.hero h1 span{display:block;}
.hero h1 .accent{
  color:var(--red);
}
.hero p{
  max-width:640px;
  font-size:19px;
  line-height:1.5;
  color:#f3f3f3;
  margin-bottom:34px;
  text-shadow:0 3px 12px rgba(0,0,0,.55);
}
.hero-benefits{
  display:flex;
  align-items:center;
  gap:0;
  margin-bottom:34px;
}
.hero-benefit{
  display:flex;
  align-items:center;
  gap:18px;
  min-height:66px;
  padding-right:35px;
  margin-right:35px;
  border-right:1px solid rgba(255,255,255,.27);
}
.hero-benefit:last-child{
  border-right:0;
  padding-right:0;
  margin-right:0;
}
.benefit-icon{
  width:54px;
  height:54px;
  border-radius:50%;
  color:var(--red);
  flex:0 0 54px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.benefit-icon svg{
  width:54px;
  height:54px;
  fill:none;
  stroke:var(--red);
  stroke-width:3.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.hero-benefit strong{
  font-size:17px;
  line-height:1.14;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:-.01em;
  color:#fff;
}
.hero-cta{
  width:255px;
  height:62px;
  border-radius:6px;
  background:var(--red);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  text-transform:uppercase;
  font-weight:900;
  font-size:16px;
  box-shadow:0 15px 32px rgba(223,22,29,.28);
  transition:.22s ease;
}

/* PROCESS */
.process{
  background:var(--soft);
  color:#050505;
  padding:25px 0 52px;
}
.process h2{
  text-align:center;
  text-transform:uppercase;
  font-size:31px;
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.03em;
  margin-bottom:35px;
}
.process h2 span{color:var(--red);}
.process-grid{
  display:grid;
  grid-template-columns:1fr 105px 1fr 105px 1fr 105px 1fr;
  align-items:center;
  gap:18px;
}
.process-step{
  position:relative;
  text-align:center;
}
.step-number{
  width:30px;
  height:30px;
  border-radius:50%;
  background:var(--red);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:15px;
  margin:0 auto -12px;
  position:relative;
  z-index:2;
}
.step-icon{
  width:90px;
  height:90px;
  border-radius:50%;
  background:#e9e9e9;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
}
.step-icon svg{
  width:50px;
  height:50px;
  fill:none;
  stroke:#040404;
  stroke-width:3.3;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.process-step h3{
  font-size:15px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:9px;
}
.process-step p{
  width:220px;
  max-width:100%;
  margin:0 auto;
  font-size:14px;
  line-height:1.45;
  color:#222;
}
.process-arrow{
  font-size:38px;
  color:#111;
  font-weight:300;
  text-align:center;
  margin-bottom:26px;
}

/* ROUTES & BENEFITS */
.routes-benefits{
  background:#050505;
  padding:72px 0 82px;
}

.routes-benefits .page-wrap{
  width:min(1360px, calc(100% - 190px));
  margin:0 auto;
}

.rb-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:start;
  width:100%;
  margin:0 auto;
}
.routes-card{
  padding-right:64px;
  border-right:1px solid rgba(255,255,255,.22);
}
.routes-card h2,
.benefits-card h2{
  font-size:28px;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:-.03em;
  margin-bottom:25px;
}
.routes-card h2 span,
.benefits-card h2 span{color:var(--red);}
.route-row{
  min-height:64px;
  display:grid;
  grid-template-columns:42px 142px 36px 42px 150px 120px 118px;
  align-items:center;
  gap:10px;
  border-bottom:1px solid rgba(255,255,255,.14);
}
.route-row:last-child{border-bottom:0;}
.route-row strong{
  font-size:15px;
  font-weight:800;
  text-transform:uppercase;
}
.route-row span:not(.route-arrow){
  font-size:14px;
  color:#fff;
}
.route-row b{
  color:var(--red);
  font-size:15px;
  font-weight:900;
}
.route-arrow{
  font-size:25px;
  color:#fff;
  line-height:1;
}
.flag{
  width:32px;
  height:22px;
  display:inline-block;
  border-radius:3px;
  box-shadow:0 0 0 1px rgba(255,255,255,.12);
}
.germany{background:linear-gradient(to bottom,#000 0 33.333%,#dd0000 33.333% 66.666%,#ffce00 66.666%);}
.belgium{background:linear-gradient(to right,#000 0 33.333%,#ffd90c 33.333% 66.666%,#ef3340 66.666%);}
.netherlands{background:linear-gradient(to bottom,#ae1c28 0 33.333%,#fff 33.333% 66.666%,#21468b 66.666%);}
.lithuania{background:linear-gradient(to bottom,#fdb913 0 33.333%,#006a44 33.333% 66.666%,#c1272d 66.666%);}
.benefits-card ul{
  display:grid;
  gap:22px;
  margin-top:4px;
}
.benefits-card li{
  display:flex;
  align-items:center;
  gap:16px;
  font-size:17px;
  line-height:1.35;
  color:#fff;
}
.benefits-card li i{
  width:25px;
  height:25px;
  flex:0 0 25px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid var(--red);
  color:var(--red);
  border-radius:50%;
  font-style:normal;
  font-weight:900;
  font-size:14px;
}

/* REVIEWS */
.reviews{
  background:#f4f4f4;
  color:#060606;
  padding:68px 0 80px;
}

.reviews-wrap{
  position:relative;
}

.reviews-title-row{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:36px;
}

.reviews h2{
  text-align:center;
  text-transform:uppercase;
  font-size:34px;
  font-weight:900;
  letter-spacing:-.03em;
  margin:0;
}

.reviews h2 span{
  color:var(--red);
}

.reviews-viewport{
  overflow:hidden;
  width:100%;
}

.reviews-track{
  display:flex;
  gap:42px;
  align-items:stretch;
  transition:transform .42s ease;
  will-change:transform;
}

.review-card{
  flex:0 0 calc((100% - 84px) / 3);
  min-height:240px;
  background:#fff;
  border:1px solid #d8d8d8;
  border-radius:10px;
  padding:34px 38px;
  box-shadow:0 14px 35px rgba(0,0,0,.06);
}

.quote{
  color:var(--red);
  font-size:62px;
  line-height:.75;
  font-weight:900;
}

.review-card p{
  font-size:15px;
  line-height:1.65;
  color:#111;
  margin:10px 0 22px;
}

.stars{
  color:var(--red);
  font-size:18px;
  letter-spacing:5px;
  margin-bottom:15px;
}

.review-card h3{
  font-size:18px;
  font-weight:900;
  margin-bottom:5px;
}

.review-card span{
  color:#333;
  font-size:14px;
}

.reviews-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  background:#fff;
  border:1px solid #d8d8d8;
  color:var(--red);
  font-size:34px;
  line-height:1;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  transition:.2s ease;
  z-index:2;
}

.reviews-arrow:hover{
  background:var(--red);
  border-color:var(--red);
  color:#fff;
  transform:translateY(-50%) scale(1.04);
}

.reviews-arrow:disabled{
  opacity:.35;
  cursor:not-allowed;
  transform:translateY(-50%);
}

.reviews-prev{
  left:0;
}

.reviews-next{
  right:0;
}

.reviews-dots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:26px;
}

.reviews-dots button{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#cfcfcf;
  transition:.2s ease;
}

.reviews-dots button.is-active{
  width:28px;
  border-radius:999px;
  background:var(--red);
}

@media (max-width:1100px){
  .reviews-track{
    gap:28px;
  }

  .review-card{
    flex-basis:calc((100% - 28px) / 2);
  }
}

@media (max-width:700px){
  .reviews{
    padding:52px 0 60px;
  }

  .reviews h2{
    font-size:28px;
  }

  .reviews-title-row{
    padding:0 58px;
  }

  .reviews-track{
    gap:20px;
  }

  .review-card{
    flex-basis:100%;
    padding:30px 28px;
  }

  .reviews-arrow{
    width:40px;
    height:40px;
    font-size:30px;
  }
}

/* CONTACT */
.contact{
  background:#080808;
  padding:78px 0 82px;
  border-top:1px solid rgba(255,255,255,.08);
}
.contact-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:70px;
  align-items:start;
}
.contact-info h2{
  text-transform:uppercase;
  font-size:48px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.045em;
  margin-bottom:20px;
}
.contact-info h2 span{color:var(--red);}
.contact-info p{
  color:#d8d8d8;
  font-size:18px;
  line-height:1.65;
  max-width:560px;
  margin-bottom:32px;
}
.contact-list{
  display:grid;
  gap:16px;
}
/* CONTACT LEFT INFO — UPDATED */

.contact-info{
  padding-top:6px;
}

.contact-info h2{
  text-transform:uppercase;
  font-size:48px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.045em;
  margin-bottom:20px;
}

.contact-info h2 span{
  color:var(--red);
}

.contact-info > p{
  color:#d8d8d8;
  font-size:18px;
  line-height:1.65;
  max-width:560px;
  margin-bottom:32px;
}

.contact-cards{
  display:grid;
  gap:16px;
  max-width:560px;
  margin-bottom:34px;
}

.contact-card{
  min-height:92px;
  display:flex;
  align-items:center;
  gap:24px;
  padding:18px 26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  border:1px solid rgba(255,255,255,.16);
  border-radius:9px;
  color:#fff;
  transition:.22s ease;
  box-shadow:0 18px 45px rgba(0,0,0,.22);
}

.contact-card:hover{
  border-color:rgba(223,22,29,.55);
  background:
    linear-gradient(135deg, rgba(223,22,29,.12), rgba(255,255,255,.02));
  transform:translateY(-2px);
}

.contact-icon{
  width:58px;
  height:58px;
  flex:0 0 58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:9px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.08);
  color:var(--red);
}

.contact-icon svg{
  width:30px;
  height:30px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.contact-card-text{
  display:grid;
  gap:7px;
  padding-left:24px;
  border-left:1px solid rgba(255,255,255,.18);
}

.contact-card-text small{
  color:#aaa;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.contact-card-text strong{
  color:#fff;
  font-size:24px;
  font-weight:900;
  letter-spacing:-.02em;
}

.response-note{
  display:flex;
  align-items:center;
  gap:18px;
  max-width:560px;
  color:#fff;
}

.response-icon{
  width:44px;
  height:44px;
  flex:0 0 44px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--red);
}

.response-icon svg{
  width:44px;
  height:44px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.1;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.response-note span:last-child{
  display:grid;
  gap:4px;
}

.response-note strong{
  font-size:18px;
  font-weight:900;
}

.response-note small{
  color:#aaa;
  font-size:16px;
  line-height:1.45;
}
.contact-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  background:#111;
  border:1px solid rgba(255,255,255,.13);
  border-radius:12px;
  padding:32px;
}
.contact-form label{
  display:grid;
  gap:9px;
  color:#fff;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:900;
}
.contact-form label:nth-of-type(3),
.contact-form label:nth-of-type(4){
  grid-column:1 / -1;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  background:#1b1b1b;
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  border-radius:6px;
  padding:17px 18px;
  font-size:15px;
  letter-spacing:0;
  text-transform:none;
  resize:vertical;
}
.contact-form input:focus,
.contact-form textarea:focus{
  border-color:var(--red);
}
.contact-form button{
  grid-column:1 / -1;
  height:60px;
  background:var(--red);
  color:#fff;
  border-radius:6px;
  font-size:15px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.contact-form p{
  grid-column:1 / -1;
  color:#888;
  font-size:13px;
  line-height:1.45;
}

/* FOOTER */
.footer{
  position:relative;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.045), transparent 28%),
    radial-gradient(circle at 72% 24%, rgba(223,22,29,.055), transparent 30%),
    #050505;
  border-top:1px solid rgba(255,255,255,.08);
  padding:72px 0 0;
  overflow:hidden;
}

.footer::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:1px;
  background:linear-gradient(90deg, transparent 0%, var(--red) 35%, var(--red) 65%, transparent 100%);
  opacity:.75;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.05fr 1.25fr 1fr;
  gap:86px;
  align-items:start;
  padding-bottom:64px;
}

.footer-brand img{
  width:220px;
  margin-bottom:28px;
}

.footer-brand p{
  color:#d6d6d6;
  font-size:16px;
  line-height:1.65;
  max-width:430px;
  margin-bottom:34px;
}

.socials{
  display:flex;
  gap:18px;
}

.socials a{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.22);
  border-radius:8px;
  color:#fff;
  font-size:24px;
  font-weight:900;
  background:rgba(255,255,255,.025);
  transition:.22s ease;
}

.socials a:hover{
  border-color:var(--red);
  color:var(--red2);
  transform:translateY(-2px);
}

.footer h3{
  position:relative;
  display:flex;
  align-items:center;
  gap:14px;
  text-transform:uppercase;
  color:var(--red2);
  font-size:22px;
  font-weight:900;
  letter-spacing:.08em;
  margin-bottom:30px;
}

.footer h3::before{
  content:"";
  width:38px;
  height:3px;
  background:var(--red);
  display:block;
}

.footer-info-list{
  display:grid;
  gap:0;
}

.footer-info-row{
  display:flex;
  align-items:center;
  gap:22px;
  min-height:78px;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.13);
  color:#e7e7e7;
}

.footer-info-row:last-child{
  border-bottom:0;
}

.footer-info-row span:last-child{
  display:grid;
  gap:5px;
}

.footer-info-row small{
  color:#a6a6a6;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.07em;
}

.footer-info-row strong{
  color:#fff;
  font-size:19px;
  font-weight:800;
  line-height:1.35;
}

.footer-details .footer-info-row span:last-child{
  font-size:19px;
  line-height:1.45;
}

.footer-icon{
  width:48px;
  height:48px;
  flex:0 0 48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(223,22,29,.65);
  border-radius:50%;
  color:#fff;
  background:rgba(223,22,29,.035);
}

.footer-icon svg{
  width:25px;
  height:25px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.footer-contact a:hover strong,
.footer-contact a:hover small{
  color:var(--red2);
}

.footer-bottom{
  width:100%;
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#a8a8a8;
  font-size:16px;
  border-top:1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(0,0,0,0)),
    #050505;
}

/* utility */
::selection{background:var(--red);color:#fff;}

/* FOOTER — SMALLER / CLEANER VERSION */

.footer{
  padding:54px 0 0;
}

.footer-grid{
  grid-template-columns:1.1fr 1.25fr 1fr;
  gap:72px;
  align-items:start;
  padding-bottom:50px;
}

.footer-brand img{
  width:150px;
  margin-bottom:24px;
}

.footer-brand p{
  max-width:380px;
  font-size:14px;
  line-height:1.65;
  color:#cfcfcf;
  margin-bottom:26px;
}

.socials{
  gap:13px;
}

.socials a{
  width:40px;
  height:40px;
  border-radius:7px;
  font-size:17px;
  color:#fff;
  background:rgba(255,255,255,.018);
  border:1px solid rgba(255,255,255,.18);
}

.socials a i{
  font-size:17px;
  line-height:1;
}

.footer h3{
  font-size:15px;
  letter-spacing:.08em;
  margin-bottom:22px;
  gap:10px;
}

.footer h3::before{
  width:30px;
  height:2px;
}

.footer-info-row{
  min-height:58px;
  padding:10px 0;
  gap:16px;
}

.footer-icon{
  width:34px;
  height:34px;
  flex:0 0 34px;
}

.footer-icon svg{
  width:18px;
  height:18px;
  stroke-width:1.8;
}

.footer-info-row small{
  font-size:10px;
  letter-spacing:.08em;
}

.footer-info-row strong{
  font-size:14px;
  line-height:1.35;
}

.footer-details .footer-info-row span:last-child{
  font-size:14px;
  line-height:1.45;
}

.footer-info-row span:last-child{
  gap:3px;
}

.footer-bottom{
  min-height:58px;
  font-size:13px;
  color:#9a9a9a;
}

/* FORMSPREE FORM STATUS — FINAL */

.contact-form input[type="hidden"]{
  display:none;
}

.contact-form label:nth-of-type(3),
.contact-form label:nth-of-type(4){
  grid-column:1 / -1;
}

.contact-form button{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.contact-form button:disabled{
  opacity:.75;
  cursor:not-allowed;
  transform:none;
}

.btn-text{
  display:inline-block;
}

.spinner{
  width:18px;
  height:18px;
  border:2px solid rgba(255,255,255,.35);
  border-top:2px solid #fff;
  border-radius:50%;
  animation:spin .7s linear infinite;
  display:none;
}

@keyframes spin{
  to{
    transform:rotate(360deg);
  }
}

.success-message{
  grid-column:1 / -1;
  display:none;
  margin-top:2px;
  font-size:14px;
  font-weight:800;
  color:#22c55e;
  text-align:center;
}

.success-message.error{
  color:#ff4d4d;
}
