:root {
  --d: #1a1a2e;
  --b: #2364aa;
  --bl: #3a7bd5;
  --y: #ffbd39;
  --yd: #e6a520;
  --g: #666;
  --l: #f2f2f2;
  --w: #fff;
  --grad: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #2364aa 100%);
  --f: "Inter", sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.sm {
  font-family: var(--f);
  color: var(--d);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.con {
  max-width: 1100px;
  margin: 0 auto;
}

.sec {
  padding: 72px 24px;
}

.sec--a {
  background: var(--l);
}

.sec--d {
  background: var(--d);
  color: var(--w);
}

.sec__head {
  margin-bottom: 36px;
}

.sec__head--center {
  text-align: center;
}

.lab {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 10px;
}

.lab--light {
  color: rgba(255, 255, 255, 0.5);
}

.tit {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.tit--light {
  color: var(--w);
}

.desc {
  font-size: 15px;
  color: var(--g);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.desc--center {
  margin-left: auto;
  margin-right: auto;
}

.desc--strong {
  margin-top: -12px;
  color: var(--d);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--f);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--full {
  width: 100%;
}

.btn-y {
  background: var(--y);
  color: var(--d);
}

.btn-y:hover {
  background: #ffe082;
  box-shadow: 0 12px 32px rgba(255, 189, 57, 0.3);
}

.btn-o {
  background: transparent;
  color: var(--w);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-o:hover {
  border-color: var(--y);
  color: var(--y);
}

.btn-b {
  background: var(--b);
  color: var(--w);
}

.btn-b:hover {
  background: var(--bl);
  box-shadow: 0 12px 32px rgba(35, 100, 170, 0.3);
}

.btn-wa {
  background: #25d366;
  color: var(--w);
  max-width: 500px;
  width: 100%;
  padding: 18px 32px;
  font-size: 14px;
}

.btn-wa:hover {
  background: #1eb954;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.3);
}

.video-highlight {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  padding: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.video-highlight:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 189, 57, 0.55);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.video-highlight__thumb-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-highlight__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-highlight__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.88);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding-left: 3px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.video-highlight__content {
  display: grid;
  gap: 4px;
}

.video-highlight__content strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}

.video-highlight__content span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.video-highlight--hero {
  margin-top: 16px;
  max-width: 560px;
}

.video-spot {
  background: #fff;
  padding-top: 20px;
}

.video-highlight--section {
  max-width: 760px;
  margin: 0 auto;
  border-color: rgba(35, 100, 170, 0.2);
  background: #f6f8fb;
}

.video-highlight--section .video-highlight__content strong {
  color: var(--d);
}

.video-highlight--section .video-highlight__content span {
  color: #4f6075;
}

.video-modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(2px);
}

.video-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  z-index: 2;
}

.video-modal__close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.video-modal__frame-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.video-modal__frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad);
  padding: 80px 24px 60px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 189, 57, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__in {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero__logo-box {
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 8px;
  justify-content: flex-start;
}

.hero__logo {
  height: 520px;
  width: auto;
  transform: translateY(24px);
}

.hero__badge {
  display: inline-block;
  background: rgba(255, 189, 57, 0.12);
  border: 1px solid rgba(255, 189, 57, 0.25);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 20px;
}

.hero__t {
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 800;
  color: var(--w);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero__t span {
  color: var(--y);
}

.hero__s {
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.hero__pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.hero__m img {
  max-height: 250px;
  animation: float 4s ease-in-out infinite;
  margin: 0 auto;
}

@media (min-width: 969px) {
  .hero__m img {
    max-height: 450px;
  }
}

.trust {
  background: var(--w);
  border-bottom: 1px solid #e8edf2;
  padding: 32px 24px;
}

.trust__in {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust__i {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust__ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(35, 100, 170, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust__ic svg {
  width: 20px;
  height: 20px;
  stroke: var(--b);
  fill: none;
}

.trust__t {
  font-size: 12px;
  font-weight: 600;
  color: var(--d);
  line-height: 1.3;
}

.trust__t small {
  display: block;
  font-weight: 400;
  color: var(--g);
  font-size: 10px;
  margin-top: 1px;
}

.showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.showcase__item {
  border-radius: 16px;
  overflow: hidden;
  background: var(--w);
  border: 1px solid #e8edf2;
  display: flex;
  flex-direction: column;
}

.showcase__item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.showcase__item p {
  height: 64px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  margin: 0;
  background: #f3f4f6;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--w);
  border-radius: 16px;
  padding: 28px 22px;
  border: 1px solid #e8edf2;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--b), var(--y));
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.card:hover::before {
  opacity: 1;
}

.card__ic {
  font-size: 24px;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card p {
  font-size: 13px;
  color: var(--g);
  line-height: 1.7;
}

.aud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.aud__i {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s;
}

.aud__i:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 189, 57, 0.3);
}

.aud__ic {
  font-size: 32px;
  margin-bottom: 10px;
}

.aud__i h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--w);
  margin-bottom: 4px;
}

.aud__i p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.mods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.mod {
  background: var(--w);
  border-radius: 16px;
  padding: 32px 24px;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.mod:hover {
  border-color: var(--y);
}

.mod__tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mod__tag--b {
  background: rgba(35, 100, 170, 0.1);
  color: var(--b);
}

.mod__tag--y {
  background: rgba(255, 189, 57, 0.15);
  color: var(--yd);
}

.mod h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.mod p {
  font-size: 13px;
  color: var(--g);
  line-height: 1.7;
  margin-bottom: 12px;
}

.mod ul {
  list-style: none;
  margin-bottom: 20px;
}

.mod li {
  font-size: 12px;
  padding: 4px 0 4px 20px;
  position: relative;
}

.mod li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--y);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.split__img img {
  max-height: 340px;
  margin: 0 auto;
  border-radius: 16px;
  animation: float 4s ease-in-out 1s infinite;
}

.law {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(35, 100, 170, 0.08);
  border: 1px solid rgba(35, 100, 170, 0.15);
  border-radius: 12px;
  padding: 12px 20px;
  margin-top: 12px;
  margin-bottom: 20px;
}

.law__icon {
  font-size: 20px;
}

.law__text {
  font-size: 12px;
  font-weight: 600;
  color: var(--b);
  line-height: 1.4;
}

.law__text small {
  display: block;
  font-weight: 400;
  color: var(--g);
  font-size: 11px;
}

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

.faq__item {
  border-bottom: 1px solid #e8edf2;
}

.faq__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f);
  font-size: 15px;
  font-weight: 700;
  color: var(--d);
  text-align: left;
}

.faq__q::after {
  content: "+";
  font-size: 22px;
  color: var(--b);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__q.active::after {
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__a p {
  padding: 0 0 18px;
  font-size: 14px;
  color: var(--g);
  line-height: 1.7;
}

.faq__a strong {
  color: var(--d);
}

.cta {
  padding: 72px 24px;
  background: var(--l);
  text-align: center;
}

.cta__box {
  max-width: 760px;
  margin: 0 auto;
  background: var(--grad);
  border-radius: 28px;
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}

.cta__box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 189, 57, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cta__box > * {
  position: relative;
  z-index: 2;
}

.cta__title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: var(--w);
  margin-bottom: 10px;
}

.cta__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.status-message {
  display: none;
  margin: 0 auto 20px;
  max-width: 560px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

.status-message.success {
  display: block;
  background: rgba(37, 211, 102, 0.16);
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #defee8;
}

.status-message.error {
  display: block;
  background: rgba(255, 99, 99, 0.16);
  border: 1px solid rgba(255, 99, 99, 0.45);
  color: #ffe5e5;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: var(--w);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.lead-form select:invalid {
  color: rgba(255, 255, 255, 0.65);
}

.lead-form option {
  color: #111;
}

.lead-form textarea {
  resize: vertical;
  min-height: 110px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.ft {
  background: #212b5a;
  padding: 36px 24px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.ft img {
  height: 108px;
  margin: 0 auto 14px;
}

.ft p {
  font-size: 11px;
  line-height: 1.8;
}

.ft__brand {
  color: rgba(255, 255, 255, 0.7);
}

.ft__line {
  width: 50px;
  height: 2px;
  background: var(--y);
  margin: 14px auto;
  opacity: 0.4;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 968px) {
  .hero__in,
  .split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__logo-box {
    height: 170px;
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero__logo {
    height: 220px;
    transform: translateY(16px);
  }

  .hero__text {
    order: 1;
  }

  .hero__m {
    order: 0;
  }

  .hero__ctas,
  .hero__pills {
    justify-content: center;
  }

  .hero__badge {
    margin-left: auto;
    margin-right: auto;
  }

  .video-highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .video-highlight--hero {
    margin-left: auto;
    margin-right: auto;
  }

  .split__img {
    order: -1;
  }

  .split__img img {
    max-height: 240px;
  }

  .desc {
    margin-left: auto;
    margin-right: auto;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .aud {
    grid-template-columns: 1fr 1fr;
  }

  .mods,
  .showcase {
    grid-template-columns: 1fr;
  }

  .showcase__item img {
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
    background: transparent;
  }

  .trust__in {
    gap: 14px;
  }

  .law {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .hero__in {
    gap: 1px;
  }

  .hero {
    min-height: auto;
    padding: 60px 20px 48px;
  }

  .hero__m {
    margin-bottom: -60px;
  }

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

  .video-highlight {
    gap: 10px;
    padding: 10px;
  }

  .video-highlight__content strong {
    font-size: 15px;
  }

  .video-highlight__content span {
    font-size: 12px;
  }

  .video-modal {
    padding: 16px;
  }

  .video-modal__close {
    top: -40px;
    width: 34px;
    height: 34px;
  }

  .hero__logo-box {
    height: 170px;
    margin-top: 0;
  }

  .hero__logo {
    height: 320px;
    transform: translateY(12px);
  }

  .btn {
    width: 100%;
    max-width: 300px;
    font-size: 12px;
    padding: 14px 20px;
  }

  .btn-wa {
    max-width: none;
  }

  .trust__in {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .sec {
    padding: 48px 20px;
  }

  .aud {
    grid-template-columns: 1fr;
  }

  .cta__box {
    padding: 32px 20px;
    border-radius: 20px;
  }

  .hero__pills {
    justify-content: center;
  }

  .showcase__item img {
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
    background: transparent;
  }
}
