:root {
  --orange: #f58220;
  --blue: #1f2a5a;
  --light-gray: #f5f5f5;
  --text-gray: #757575;
}

@font-face {
  font-family: "Zalando";
  src: url("font/ZalandoSansExpanded-Medium.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Zalando";
  src: url("font/ZalandoSansExpanded-Black.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Zalando";
  src: url("font/ZalandoSansExpanded-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}



* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 120%;
}

body {
  font-family: 'Prompt', sans-serif;
  color: #222;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.special-text {
  font-family: "Zalando", sans-serif;
  font-weight: 700;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  background: #fff;
}

.logo {
  font-weight: 800;
  height: 36px;
}

.nav-links a {
  margin-left: 8px;
  font-size: 16px;
  padding: 8px;
}

.nav-links a.active {
  background-color: #f5f5f5;
  border-radius: 8px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #222;
  margin: 5px 0;
}

/* Mobile menu hidden by default */
.mobile-menu {
  display: none;
  background: #fff;
  padding: 20px;
}


/* HERO */
.hero {
  background: var(--orange);
  text-align: center;
  padding: 45px 0px 0px;
  display: flex;
  justify-content: center;
  position: relative;
}

.ads .hero {
    padding: 118px 0px;
}

.ads .hero-content {
    max-width: 440px;
    width: 90%;
}

.hero-content {
    max-width: 1200px;
    width: 90%;
    z-index: 10;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--blue);
  line-height: 120%;
  margin-top: 28px;
  margin-bottom: 8px;
}

.hero p {
  max-width: 520px;
  margin: 0 auto 8px;
  font-size: 20px;
  line-height: 120%;
  color: white;
}

.hero p.hero-bold {
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 24px;
}

.isfullHeight {
    height: 100vh;
}

.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--blue);
  color: #fff;
  border-radius: 6px;
  font-size: 24px;
  font-weight: 600;
}

.hero-illustration {
  line-height: 0%;
  height: 308px;
}

.hero-illustration img {
    height: 100%;
}

.hero-arrow-left {
    position: absolute;
    width: 204px;
    height: 204px;
    bottom: 0px;
    left:0px;
}
.hero-arrow-right {
    position: absolute;
    width: 204px;
    height: 204px;
    bottom: 0px;
    right:0px;
}

.ads .hero-arrow-left {
    width: 202px;
    height: 104px;
}
.ads .hero-arrow-right {
    width: 350px;
    height: 336px;
}
/* WHY CHOOSE US */
.why {
  padding: 48px 30px;
  padding-bottom: 82px;
  text-align: center;
}

.why h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #1e1e1e;;
}

.subtitle {
  color: var(--text-gray);
  margin-bottom: 30px;
  font-size: 20px;
    max-width: 65%;
    margin-inline: auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.feature {
  border: 1px solid #d9d9d9;
  padding: 33px 34px;
  border-radius: 8px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
}

.feature-icon {
    width: 33px;
}

.feature-content {
  flex: 1;
  padding-left: 23px;
}

.feature h3 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 600;
}

.feature p {
  font-size: 16px;
  color: var(--text-gray);
}

.blue-bg {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0px;
    height: 102px;
    background: #3F57AA;
}

.blue-bgleft {
    position: absolute;
    width: 102px;
    left: 0px;
}
.blue-bgright {
    position: absolute;
    width: 102px;
    right: 1px;
}
.blue-bgcenter::after {
    content: "";
    width: calc(50vw - 38px);
    height: 20px;
    position: absolute;
    top: 40.5px;
    right: 0px;
    background-color: #212B5D;
}
.blue-bgcenter::before {
    content: "";
    width: calc(50vw - 38px);
    height: 20px;
    position: absolute;
    top: 40.5px;
    left: 0px;
    background-color: #212B5D;
}
/* STEPS */
.steps {
  background: var(--light-gray);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.steps-image img {
  width: 100%;
  border-radius: 8px;
  background: #ddd;
}

.step {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.step-number {
  font-size: 32px;
  font-weight: 800;
  color: #bbb;
}

/* CONTACT */
.contact {
  padding: 80px 20px;
  text-align: center;
}

.contact-form {
  margin-top: 16px;
}

.contact input {
  padding: 12px;
  width: 240px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.contact button {
  padding: 12px 20px;
  margin-left: 8px;
  border-radius: 6px;
  border: none;
  background: #222;
  color: #fff;
}

/* FOOTER */
footer {
  background: #E85E00;
  position: relative;
  color: #fff;
  padding: 40px 27px;
  display: flex;
  font-size: 14px;
  height: 274px;
  overflow: hidden;
}

.footer-brand {
    z-index: 10;
}

.footer-brand_logo{
    text-align: center;
}

.footer-brand_logo img{
    width: 60px;
}

.footer-brand_social{
    display: grid;
    margin-top: 14px;
    grid-template-columns: repeat(3, auto);
    gap: 13px;
}
.footer-content {
    z-index: 10;
    margin-top: 16px;
    font-size: 11px;
    padding: 0px 24px;
}

.footer-content span{
 font-weight: 700;
 color: var(--blue);
}

.footer-bgleft {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 206px;
    max-width: 206px;
}
.footer-bgright {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 512px;
    max-width: 512px;
}

.footer-bgright img, .footer-bgleft img {
    width: 100%;
}

footer h4 {
  margin-bottom: 12px;
}

footer a {
  display: block;
  margin-bottom: 6px;
  opacity: 0.9;
}


/* Ads page */
.ads-content {
    background-color: var(--blue);
        border-radius: 8px;
    color: white;
    margin-top: 76px;
    padding: 24px 52px;
}

.ads-content h3 {
    font-size: 24px;
    margin-left: 12px;
}

.ads-content_notis {
    display: flex;
    justify-content: center;
    align-items: center;
}
.ads-content_desc {
    margin-top: 30px;
    font-size: 13px;
}
.ads-content_button {
    margin-top: 38px;
    margin-bottom: 10px;
}

.ads-content_button button {
    font-size: 9px;
    color: white;
    border-radius: 8px;
    height: 32px;
    width: 139px;
}

button.success {
    background-color: #0DDE05;
}
button.danger {
    background-color: #FF2C2C;
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .features {
    grid-template-columns: 1fr;
  }

  .hero-illustration {
    height: auto;
}

.hero-illustration img {
    width: 100%;
    height: auto;
}

  .steps {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .navbar {
    padding: 16px 24px;
  }
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
