@charset "UTF-8";

* {
  font-family: "Roboto", Sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Header */
.lp-header {
  width: 100%;
  background-color: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.lp-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

.lp-header__logo img {
  height: 50px;
  width: auto;
  display: block;
}

.lp-header__nav {
  display: flex;
  gap: 40px;
}

.lp-header__nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.lp-header__nav a {
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}

.lp-header__nav a:hover {
  opacity: 0.7;
}

/* CTA Button */
.lp-header__cta .btn-contact {
  display: inline-block;
  background: linear-gradient(90deg, #92c946 0%, #4c9155 100%);
  color: #fff;
  padding: 3px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}

.lp-header__cta .btn-contact:hover {
  opacity: 0.9;
}

/* Hamburger Menu */
.lp-header__hamburger {
  display: none;
}

/* Campaign Banner */
.campaign-banner {
  background-color: #012148;
  color: #fff;
  width: 100%;
}

.campaign-banner__inner {
  display: flex;
  justify-content: flex-end;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  height: 90px;
}

.campaign-banner__status {
  background: linear-gradient(90deg, #7DC84A 0%, #468A50 100%);
  padding: 10px 20px;
  display: flex;
  align-items: baseline;
  font-size: 20px;
  margin: 10px auto 10px 0;
  line-height: 1;
}

.campaign-banner__count {
  font-size: 40px;
  color: #fff;
  margin: 0 5px;
  animation: blinkColor 1s infinite alternate;
  font-weight: bold;
  line-height: 40px;
}

.campaign-banner__message {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  padding-right: 20px;
}

@keyframes blinkColor {
  0% {
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  }

  100% {
    color: #FFEB3B;
    text-shadow: 0 0 5px rgba(255, 235, 59, 0.5);
  }
}

/* Main Visual */
.lp-mv {
  position: relative;
  width: 100%;
}

.lp-mv__img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-mv__content {
  position: absolute;
  bottom: 10%;
  right: 15%;
}

.lp-mv__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #0f3c6e;
  color: #fff;
  padding: 15px 40px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 6px 0 #082546, 0 10px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.1s, box-shadow 0.1s;
  width: fit-content;
}

.lp-mv__btn:hover {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #082546, 0 5px 5px rgba(0, 0, 0, 0.3);
}

.lp-mv__btn-text--sub {
  color: #dcb65b;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.lp-mv__btn-text--main {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Second Section */
.lp-sec-2__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Company Logo Slider */
.lp-implementing-company {
  background-color: #fff;
  padding: 60px 0;
  overflow: hidden;
}

.lp-implementing-company__title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.lp-implementing-company__description {
  max-width: 500px;
  margin: 0 auto 80px;
  background-color: #031D45;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
}

.lp-implementing-company__description-text {
  line-height: 1.6;
  padding: 5px 0;
}

.lp-implementing-company__highlight {
  color: #FFF100;
  font-size: 36px;
  font-family: "Impact", sans-serif;
  margin-right: 5px;
}

.lp-implementing-company__slider {
  width: 100%;
  overflow: hidden;
}

.lp-implementing-company__items {
  display: flex;
  width: max-content;
  animation: loop-slide 30s linear infinite;
}

.lp-implementing-company__item {
  width: 180px;
  margin-right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-implementing-company__item img {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

@keyframes loop-slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Worries Section */
.lp-worries {
  padding: 60px 20px;
  background-color: #f7f9fc;
}

.lp-worries__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.lp-worries__title {
  text-align: center;
  color: #031D45;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
}

.lp-worries__items {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.lp-worries__item {
  width: 32%;
}

.lp-worries__item img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.lp-worries__highlight {
  color: #2C65AA;
}

/* Standing Position Section */
.lp-standing {
  background-color: #f6f6f0;
  padding: 60px 20px;
}

.lp-standing__inner {
  max-width: 768px;
  margin: 0 auto;
}

.lp-standing__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Service Section */
.lp-service {
  background-color: #f1f6f9;
  padding: 60px 20px;
}

.lp-service__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.lp-service__img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-service__title {
  text-align: center;
  color: #031D45;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
}

.lp-service__text {
  text-align: center;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0;
}

.lp-service__highlight {
  color: #E85A4F;
}

.lp-service__btn-wrapper {
  text-align: center;
  margin-top: 30px;
}

.lp-service__btn {
  display: inline-block;
  background-color: #0f3c6e;
  color: #fff;
  padding: 15px 60px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 6px 0 #01132e, 0 10px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.1s, box-shadow 0.1s;
}

.lp-service__btn:hover {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #01132e, 0 5px 5px rgba(0, 0, 0, 0.3);
  opacity: 1;
}

/* Section 6, Usage, Sections 10-13 (Images) */
.lp-sec-6,
.lp-usage,
.lp-sec-10,
.lp-sec-11,
.lp-sec-12,
.lp-sec-13 {
  padding: 60px 20px;
  background-color: #fff;
}

.lp-usage {
  background-color: #f4f8f9;
}

.lp-sec-10 {
  background-color: #eef3f4;
  padding: 80px 20px;
}

.lp-sec-11 {
  padding: 80px 20px;
}

.lp-sec-12 {
  background-color: #fafcfb;
  padding: 80px 20px;
}

.lp-sec-13 {
  padding: 80px 20px;
}

.lp-sec-6__inner,
.lp-usage__inner,
.lp-sec-10__inner,
.lp-sec-11__inner,
.lp-sec-12__inner,
.lp-sec-13__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.lp-sec-6__img,
.lp-usage__img,
.lp-sec-10__img,
.lp-sec-11__img,
.lp-sec-12__img,
.lp-sec-13__img {
  width: 100%;
  height: auto;
  display: block;
}

/* YouTube Video Placeholder */
.lp-video {
  padding: 80px 20px;
}

.lp-video__inner {
  max-width: 800px;
  margin: 0 auto;
}

.lp-video__placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* AI Plans Section */
.lp-plans {
  background-color: #fff;
  padding: 80px 20px;
}

.lp-plans__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-plans__title {
  text-align: center;
  color: #031D45;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.lp-plans__tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.lp-plans__tag {
  background-color: #8FD8CD;
  color: #031D45;
  padding: 0 15px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
}

.lp-plans__list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.lp-plan-card {
  width: 31%;
  min-width: 320px;
  border-radius: 20px;
  border: 3px solid #031D45;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Plan Themes */
.lp-plan-card--light {
  border-color: #031D45;
}

.lp-plan-card--standard {
  border-color: #D4A017;
}

.lp-plan-card--premium {
  border-color: #4A148C;
}

.lp-plan-card__header {
  padding: 10px;
  text-align: center;
  background: transparent;
}

.lp-plan-card__logo {
  width: 100%;
  height: 90px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.lp-plan-card__badge {
  position: absolute;
  top: -40px;
  left: -30px;
  width: 100px;
  z-index: 10;
}

.lp-plan-card__badge img {
  width: 100%;
  height: auto;
}

.lp-plan-card__title-area {
  text-align: center;
}

.lp-plan-card__title-area h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #031D45;
}

.lp-plan-card--light .lp-plan-card__title-area h3 {
  background-color: #CDEEFA;
}

.lp-plan-card--standard .lp-plan-card__title-area h3 {
  background-color: #FDE68A;
}

.lp-plan-card--premium .lp-plan-card__title-area h3 {
  background-color: #E1BEE7;
}

.lp-plan-card__items {
  list-style: none;
  padding: 20px;
  margin: 0;
  flex-grow: 1;
}

.lp-plan-card__items li {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  position: relative;
}

.lp-plan-card__footer {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 0 0 20px 20px;
}

/* Progress Example Section */
.lp-progress {
  padding: 60px 20px;
  background-color: #fff;
}

.lp-progress__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-progress__header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-progress__logo-area {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.lp-progress__parrot {
  width: 60px;
  height: auto;
}

.lp-progress__speech {
  background-color: #031D45;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  margin-left: 10px;
  position: relative;
  font-family: monospace, sans-serif;
}

.lp-progress__speech::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #031D45;
}

.lp-progress__title {
  color: #031D45;
  font-size: 36px;
  font-weight: 700;
  padding-bottom: 5px;
  display: inline-block;
}

.lp-progress__columns {
  display: flex;
  justify-content: space-between;
}

.lp-progress__col {
  flex: 1;
  border-right: 2px solid #002661;
  padding: 0 20px;
}

.lp-progress__col:last-child {
  border-right: none;
}

.lp-progress__col-header {
  background-color: #002661;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}

.lp-progress__block {
  margin-bottom: 20px;
}

.lp-progress__block-title {
  background-color: #C1F0DC;
  color: #031D45;
  padding: 0 15px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  display: inline-block;
}

.lp-progress__block ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.lp-progress__block li {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

/* Contact Form Section */
.lp-contact {
  background-color: #ecf6ff;
  padding: 80px 20px;
}

.lp-contact__inner {
  text-align: center;
}

.lp-contact__title {
  font-size: 36px;
  color: #031D45;
  font-weight: 700;
}

.lp-contact__text {
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
}

.lp-contact__form {
  max-width: 800px;
  margin: 0 auto;
}

.wpcf7 p>label {
  color: #031D45;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"] {
  border-color: rgba(3, 29, 69, 1) !important;
  font-size: 12px;
}

.wpcf7 input[type="url"] {
  border: 1px solid #031D45;
  padding: 6px 15px;
  font-size: 13px;
  width: 100%;
  background-color: #fff;
}

.wpcf7 input[type="submit"] {
  background: linear-gradient(180deg, #E60012 0%, #A60000 100%);
  color: #fff !important;
  font-size: 24px;
  font-weight: bold !important;
  padding: 20px 40px;
  border: none;
  border-radius: 10px !important;
  width: 100%;
  max-width: 450px !important;
  display: block;
  margin: 40px auto 0;
  cursor: pointer;
  box-shadow: 0 6px 0 #780000, 0 10px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  line-height: 1.4;
}

.wpcf7 input[type="submit"]:hover {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #780000, 0 5px 5px rgba(0, 0, 0, 0.2);
}

.ai-stamp {
  position: absolute;
  top: -15px;
  right: 125px;
  border: 3px solid #E60012;
  border-radius: 10px;
  color: #E60012;
  padding: 0 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
  transform: rotate(15deg);
}

.submit-wrap p {
  margin-bottom: 0;
}

.form-note {
  text-align: center;
  padding: 0 !important;
  margin: 0 !important;
}

/* Floating Popup */
.lp-floating-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  width: 340px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  text-align: center;
  font-family: sans-serif;
}

.lp-floating-popup__close {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 30px;
  height: 30px;
  background: #999;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  line-height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.lp-floating-popup__title {
  font-weight: bold;
  font-size: 20px;
  color: #333;
  margin: 0;
}

.lp-floating-popup__subtitle {
  font-weight: bold;
  font-size: 16px;
  color: #333;
  margin: 0;
}

.lp-floating-popup__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 5px;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s;
  width: 250px;
  margin: 10px auto;
}

.lp-floating-popup__btn:hover {
  opacity: 0.9;
}

.lp-floating-popup__btn i,
.lp-floating-popup__btn img {
  margin-right: 5px;
  width: 20px;
  height: auto;
  vertical-align: middle;
}

.lp-floating-popup__btn--line {
  background: linear-gradient(90deg, #6fd552 0%, #4cb830 100%);
}

.lp-floating-popup__btn--mail {
  background: linear-gradient(90deg, #529ad4 0%, #2761a1 100%);
}

.lp-floating-popup__footer {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  margin: 0;
}

/* Responsive: Tablet / Small Desktop (max-width: 960px) */
@media screen and (max-width: 960px) {

  /* Header */
  .lp-header__inner {
    padding: 10px;
  }

  .lp-header__nav {
    gap: 20px;
  }

  .lp-header__nav ul {
    gap: 15px;
  }

  .lp-header__nav a {
    font-size: 13px;
  }

  /* Main Visual */
  .lp-mv__content {
    bottom: 5%;
    right: 5%;
  }

  /* Plans */
  .lp-plan-card {
    width: 45%;
    min-width: unset;
  }

  /* Progress (Scrollable) */
  .lp-progress__columns {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    justify-content: flex-start;
  }

  .lp-progress__col {
    min-width: 300px;
    border-right: 2px solid #031D45;
    border-bottom: none;
    padding-bottom: 0px;
  }

  .lp-progress__col:last-child {
    border-right: none;
    border-bottom: none;
    padding-bottom: 0;
  }

  .lp-progress__logo-area {
    position: static;
    transform: none;
    margin-bottom: 15px;
  }

  .lp-progress__header {
    flex-direction: column;
  }
}

/* Responsive: Mobile Large / Tablet (max-width: 768px) */
@media screen and (max-width: 768px) {

  /* Header & Nav */
  .lp-header__inner {
    justify-content: space-between;
    gap: 10px;
    padding: 15px 20px;
    position: relative;
    flex-wrap: wrap;
  }

  .lp-header__logo img {
    height: 40px;
  }

  /* Mobile Navigation Container */
  .lp-header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 115px;
    gap: 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
  }

  .lp-header__nav.active {
    right: 0;
  }

  .lp-header__nav ul {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .lp-header__nav a {
    font-size: 18px;
  }

  /* Hamburger Menu Visibility */
  .lp-header__hamburger {
    display: flex !important;
    cursor: pointer;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
  }

  .lp-header__hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease-in-out;
  }

  .lp-header__hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }

  .lp-header__hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .lp-header__hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  /* Campaign Banner */
  .campaign-banner__inner {
    flex-direction: column;
    height: auto;
    padding: 10px;
    text-align: center;
  }

  .campaign-banner__status {
    margin: 0 0 5px 0;
    font-size: 16px;
  }

  .campaign-banner__count {
    font-size: 30px;
    line-height: 30px;
  }

  .campaign-banner__message {
    font-size: 16px;
    padding-right: 0;
  }

  .lp-mv__btn {
    margin: 0 auto;
    padding: 10px 25px;
    max-width: 400px;
  }

  .lp-mv__btn-text--sub {
    font-size: 16px;
  }

  .lp-mv__btn-text--main {
    font-size: 24px;
  }

  /* Company Logo Slider */
  .lp-implementing-company {
    padding: 40px 0;
  }

  .lp-implementing-company__title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .lp-implementing-company__description {
    max-width: 90%;
    font-size: 16px;
    margin-bottom: 40px;
  }

  .lp-implementing-company__highlight {
    font-size: 28px;
  }

  .lp-implementing-company__item {
    width: 120px;
    margin-right: 20px;
  }

  .lp-implementing-company__item img {
    max-height: 60px;
  }

  /* Worries Section */
  .lp-worries {
    padding: 40px 20px;
  }

  .lp-worries__title {
    font-size: 28px;
  }

  .lp-worries__items {
    flex-direction: column;
    align-items: center;
  }

  .lp-worries__item {
    width: 100%;
    max-width: 400px;
  }

  /* Service Section */
  .lp-service {
    padding: 40px 20px;
  }

  .lp-service__title {
    font-size: 24px;
  }

  .lp-service__text {
    font-size: 16px;
  }

  .lp-service__btn {
    padding: 15px 30px;
    width: 90%;
    max-width: 350px;
    font-size: 16px;
    text-align: center;
  }

  /* Usage, Plans, Progress, Contact */
  .lp-usage {
    padding: 40px 20px;
  }

  .lp-plans {
    padding: 40px 10px;
  }

  .lp-plans__title {
    font-size: 28px;
  }

  .lp-plans__tags {
    margin-bottom: 40px;
    gap: 5px;
  }

  .lp-plans__tag {
    font-size: 12px;
    padding: 2px 10px;
  }

  .lp-plans__list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .lp-plan-card {
    width: 100%;
    max-width: 500px;
  }

  .lp-plan-card__badge {
    left: -10px;
    width: 80px;
  }

  .lp-progress {
    padding: 40px 10px;
  }

  .lp-progress__title {
    font-size: 28px;
  }

  .lp-progress__col-header {
    font-size: 16px;
  }

  .lp-contact {
    padding: 60px 10px;
  }

  .lp-contact__title {
    font-size: 24px;
  }

  .lp-contact__text {
    font-size: 16px;
  }

  .wpcf7 input[type="submit"] {
    font-size: 20px;
    padding: 15px;
  }

  /* Floating Popup */
  .lp-floating-popup {
    width: 310px;
    right: 10px;
    bottom: 10px;
    padding: 10px;
  }
}

/* Responsive: Mobile Small (max-width: 428px) */
@media screen and (max-width: 428px) {

  .lp-header__nav ul {
    display: flex;
  }

  .lp-header__cta .btn-contact {
    font-size: 12px;
    padding: 5px 15px;
  }

  .lp-mv__content {
    right: 50%;
    transform: translateX(50%);
    width: 90%;
  }

  .lp-mv__btn-text--sub {
    font-size: 12px;
  }

  .lp-mv__btn-text--main {
    font-size: 20px;
  }

  .lp-implementing-company__description {
    font-size: 14px;
  }

  .lp-worries__title {
    font-size: 24px;
  }

  .lp-service__btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .lp-plans__title {
    font-size: 24px;
  }

  .lp-contact__title {
    font-size: 20px;
  }

  .submit-wrap p {
    padding-top: 50px !important;
  }

  .wpcf7 input[type=submit] {
    padding: 10px 5px !important;
  }

  .ai-stamp {
    top: 5px;
    right: 50%;
    transform: translateX(50%);
  }

  .lp-floating-popup__title {
    font-size: 18px;
  }

  .lp-floating-popup__btn {
    width: 90%;
    font-size: 14px;
  }
}