@import url("/wp-content/uploads/elementor/google-fonts/css/inter.css");
@import url("/wp-content/uploads/elementor/google-fonts/css/heebo.css");

:root {
  --pink: #e5004c;
  --pink-dark: #ac0039;
  --navy: #00013a;
  --text: #2a2a2a;
  --muted: #6c6c6c;
  --soft: #f0f0f0;
  --white: #ffffff;
  --footer-text: #bdbdbd;
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--white);
}

img,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--pink);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--pink-dark);
}

p {
  margin: 0 0 16px;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0 0 22px 22px;
  padding: 0;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  background: var(--navy);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: 174px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 22%);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  width: 19px;
  height: 2px;
  display: block;
  background: currentColor;
  position: absolute;
}

.nav-toggle {
  position: relative;
}

.nav-toggle::before {
  transform: translateY(-7px);
}

.nav-toggle::after {
  transform: translateY(7px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1;
  padding: 34px 0;
  text-transform: uppercase;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 27px;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a.active {
  color: var(--pink);
}

.site-nav a:hover::after,
.site-nav a:focus::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.hero {
  min-height: 100vh;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.42;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 1 58 / 90%);
}

.hero-content {
  width: min(calc(100% - 40px), 733px);
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--pink);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero .eyebrow {
  font-size: 20px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}

.hero h1 {
  color: var(--white);
  font-size: 64px;
  margin-bottom: 18px;
}

.hero p {
  color: var(--white);
  font-size: 18px;
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 18px 48px;
  background: var(--pink);
  color: var(--white);
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.btn:hover,
.btn:focus {
  background: var(--pink-dark);
  color: var(--white);
}

.hero .btn {
  margin-top: 24px;
}

.section {
  padding: 80px 0;
}

.section-large {
  padding: 120px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-light {
  background: #f7f7fa;
}

.section-title {
  color: var(--text);
  font-size: 36px;
  margin-bottom: 18px;
}

.section-dark .section-title {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px;
}

.split-center {
  align-items: center;
  gap: 23px;
}

.text-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-intro p {
  color: var(--muted);
}

.services-intro {
  padding: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 34px;
  padding: 20px;
}

.service-item h3,
.feature h3 {
  color: var(--pink);
  font-size: 16px;
  margin-bottom: 8px;
}

.trust-list,
.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.process-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-list article,
.process-list article {
  border-top: 2px solid var(--pink);
  padding-top: 18px;
}

.trust-list h3,
.process-list h3 {
  color: var(--text);
  font-size: 18px;
  margin-bottom: 8px;
}

.trust-list p,
.process-list p {
  color: var(--muted);
}

.process-list span {
  display: block;
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.image-feature {
  margin-bottom: 120px;
}

.image-feature img {
  width: 100%;
}

.image-feature-copy {
  padding: 50px;
}

.image-feature-copy h2 {
  font-size: 36px;
  line-height: 1.5;
}

.about-image {
  width: 100%;
  height: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 32px;
}

.feature p {
  color: var(--white);
}

.team-section {
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.team-text-grid .team-member {
  border: 1px solid #dddddd;
  border-top: 3px solid var(--pink);
  padding: 24px;
  background: var(--white);
}

.team-member img {
  width: 150px;
  height: 150px;
  margin-inline: auto;
  object-fit: cover;
  border-radius: 100px;
}

.team-member h3 {
  color: var(--navy);
  font-size: 18px;
  margin: 0 0 4px;
}

.team-member p {
  color: var(--muted);
  margin: 0;
}

.portfolio-head {
  max-width: 800px;
  margin: 0 auto 62px;
  text-align: center;
}

.portfolio-head .eyebrow {
  font-family: "Roboto", "Inter", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 15px;
}

.portfolio-head h1 {
  color: var(--navy);
  font-family: "Heebo", "Inter", Arial, sans-serif;
  font-size: 40px;
  line-height: 44px;
  margin-bottom: 11px;
}

.portfolio-head p {
  font-family: "Heebo", "Inter", Arial, sans-serif;
  line-height: 26px;
}

.portfolio-note {
  max-width: 680px;
  margin: 36px auto 0;
  text-align: center;
  color: var(--muted);
}

.filter-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 38px;
}

.filter-nav button {
  border: 0;
  border-radius: 6px;
  background: var(--soft);
  color: var(--text);
  cursor: pointer;
  font-family: "Heebo", "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 14px 20px 12px;
}

.filter-nav button.active {
  color: var(--white);
  background: var(--pink);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.video-card {
  height: 320px;
  padding: 12px;
}

.video-card.hidden {
  display: none;
}

.video-card a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
}

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

.video-card a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(37 34 53 / 20%);
  z-index: 1;
}

.play-icon {
  width: 63px;
  height: 63px;
  border-radius: 50%;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  background: url("/wp-content/uploads/2025/11/button_pay_bg-1.png") center / 63px auto no-repeat;
  box-shadow: 0 10px 20px rgb(37 34 53 / 16%);
  z-index: 2;
}

.play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--white);
  transform: translate(-50%, -50%);
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 0;
}

.contact-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 36px;
}

.contact-copy h1 {
  color: var(--navy);
  font-size: 36px;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-weight: 700;
}

.contact-checklist {
  margin-top: 12px;
}

.contact-checklist h2 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-checklist ul {
  margin-bottom: 0;
}

.simple-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.simple-list span {
  border: 1px solid #dddddd;
  padding: 14px 16px;
  text-align: center;
  color: var(--text);
  background: var(--white);
}

.legal {
  max-width: var(--max);
}

.legal h1 {
  color: var(--pink);
  font-size: 36px;
  margin-bottom: 20px;
}

.legal h2 {
  color: var(--text);
  font-size: 16px;
  margin: 28px 0 8px;
}

.legal p,
.legal li {
  font-size: 16px;
}

.not-found {
  min-height: 380px;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found-mark {
  color: var(--pink);
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.cta {
  padding: 80px 0;
  background: var(--navy);
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  color: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.cta h2 {
  color: var(--pink);
  font-size: 36px;
}

.cta p {
  color: #e2e2e2;
}

.site-footer {
  background: var(--navy);
  color: var(--footer-text);
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.footer-logo img {
  width: 199px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.site-footer p,
.site-footer a {
  color: var(--footer-text);
  font-size: 14px;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--white);
}

.copyright {
  margin-top: 16px;
}

.floating-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 8px 24px rgb(0 0 0 / 18%);
  font-size: 14px;
  font-weight: 600;
}

.floating-chat:hover,
.floating-chat:focus {
  color: var(--white);
  background: #1ebe5d;
}

.floating-chat svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgb(0 0 0 / 80%);
}

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

.modal-frame {
  width: min(100%, 1200px);
  height: min(90vh, 720px);
  background: #000;
  position: relative;
}

.modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

@media (max-width: 1024px) {
  .container {
    width: min(calc(100% - 32px), 1024px);
  }

  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-list,
  .simple-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-feature-copy {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .header-inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    z-index: 20;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    border-top: 1px solid rgb(255 255 255 / 10%);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 16px 20px;
  }

  .site-nav a::after {
    display: none;
  }

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

  .hero-video {
    display: none;
  }

  .hero .eyebrow {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .section,
  .section-large {
    padding: 48px 0;
  }

  .split,
  .split-center,
  .contact-layout,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .feature-grid,
  .team-grid,
  .video-grid,
  .trust-list,
  .process-list,
  .simple-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-feature {
    margin-bottom: 48px;
  }

  .portfolio-head {
    margin-bottom: 30px;
  }

  .portfolio-head h1 {
    font-size: 34px;
    line-height: 40px;
  }

  .filter-nav {
    margin-bottom: 24px;
  }

  .filter-nav button {
    font-size: 12px;
    padding: 10px 18px;
  }

  .contact-copy {
    padding-right: 0;
  }

  .cta,
  .site-footer {
    padding: 48px 0;
  }

  .floating-chat {
    right: 16px;
    bottom: 16px;
    padding: 0 14px;
  }
}
