/* CSS Variables */
:root {
  --font-family: "Raleway", sans-serif;
  --second-family: "Inter", sans-serif;
  --third-family: "TT Norms Pro", sans-serif;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--third-family), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.flex {
  display: flex;
}

/* PayRadar Header Section */
.payradar-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 50px 0;
}

.payradar-header__container {
  max-width: 1192px;
  padding: 0 20px;
  margin: 0 auto;
}

.payradar-header__content {
  justify-content: space-between;
  align-items: center;
}

.payradar-header__logo img {
  height: 29px;
  width: auto;
}

.payradar-header__btn {
  padding: 12px 64px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  background: #f5b034;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.payradar-header__btn:hover {
  background: #e6a02a;
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

/* PayRadar Hero Section */
.payradar-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url('assets/radar/map-bg.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  border-radius: 40px;
  margin: 15px;
}

.payradar-hero__container {
  width: 100%;
  max-width: 1920px;
  padding: 0 20px;
  margin: 0 auto;
}

.payradar-hero__content {
  align-items: center;
  gap: 60px;
}

.payradar-hero__left {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.payradar-hero__phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.payradar-hero__phones-image {
  max-width: 160%;
  height: auto;
  object-fit: contain;
  width: 160%;
}

.payradar-hero__right {
  flex: 1;
  color: white;
}

.payradar-hero__title {
  color: white;
  margin-bottom: 30px;
  font-family: var(--font-family);
  font-size: 48px;
  line-height: 1.2;
  font-weight: 400;
  max-width: 700px;
}

.payradar-hero__title-pay {
  max-width: 700px;
  font-weight: 700;
}

.payradar-hero__title-radar {
  max-width: 500px;
  font-weight: 700;
}

.payradar-hero__subtitle {
  color: #ecf0f1;
  margin-bottom: 40px;
  font-size: 24px;
  line-height: 1.4;
  max-width: 500px;
  font-weight: 400;
}

.payradar-hero__btn {
  padding: 15px 40px;
  font-size: 18px;
  border-radius: 8px;
  border: none;
  background: #f5b034;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.payradar-hero__btn:hover {
  background: #e6a02a;
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

.payradar-hero__bottom {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.payradar-hero__bottom_container {
  margin-top: 80px;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.payradar-hero__arrow-down {
  cursor: pointer;
  margin-left: 8%;
  transition: all 0.3s ease;
}

.payradar-hero__bottom_container a {
  text-decoration: none;
  display: inline-block;
}

.payradar-hero__bottom_container a:hover .payradar-hero__arrow-down {
  transform: translateY(5px);
  opacity: 0.8;
}

/* PayRadar What For Section */
.payradar-whatfor {
  padding: 100px 0;
  background: white;
}

.payradar-whatfor__content {
  align-items: center;
  gap: 80px;
}

.payradar-whatfor__left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.payradar-whatfor__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.payradar-whatfor__image-main {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}

.payradar-whatfor__right {
  flex: 1;
}

.payradar-whatfor__title {
  margin-bottom: 30px;
  font-family: var(--third-family);
  font-weight: 800;
  font-size: 45px;
  line-height: 144%;
  text-align: center;
  color: #000;
}

.payradar-whatfor__text {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 22px;
  line-height: 182%;
  color: #000;
}

.payradar-whatfor__text strong {
  font-weight: 700;
}

/* PayRadar How Works Section */
.payradar-howworks {
  padding: 0 0 100px;
  background: white;
}

.payradar-howworks__title {
  font-family: var(--third-family);
  font-weight: 800;
  font-size: 45px;
  line-height: 144%;
  text-align: center;
  color: #000;
  margin-bottom: 80px;
}

.payradar-howworks__content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.payradar-howworks__left,
.payradar-howworks__right {
  flex: 1;
  max-width: 170px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 13px;
  color: #000;
}

.payradar-howworks__center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.payradar-howworks__main-image {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
}

.payradar-howworks__step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 300px;
}

.payradar-howworks__step-number {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 48px;
  line-height: 120%;
  text-align: center;
  color: #f5b034;
  border-radius: 15px;
  width: 127px;
  height: 110px;
  background: rgba(245, 176, 52, 0.19);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.payradar-howworks__step-title {
  font-family: var(--third-family);
  font-weight: 700;
  line-height: 120%;
  color: #000;
  margin-bottom: 10px;
}

.payradar-howworks__step-text {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

/* PayRadar Why Important Section */
.payradar-whyimportant {
  padding: 0 20px;
  background: white;
  position: relative;
  overflow: visible;
}

.payradar-whyimportant__content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  overflow: visible;
}

.payradar-whyimportant__main-box {
  background: #f0f0f0;
  border-radius: 15px;
  height: 374px;
  padding: 10px 40px 40px;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
}

.payradar-whyimportant__title {
  font-family: var(--third-family);
  font-weight: 800;
  font-size: 45px;
  line-height: 144%;
  text-align: center;
  color: #000;
  margin-bottom: 40px;
}

.payradar-whyimportant__text {
  text-align: left;
}

.payradar-whyimportant__text-item {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 22px;
  line-height: 182%;
  color: #000;
  margin-bottom: 20px;
}

.payradar-whyimportant__text-item strong {
  font-weight: 700;
}

.payradar-whyimportant__arrow {
  position: absolute;
  bottom: 20px;
  left: 20px;
  cursor: pointer;
}

.payradar-whyimportant__gear {
  position: absolute;
  top: -50px;
  right: -100px;
  z-index: 10;
  opacity: 0.8;
}

.payradar-whyimportant__gear img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

@media (min-width: 1000px) {
  .payradar-whyimportant__gear {
    position: absolute;
    top: -180px;
    right: -39px;
  }

  .payradar-whyimportant__gear img {
    width: auto;
    height: auto;
    max-width: 400px;
    max-height: 400px;
  }
}

/* PayRadar You Know Section */
.payradar-youknow {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.payradar-youknow__content {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.payradar-youknow__left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.payradar-youknow__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.payradar-youknow__bg-image {
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  z-index: 1;
  opacity: 0.1;
}

.payradar-youknow__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payradar-youknow__image-main {
  width: 100%;
  max-width: 500px;
  height: auto;
  position: relative;
  z-index: 2;
  object-fit: contain;
}

.payradar-youknow__right {
  flex: 1;
  max-width: 600px;
}

.payradar-youknow__title {
  font-family: var(--third-family);
  font-weight: 800;
  font-size: 45px;
  line-height: 144%;
  color: #000;
  margin-bottom: 50px;
}

.payradar-youknow__list {
  list-style: none;
  padding: 0;
  margin: 0;
  @media (max-width: 768px) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 353px;
  }
}

.payradar-youknow__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  gap: 25px;
}

.payradar-youknow__item-number {
  width: 50px;
  height: 50px;
  background: #f5b034;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--third-family);
}

.payradar-youknow__item-text {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 22px;
  line-height: 182%;
  color: #000;
  padding-top: 5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .payradar-hero__content {
    gap: 40px;
  }

  .payradar-hero__phones-image {
    max-height: 500px;
  }

  .payradar-hero__title {
    font-size: 32px;
  }

  .payradar-howworks__steps {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .payradar-hero__content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .payradar-hero__phones {
    order: 2;
  }

  .payradar-hero__right {
    order: 1;
  }

  .payradar-hero__title {
    font-size: 36px;
  }

  .payradar-hero__subtitle {
    font-size: 20px;
  }

  .payradar-hero__phones-image {
    max-height: 500px;
  }

  .payradar-hero__bottom {
    justify-content: center;
  }

  .payradar-whatfor__content,
  .payradar-youknow__content {
    flex-direction: column;
    gap: 40px;
  }

  .payradar-youknow__content {
    text-align: center;
  }

  .payradar-youknow__title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .payradar-youknow__item {
    justify-content: center;
    text-align: left;
  }

  .payradar-youknow__item-text {
    font-size: 18px;
  }

  .payradar-youknow__image-main {
    max-width: 400px;
  }

  .payradar-whatfor__title {
    font-size: 36px;
  }

  .payradar-whatfor__text {
    font-size: 18px;
  }

  .payradar-whatfor__image-main {
    max-height: 300px;
  }

  .payradar-howworks__content {
    flex-direction: column;
    gap: 40px;
  }

  .payradar-howworks__left,
  .payradar-howworks__right {
    gap: 30px;
  }

  .payradar-howworks__step {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .payradar-howworks__main-image {
    max-height: 300px;
  }

  .payradar-whyimportant__content {
    min-height: 300px;
  }

  .payradar-whyimportant__main-box {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 300px;
    padding: 40px 30px;
    margin: 0 20px;
  }

  .payradar-whyimportant__title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .payradar-whyimportant__text-item {
    font-size: 18px;
  }

  .payradar-whyimportant__gear {
    top: -30px;
    right: -50px;
  }

  .payradar-whyimportant__gear img {
    width: 150px;
    height: 150px;
  }

  .payradar-whyimportant__arrow {
    bottom: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 600px) {
  .payradar-hero__arrow-down {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .payradar-hero__phones-image {
    max-height: 400px;
  }

  .payradar-hero__title {
    font-size: 28px;
  }

  .payradar-hero__subtitle {
    font-size: 18px;
  }

  .payradar-hero__btn {
    padding: 12px 30px;
    font-size: 16px;
  }

  .payradar-header__btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .payradar-whatfor__image-main {
    max-height: 250px;
  }

  .payradar-howworks__step-image {
    width: 150px;
    height: 200px;
  }

  .payradar-whyimportant__main-box {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 250px;
    padding: 30px 20px;
    margin: 0 10px;
  }

  .payradar-whyimportant__title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .payradar-whyimportant__text-item {
    font-size: 16px;
  }

  .payradar-whyimportant__gear {
    top: -20px;
    right: -30px;
  }

  .payradar-whyimportant__gear img {
    width: 120px;
    height: 120px;
  }

  .payradar-whyimportant__arrow {
    bottom: 10px;
    left: 10px;
    width: 35px;
    height: 35px;
  }

  .payradar-youknow__title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .payradar-youknow__item {
    margin-bottom: 25px;
    gap: 20px;
  }

  .payradar-youknow__item-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .payradar-youknow__item-text {
    font-size: 16px;
  }

  .payradar-youknow__image-main {
    max-width: 300px;
  }
}
