:root {
  --navy: #172781;
  --navy2: #0d195c;
  --red: #d0003d;
  --red2: #f22155;
  --ink: #08102b;
  --paper: #f5f6fa;
  --white: #fff;
  --muted: #858da4;
  --line: rgba(255, 255, 255, .13)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: #07102f;
  color: white;
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

img {
  display: block;
  max-width: 100%
}

button,
input,
textarea,
select {
  font: inherit
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  z-index: 100;
  transform: translate(-50%, -50%)
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--red)
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .5)
}

.site-header {
  height: 96px;
  position: absolute;
  z-index: 40;
  left: 0;
  right: 0;
  top: 0;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(180deg, rgba(7, 16, 47, .35), transparent)
}

.brand img {
  width: 185px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .18))
}

.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center !important;
  padding: 15px;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
  height: 75px !important;
  width: 75px !important;
}

.whatsapp-btn:hover {
  background: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.footer-top .brand img {
  width: 205px
}

.desktop-nav {
  display: flex;
  gap: 34px;
  color: #dde3ff;
  font-size: 14px
}

.desktop-nav a {
  position: relative
}

.desktop-nav a:after {
  content: "";
  position: absolute;
  height: 2px;
  background: var(--red);
  left: 0;
  right: 100%;
  bottom: -8px;
  transition: .3s
}

.desktop-nav a:hover:after {
  right: 0
}

.pill {
  padding: 13px 19px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
  font-size: 14px
}

.pill span {
  color: #ff7398;
  margin-left: 15px
}

.menu-btn {
  display: none;
  background: none;
  border: 0
}

.menu-btn span {
  display: block;
  width: 27px;
  height: 1px;
  background: white;
  margin: 7px
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 150px 8vw 90px;
  overflow: hidden;
  background: linear-gradient(125deg, #07102f 0%, #101c67 58%, #15277f 100%)
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .19;
  background-image: linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent)
}

.red-orb,
.blue-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  animation: float 8s ease-in-out infinite
}

.red-orb {
  width: 470px;
  height: 470px;
  right: -160px;
  top: 12%;
  background: radial-gradient(circle at 35% 35%, rgba(242, 33, 85, .9), rgba(208, 0, 61, .19) 43%, transparent 70%)
}

.blue-orb {
  width: 290px;
  height: 290px;
  right: 28%;
  bottom: -120px;
  background: radial-gradient(circle, rgba(74, 96, 255, .5), transparent 67%);
  animation-delay: -3s
}

@keyframes float {
  50% {
    transform: translateY(-25px) translateX(12px) scale(1.04)
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1120px, 100%)
}

.eyebrow,
.section-kicker {
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 700;
  color: #aeb8dd
}

.eyebrow span {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--red);
  margin-right: 13px;
  vertical-align: middle
}

.hero h1,
.inner-hero h1,
.service-hero h1,
.intro h2,
.section-head h2,
.story h2,
.detail-lead h2,
.cta h2,
.service-banner h2 {
  font-family: Manrope, sans-serif;
  letter-spacing: -.055em;
  line-height: .94
}

.hero h1 {
  font-size: clamp(58px, 8.6vw, 132px);
  margin: 24px 0
}

.hero h1 em,
.inner-hero h1 em,
.cta h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: #ff416f
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  max-width: 970px;
  margin-top: 50px;
  gap: 40px
}

.hero-bottom p {
  max-width: 570px;
  color: #c6cdea;
  font-size: 17px;
  line-height: 1.75
}

.circle-cta {
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  transition: .35s;
  bottom: 50px;
}

.circle-cta b {
  position: absolute;
  bottom: 15px;
  color: #ff6b90
}

.circle-cta:hover {
  background: var(--red);
  border-color: var(--red)
}

.hero-badge {
  position: absolute;
  right: 7vw;
  bottom: 65px;
  width: 250px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .22);
  transform: rotate(-3deg)
}

.ticker {
  overflow: hidden;
  background: var(--red);
  padding: 13px 0;
  color: white;
  white-space: nowrap;
  font: 700 12px Manrope;
  letter-spacing: .13em
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite
}

.ticker span {
  padding-right: 30px
}

@keyframes ticker {
  to {
    transform: translateX(-50%)
  }
}

.section-pad {
  padding: 125px 8vw
}

.intro {
  background: var(--paper);
  color: var(--ink)
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 9vw;
  align-items: end;
  margin-top: 42px
}

.intro h2,
.section-head h2,
.story h2,
.detail-lead h2 {
  font-size: clamp(47px, 6.3vw, 95px);
  margin: 0
}

.intro h2 span,
.section-head h2 span,
.detail-lead h2 span {
  color: #7f89aa;
  font-weight: 400
}

.intro-copy p,
.section-head>p,
.story-copy p,
.detail-copy p {
  font-size: 17px;
  line-height: 1.8;
  color: #666f87
}

.text-link {
  display: inline-flex;
  gap: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid #8790a8;
  font-weight: 600
}

.text-link span {
  color: var(--red)
}

.services {
  background: #08102f
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 70px;
  margin-bottom: 60px
}

.section-head>p {
  max-width: 390px;
  color: #a6afcf
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px
}

.service-card {
  display: block;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  padding: 12px 12px 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
  transition: .4s;
  overflow: hidden
}

.service-card:hover {
  transform: translateY(-9px);
  border-color: rgba(255, 74, 118, .65)
}

.service-image {
  aspect-ratio: 1.35;
  overflow: hidden;
  border-radius: 15px;
  position: relative
}

.service-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 16, 47, .45))
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .65s
}

.service-card:hover img {
  transform: scale(1.06)
}

.service-meta {
  display: grid;
  grid-template-columns: 35px 1fr 25px;
  align-items: center;
  gap: 9px;
  margin: 20px 4px 10px
}

.service-meta span {
  font-size: 10px;
  color: #ff5a82
}

.service-meta h3 {
  font: 600 22px Manrope;
  margin: 0
}

.service-meta b {
  color: #ff5a82;
  font-size: 20px
}

.service-card p {
  color: #9ea8c8;
  line-height: 1.65;
  margin: 0 4px
}

.center-link {
  text-align: center;
  margin-top: 50px
}

.feature-split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  background: #f5f6fa;
  color: #0b1334
}

.feature-image {
  min-height: 640px
}

.feature-image img {
  height: 100%;
  width: 100%;
  object-fit: cover
}

.feature-copy {
  padding: 9vw 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.feature-copy h2 {
  font: 600 clamp(44px, 5vw, 76px)/.98 Manrope;
  letter-spacing: -.05em;
  margin: 25px 0
}

.feature-copy p {
  color: #68718a;
  line-height: 1.8;
  margin-bottom: 30px
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--red);
  padding-top: 70px;
  padding-bottom: 70px
}

.stat {
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, .25)
}

.stat:last-child {
  border: 0
}

.stat strong {
  font: 700 clamp(55px, 7vw, 100px) Manrope;
  display: block
}

.stat span {
  color: #ffd8e2
}

.cta {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #07102f
}

.cta h2 {
  font-size: clamp(58px, 8vw, 120px);
  margin: 20px 0 35px
}

.cta p {
  max-width: 650px;
  margin: 0 auto 35px;
  color: #a8b1d0;
  line-height: 1.8
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  padding: 19px 24px 19px 30px;
  background: var(--red);
  border: 0;
  border-radius: 999px;
  color: white;
  font-weight: 700;
  box-shadow: 0 15px 35px rgba(208, 0, 61, .22);
  cursor: pointer
}

.cta-button span {
  font-size: 22px
}

.cta-orb {
  position: absolute;
  width: 650px;
  height: 650px;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 49, 155, .55), transparent 68%)
}

.inner-hero {
  min-height: 78vh;
  padding: 180px 8vw 100px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #07102f, #14267e)
}

.inner-shape {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  right: -140px;
  top: 50px;
  background: radial-gradient(circle at 35% 35%, rgba(235, 0, 65, .8), rgba(208, 0, 61, .2) 42%, transparent 70%)
}

.inner-hero h1 {
  font-size: clamp(65px, 9vw, 140px);
  margin: 22px 0;
  position: relative;
  max-width: 1150px
}

.inner-hero>p {
  max-width: 650px;
  color: #c3cae8;
  line-height: 1.8;
  font-size: 18px;
  position: relative
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  background: #f5f6fa;
  color: #08102f;
  align-items: center
}

.story-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 650px
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.story-copy h2 {
  margin: 25px 0 35px
}

.process {
  background: #08102f
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 55px
}

.glass-card {
  min-height: 310px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  transition: .35s
}

.glass-card:hover {
  transform: translateY(-9px);
  border-color: #e21b53
}

.glass-card span,
.deliverable span {
  color: #ff5a82;
  font-size: 11px
}

.glass-card h3 {
  font: 600 29px Manrope;
  margin-top: 105px
}

.glass-card p {
  color: #a0a9c5;
  line-height: 1.7
}

.service-hero {
  min-height: 92vh;
  padding: 145px 6vw 75px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 5vw;
  align-items: center;
  background: #07102f
}

.service-hero h1 {
  font-size: clamp(55px, 7vw, 110px);
  margin: 25px 0
}

.service-hero-copy>p {
  font-size: 18px;
  line-height: 1.8;
  color: #aeb7d5;
  max-width: 620px;
  margin-bottom: 35px
}

.service-hero-image {
  height: 70vh;
  min-height: 550px;
  border-radius: 28px;
  overflow: hidden;
  position: relative
}

.service-hero-image:after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 28px
}

.service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.service-detail {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 10vw;
  background: #f5f6fa;
  color: #08102f
}

.detail-copy {
  padding-top: 55px
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #ccd0de;
  padding-top: 1px;
  padding-bottom: 1px
}

.deliverable {
  background: #08102f;
  padding: 55px 30px;
  min-height: 330px
}

.deliverable h3 {
  font: 600 26px Manrope;
  margin: 90px 0 15px
}

.deliverable p {
  color: #a6afca;
  line-height: 1.7
}

.service-banner {
  height: 75vh;
  min-height: 580px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 7vw
}

.service-banner:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 16, 47, .88), rgba(7, 16, 47, .15))
}

.service-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.service-banner>div {
  position: relative;
  z-index: 2
}

.service-banner h2 {
  font-size: clamp(55px, 7vw, 110px);
  margin: 20px 0
}

.contact-section {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 40px;
  background: #f5f6fa;
  color: #08102f
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.field.full {
  grid-column: 1/-1
}

.field label {
  font-size: 12px;
  font-weight: 700;
  color: #525c79
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bbc1d2;
  background: transparent;
  padding: 14px 0;
  outline: none;
  color: #08102f
}

.contact-form .cta-button {
  justify-self: start;
  margin-top: 15px
}

.form-success {
  display: none;
  grid-column: 1/-1;
  padding: 16px;
  background: #e5f4ea;
  border-radius: 10px;
  color: #1d6636
}

.form-success.show {
  display: block
}

.contact-card {
  background: #111f78;
  color: white;
  border-radius: 24px;
  padding: 35px
}

.contact-card small {
  color: #ff7c9d;
  letter-spacing: .18em
}

.contact-card>a {
  display: block;
  font: 600 25px Manrope;
  margin: 22px 0
}

.contact-card p {
  color: #c7cee8;
  line-height: 1.7
}

.contact-art {
  margin-top: 35px;
  border-radius: 16px;
  overflow: hidden
}

.contact-art img {
  aspect-ratio: 1.3;
  object-fit: cover
}

footer {
  padding: 75px 8vw 35px;
  background: #04091f;
  border-top: 1px solid rgba(255, 255, 255, .11)
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer-tag {
  color: #7d88aa;
  font-size: 12px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  padding: 50px 0
}

.footer-grid>div {
  display: flex;
  flex-direction: column;
  gap: 11px
}

.footer-grid small {
  color: #66729a;
  letter-spacing: .17em;
  margin-bottom: 10px
}

.footer-grid a {
  color: #c5cce4;
  font-size: 14px
}

.footer-grid p {
  color: #818baa;
  line-height: 1.65;
  margin: 0;
  font-size: 14px
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 12px;
  color: #687395
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #07102f;
  z-index: 80;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10vw;
  gap: 20px;
  transform: translateX(101%);
  transition: .5s
}

.mobile-menu.open {
  transform: none
}

.mobile-menu a {
  font: 600 clamp(38px, 10vw, 70px) Manrope
}

.close-menu {
  position: absolute;
  top: 25px;
  right: 6vw;
  background: none;
  border: 0;
  color: white;
  font-size: 45px
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: .8s cubic-bezier(.2, .7, .2, 1)
}

.reveal.in {
  opacity: 1;
  transform: none
}

@media(max-width: 1050px) {

  .desktop-nav,
  .site-header>.pill {
    display: none
  }

  .menu-btn {
    display: block
  }

  .hero-badge {
    display: none
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .process-cards,
  .deliverables {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .service-hero {
    grid-template-columns: 1fr;
    padding-top: 150px
  }

  .service-hero-image {
    height: 55vh
  }

  .story,
  .feature-split,
  .service-detail,
  .contact-section {
    grid-template-columns: 1fr
  }

  .feature-image {
    min-height: 500px
  }
}

@media(max-width: 700px) {

  .cursor-dot,
  .cursor-ring {
    display: none
  }

  .site-header {
    height: 80px;
    padding: 0 5vw
  }

  .brand img {
    width: 150px !important;
  }

  .footer-brand {
    padding: 6px 10px !important;
}

  .hero {
    min-height: 92vh;
    padding: 130px 6vw 75px
  }

  .hero h1 {
    font-size: clamp(54px, 15vw, 80px)
  }

  .hero-bottom {
    display: block
  }

  .circle-cta {
    margin-top: 30px;
    width: 90px;
    height: 90px
  }

  .section-pad {
    padding: 82px 6vw
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .service-grid {
    grid-template-columns: 1fr
  }

  .section-head {
    display: block
  }

  .section-head>p {
    margin-top: 25px
  }

  .stats {
    grid-template-columns: 1fr
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .25)
  }

  .process-cards,
  .deliverables {
    grid-template-columns: 1fr
  }

  .inner-hero {
    min-height: 70vh;
    padding: 150px 6vw 75px
  }

  .inner-hero h1 {
    font-size: clamp(58px, 15vw, 88px)
  }

  .story-image {
    min-height: 450px
  }

  .service-hero {
    padding: 130px 6vw 70px
  }

  .service-hero-image {
    min-height: 420px
  }

  .service-detail {
    gap: 30px
  }

  .deliverables {
    padding-left: 0;
    padding-right: 0
  }

  .service-banner {
    padding: 8vw 6vw
  }

  .contact-form {
    grid-template-columns: 1fr
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px
  }
}

/* ===== V3 PREMIUM EXPERIENCE UPGRADE ===== */
body.is-loading {
  overflow: hidden
}

.bootloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #f7f8fc;
  display: grid;
  place-items: center;
  transition: opacity .7s ease, visibility .7s ease
}

.bootloader.hide {
  opacity: 0;
  visibility: hidden
}

.bootloader-inner {
  width: min(420px, 78vw)
}

.loader-logo-wrap {
  position: relative;
  overflow: hidden;
  padding: 20px 6px
}

.loader-logo-wrap img {
  width: min(310px, 70vw);
  margin: auto;
  animation: loaderLogo 1.3s cubic-bezier(.2, .8, .2, 1) both
}

.loader-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 25%, rgba(208, 0, 61, .16) 45%, rgba(23, 39, 129, .13) 55%, transparent 72%);
  transform: translateX(-120%);
  animation: scan 1.35s .25s ease forwards
}

.loader-line {
  height: 2px;
  background: #dfe3ee;
  overflow: hidden;
  margin-top: 13px
}

.loader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--red));
  transform-origin: left;
  animation: loadLine 1.45s cubic-bezier(.5, 0, .2, 1) forwards
}

.loader-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 9px;
  letter-spacing: .2em;
  color: #6b748e
}

.loader-meta b {
  color: var(--red)
}

@keyframes loaderLogo {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(.95)
  }

  100% {
    opacity: 1;
    transform: none
  }
}

@keyframes scan {
  to {
    transform: translateX(120%)
  }
}

@keyframes loadLine {
  0% {
    transform: scaleX(0)
  }

  100% {
    transform: scaleX(1)
  }
}

.site-header {
  position: fixed;
  height: 95px;
  padding: 0 4.5vw;
  background: rgba(6, 13, 42, .74);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 8px 35px rgba(4, 8, 29, .10);
  transition: height .35s ease, background .35s ease, box-shadow .35s ease;
}

.site-header.scrolled {
  height: 80px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 40px rgba(8, 16, 47, .12)
}

.site-header .brand {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 15px 8px 11px;
  background: rgba(255, 255, 255, .98);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
  overflow: hidden;
}

.site-header .brand:after {
  content: "";
  position: absolute;
  inset: -50% auto -50% -35%;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .9), transparent);
  transform: skewX(-18deg);
  animation: logoShine 5s ease-in-out infinite
}

.site-header .brand img {
  width: 174px;
  animation: logoFloat 4s ease-in-out infinite;
  transform-origin: center
}

.site-header.scrolled .brand {
  box-shadow: 0 8px 25px rgba(23, 39, 129, .12);
  border: 1px solid rgba(23, 39, 129, .08)
}

.site-header.scrolled .desktop-nav {
  color: var(--navy)
}

.site-header.scrolled .pill {
  background: var(--navy);
  border-color: var(--navy);
  color: white
}

.site-header.scrolled .menu-btn span {
  background: var(--navy)
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-2px) scale(1.012)
  }
}

@keyframes logoShine {

  0%,
  68% {
    left: -45%
  }

  88%,
  100% {
    left: 130%
  }
}

.video-hero {
  min-height: 100svh;
  background: #07102f;
  padding-top: 160px
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.08)
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 11, 39, .96) 0%, rgba(7, 16, 47, .88) 38%, rgba(11, 21, 66, .52) 72%, rgba(11, 21, 66, .65) 100%), linear-gradient(180deg, rgba(2, 7, 25, .38), rgba(7, 16, 47, .52) 72%, rgba(7, 16, 47, .95));
}

.video-hero .hero-grid {
  opacity: .12
}

.video-hero .red-orb {
  opacity: .45;
  mix-blend-mode: screen
}

.video-hero .blue-orb {
  opacity: .55
}

.hero-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  max-width: 1020px
}

.hero-status {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #d9def4;
  display: flex;
  align-items: center;
  gap: 9px
}

.hero-status i {
  width: 7px;
  height: 7px;
  background: #45e59f;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(69, 229, 159, .10);
  animation: pulseStatus 1.8s infinite
}

@keyframes pulseStatus {
  50% {
    box-shadow: 0 0 0 11px rgba(69, 229, 159, 0)
  }
}

.video-hero .hero-content {
  width: min(1240px, 100%);
  z-index: 1;
}

.video-hero h1 {
  font-size: clamp(55px, 7.35vw, 112px);
  max-width: 1150px;
  line-height: .92;
  margin-top: 28px
}

.video-hero h1 em {
  display: inline-block;
  color: #ff3d70;
  text-shadow: 0 10px 38px rgba(208, 0, 61, .18)
}

.video-hero .hero-bottom {
  max-width: 1120px;
  margin-top: 40px
}

.hero-copy-block {
  max-width: 690px
}

.hero-actions {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 28px;
  flex-wrap: wrap
}

.primary-hero-btn,
.secondary-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 16px 20px 16px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px
}

.primary-hero-btn {
  background: var(--red);
  box-shadow: 0 18px 40px rgba(208, 0, 61, .28)
}

.secondary-hero-btn {
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px)
}

.primary-hero-btn span {
  font-size: 19px
}

.secondary-hero-btn span {
  color: #ff668b
}

.hero-proof {
  position: absolute;
  right: 4.5vw;
  bottom: 32px;
  z-index: 2;
  display: flex;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(5, 11, 38, .48);
  backdrop-filter: blur(18px);
  border-radius: 17px;
  overflow: hidden
}

.hero-proof>div {
  padding: 14px 18px;
  min-width: 135px;
  border-right: 1px solid rgba(255, 255, 255, .12)
}

.hero-proof>div:last-child {
  border: 0
}

.hero-proof strong {
  font: 700 21px Manrope;
  display: block
}

.hero-proof span {
  font-size: 10px;
  color: #aeb7d6
}

.service-card {
  box-shadow: 0 18px 50px rgba(3, 7, 27, .14)
}

.service-card:hover {
  box-shadow: 0 28px 70px rgba(3, 7, 27, .28)
}

.service-image:before {
  content: "VIEW SERVICE";
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  background: white;
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 9px 12px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(8px);
  transition: .35s
}

.service-card:hover .service-image:before {
  opacity: 1;
  transform: none
}

@media(max-width: 1000px) {
  .site-header {
    padding: 0 4vw;
    height: 82px
  }

  .hero-proof {
    right: 4vw
  }
}

@media(max-width: 700px) {
  .site-header {
    height: 74px;
    padding: 0 4vw
  }

  .site-header .brand {
    padding: 6px 10px
  }

  .site-header .brand img {
    width: 136px
  }

  .video-hero {
    padding: 122px 6vw 130px
  }

  .hero-topline {
    display: block
  }

  .hero-status {
    margin-top: 14px
  }

  .video-hero h1 {
    font-size: clamp(46px, 13.2vw, 69px);
    line-height: .96
  }

  .video-hero .hero-bottom {
    margin-top: 26px
  }

  .hero-copy-block p {
    font-size: 15px
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column
  }

  .primary-hero-btn,
  .secondary-hero-btn {
    justify-content: space-between;
    width: 100%
  }

  .video-hero .circle-cta {
    display: none
  }

  .hero-proof {
    left: 6vw;
    right: 6vw;
    bottom: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr)
  }

  .hero-proof>div {
    min-width: 0;
    padding: 11px 9px;
    text-align: center
  }

  .hero-proof strong {
    font-size: 17px
  }

  .hero-proof span {
    font-size: 8px
  }
}

@media(prefers-reduced-motion:reduce) {

  .loader-logo-wrap img,
  .loader-scan,
  .loader-line span,
  .site-header .brand img,
  .site-header .brand:after,
  .hero-status i {
    animation: none !important
  }

  .hero-video {
    display: none
  }
}

/* ===== V4 PACKAGE + MOTION UPGRADE ===== */
.packages {
  position: relative;
  background: #f4f6fb;
  color: var(--ink);
  overflow: hidden
}

.packages:before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  right: -260px;
  top: -260px;
  background: radial-gradient(circle, rgba(208, 0, 61, .10), transparent 67%);
  pointer-events: none
}

.packages-head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 9vw;
  align-items: end;
  margin-bottom: 58px
}

.packages-head h2 {
  font: 600 clamp(48px, 6.4vw, 96px)/.94 Manrope;
  letter-spacing: -.055em;
  margin: 23px 0 0
}

.packages-head h2 span {
  color: #7d87a6;
  font-weight: 400
}

.packages-head>p {
  font-size: 17px;
  line-height: 1.8;
  color: #68718a
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch
}

.package-card {
  position: relative;
  min-height: 650px;
  padding: 30px;
  border: 1px solid #dce0eb;
  border-radius: 25px;
  background: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(19, 29, 72, .07);
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s, border-color .45s
}

.package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 90px rgba(19, 29, 72, .15);
  border-color: rgba(208, 0, 61, .34)
}

.package-card-featured {
  background: linear-gradient(145deg, #101f76, #07102f);
  color: white;
  border-color: rgba(255, 255, 255, .1);
  transform: translateY(-12px)
}

.package-card-featured:hover {
  transform: translateY(-22px)
}

.package-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: -130px;
  top: -130px;
  background: radial-gradient(circle, rgba(208, 0, 61, .26), transparent 67%);
  transition: transform .65s ease
}

.package-card:hover .package-glow {
  transform: scale(1.35) translate(-15px, 15px)
}

.package-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.package-index {
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--red)
}

.package-card-featured .package-index {
  color: #ff7296
}

.package-chip {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 800;
  padding: 8px 11px;
  border-radius: 999px;
  background: #eef1f8;
  color: var(--navy)
}

.package-card-featured .package-chip {
  background: rgba(255, 255, 255, .11);
  color: #fff
}

.package-card h3 {
  position: relative;
  font: 600 32px/1.06 Manrope;
  letter-spacing: -.035em;
  margin: 38px 0 18px;
  max-width: 340px
}

.package-desc {
  position: relative;
  line-height: 1.72;
  color: #69728b;
  margin: 0 0 24px
}

.package-card-featured .package-desc {
  color: #bac3e1
}

.package-card ul {
  position: relative;
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px solid #e4e7ef
}

.package-card-featured ul {
  border-color: rgba(255, 255, 255, .12)
}

.package-card li {
  position: relative;
  padding: 13px 0 13px 23px;
  border-bottom: 1px solid #e8eaf1;
  color: #4f5871;
  font-size: 13px
}

.package-card-featured li {
  border-color: rgba(255, 255, 255, .1);
  color: #d5daf0
}

.package-card li:before {
  content: "";
  position: absolute;
  left: 1px;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(208, 0, 61, .09)
}

.package-price {
  position: relative;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.package-price small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #8b93a8
}

.package-price strong {
  font: 700 31px Manrope;
  color: var(--navy);
  letter-spacing: -.035em
}

.package-card-featured .package-price strong {
  color: white
}

.package-time {
  font-size: 12px;
  color: #828ba3;
  margin: 8px 0 22px
}

.package-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 17px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700
}

.package-btn span {
  font-size: 18px;
  color: #ff7296
}

.package-card-featured .package-btn {
  background: var(--red)
}

.package-card-featured .package-btn span {
  color: white
}

.package-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 30px;
  max-width: 740px;
  color: #7d859a;
  font-size: 12px
}

.package-note span {
  color: var(--red);
  font-size: 20px
}

.package-note p {
  margin: 0;
  line-height: 1.7
}

.motion-statement {
  height: 78vh;
  min-height: 640px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #07102f, #111f78)
}

.motion-statement:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 55%, rgba(208, 0, 61, .22), transparent 28%)
}

.motion-statement-inner {
  position: relative;
  z-index: 3
}

.motion-statement-inner>span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: #abb4d5
}

.motion-statement h2 {
  font: 600 clamp(53px, 7.3vw, 110px)/.94 Manrope;
  letter-spacing: -.055em;
  margin: 25px 0 38px
}

.motion-statement h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: #ff416f
}

.light-link {
  color: white;
  border-color: rgba(255, 255, 255, .4)
}

.motion-word {
  position: absolute;
  font: 800 clamp(130px, 22vw, 340px)/1 Manrope;
  letter-spacing: -.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .055);
  white-space: nowrap;
  pointer-events: none;
  will-change: transform
}

.motion-word-a {
  top: -6%;
  left: -12%
}

.motion-word-b {
  bottom: -12%;
  right: -18%;
  -webkit-text-stroke-color: rgba(255, 65, 111, .07)
}

/* More engaging micro-interactions */
.section-kicker {
  position: relative;
  display: inline-block
}

.section-kicker:after {
  content: "";
  display: inline-block;
  width: 35px;
  height: 1px;
  background: var(--red);
  vertical-align: middle;
  margin-left: 13px;
  transform-origin: left;
  animation: kickerPulse 3.8s ease-in-out infinite
}

@keyframes kickerPulse {

  0%,
  100% {
    transform: scaleX(.35);
    opacity: .45
  }

  50% {
    transform: scaleX(1);
    opacity: 1
  }
}

.service-card:nth-child(3n+2) {
  transition-delay: .04s
}

.service-card:nth-child(3n+3) {
  transition-delay: .08s
}

.service-meta b,
.package-btn span,
.cta-button span,
.text-link span {
  transition: transform .3s ease
}

.service-card:hover .service-meta b,
.package-btn:hover span,
.cta-button:hover span,
.text-link:hover span {
  transform: translate(4px, -4px)
}

.service-image img,
.story-image img,
.feature-image img,
.service-hero-image img,
.service-banner img {
  will-change: transform
}

.reveal-left {
  opacity: 0;
  transform: translateX(-45px);
  transition: .9s cubic-bezier(.2, .75, .2, 1)
}

.reveal-right {
  opacity: 0;
  transform: translateX(45px);
  transition: .9s cubic-bezier(.2, .75, .2, 1)
}

.reveal-left.in,
.reveal-right.in {
  opacity: 1;
  transform: none
}

.char-rise {
  display: inline-block;
  opacity: 0;
  transform: translateY(.7em) rotate(2deg);
  animation: charRise .72s cubic-bezier(.2, .8, .2, 1) forwards
}

@keyframes charRise {
  to {
    opacity: 1;
    transform: none
  }
}

.parallax-media {
  overflow: hidden
}

.parallax-media img {
  transform: scale(1.08);
  transition: transform .15s linear
}

@media(max-width: 1000px) {
  .package-grid {
    grid-template-columns: 1fr 1fr
  }

  .package-card-featured {
    transform: none
  }

  .package-card-featured:hover {
    transform: translateY(-10px)
  }
}

@media(max-width: 700px) {
  .packages-head {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .package-grid {
    grid-template-columns: 1fr
  }

  .package-card {
    min-height: 0
  }

  .motion-statement {
    min-height: 570px;
    height: 70vh
  }

  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    padding: 10px;
    height: 60px !important;
    width: 60px !important;
}
}

/* ===== V5 PREMIUM FOOTER ===== */
.premium-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: radial-gradient(circle at 15% 25%, rgba(208, 0, 61, .09), transparent 24%), radial-gradient(circle at 88% 65%, rgba(49, 69, 185, .13), transparent 28%), #030719;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none
}

.footer-glow-red {
  width: 520px;
  height: 520px;
  left: -300px;
  top: 80px;
  background: radial-gradient(circle, rgba(208, 0, 61, .18), transparent 68%)
}

.footer-glow-blue {
  width: 650px;
  height: 650px;
  right: -360px;
  bottom: 120px;
  background: radial-gradient(circle, rgba(33, 54, 165, .19), transparent 70%)
}

.footer-cta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin: 0 6vw;
  padding: 95px 2vw 80px;
  border-bottom: 1px solid rgba(255, 255, 255, .11)
}

.footer-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .21em;
  color: #9aa5c8
}

.footer-cta h2 {
  font: 600 clamp(52px, 7vw, 106px)/.94 Manrope;
  letter-spacing: -.055em;
  margin: 22px 0 0
}

.footer-cta h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: #ff416f
}

.footer-circle {
  flex: 0 0 auto;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(12px);
  transition: .4s
}

.footer-circle span {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700
}

.footer-circle b {
  position: absolute;
  right: 27px;
  top: 25px;
  color: #ff557e;
  font-size: 21px;
  transition: .3s
}

.footer-circle:hover {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(-5deg) scale(1.04)
}

.footer-circle:hover b {
  color: white;
  transform: translate(4px, -4px)
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin: 0 6vw;
  padding: 65px 2vw;
  border-bottom: 1px solid rgba(255, 255, 255, .11)
}

.trust-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px
}

.trust-copy p {
  max-width: 540px;
  color: #8e99bb;
  line-height: 1.65;
  font-size: 13px;
  margin: 0
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px
}

.trust-logo {
  min-height: 88px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, .095);
  border-radius: 15px;
  background: rgba(255, 255, 255, .035);
  display: flex;
  align-items: center;
  gap: 13px;
  transition: transform .35s, border-color .35s, background .35s;
  position: relative;
  overflow: hidden
}

.trust-logo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .07) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: .6s
}

.trust-logo:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 65, 111, .35);
  background: rgba(255, 255, 255, .06)
}

.trust-logo:hover:after {
  transform: translateX(130%)
}

.trust-logo-copy {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.trust-logo-copy strong {
  font: 700 14px Manrope
}

.trust-logo-copy small {
  font-size: 9px;
  color: #7783a8;
  letter-spacing: .04em
}

.tp-star,
.google-g,
.clutch-mark,
.wp-mark,
.shopify-mark,
.meta-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font: 800 20px Manrope;
  background: white;
  color: #111
}

.tp-star {
  background: #00b67a;
  color: white
}

.google-g {
  color: #4285f4
}

.clutch-mark {
  background: #ef3f37;
  color: white;
  border-radius: 50%
}

.bark-mark {
  font: 800 18px Manrope;
  color: #00bda5;
  min-width: 42px
}

.wp-mark {
  border-radius: 50%;
  font-family: Georgia, serif;
  color: #21759b
}

.shopify-mark {
  background: #95bf47;
  color: white
}

.stripe-mark {
  font: 800 18px Manrope;
  color: #635bff;
  min-width: 43px
}

.meta-mark {
  color: #1877f2;
  font-size: 29px
}

.platform-disclaimer {
  font-size: 9px;
  color: #5e698d;
  line-height: 1.6;
  margin: 22px 0 0;
  max-width: 900px
}

.footer-main {
  position: relative;
  z-index: 2;
  margin: 0 6vw;
  padding: 65px 2vw;
  display: grid;
  grid-template-columns: 2.2fr repeat(3, 1fr);
  gap: 55px
}

.footer-brand-panel .footer-brand {
  display: inline-flex;
  background: white;
  border-radius: 15px;
  padding: 10px 15px;
  margin-bottom: 24px
}

.footer-brand-panel .footer-brand img {
  width: 205px;
  animation: footerLogoFloat 4.2s ease-in-out infinite
}

@keyframes footerLogoFloat {
  50% {
    transform: translateY(-3px)
  }
}

.footer-brand-panel>p {
  max-width: 420px;
  color: #8994b7;
  line-height: 1.75;
  font-size: 14px
}

.footer-contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 25px
}

.footer-contact-pills a {
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .11);
  color: #d2d8ef;
  font-size: 11px;
  transition: .3s
}

.footer-contact-pills a:hover {
  border-color: var(--red);
  background: rgba(208, 0, 61, .08);
  transform: translateY(-2px)
}

.footer-contact-pills span {
  color: #ff668b;
  margin-right: 6px
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-nav-col small {
  font-size: 9px;
  letter-spacing: .18em;
  color: #69759d;
  margin-bottom: 9px
}

.footer-nav-col a {
  font-size: 13px;
  color: #bcc5e0;
  transition: .25s
}

.footer-nav-col a:hover {
  color: white;
  transform: translateX(4px)
}

.footer-nav-col p {
  font-size: 12px;
  color: #7e89aa;
  line-height: 1.7;
  margin: 0 0 5px
}

.footer-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 11px 0;
  background: rgba(255, 255, 255, .018)
}

.footer-marquee-track {
  display: flex;
  width: max-content;
  animation: footerTicker 32s linear infinite
}

.footer-marquee span {
  white-space: nowrap;
  padding-right: 35px;
  font: 700 9px Manrope;
  letter-spacing: .18em;
  color: #58658d
}

@keyframes footerTicker {
  to {
    transform: translateX(-50%)
  }
}

.premium-footer-bottom {
  position: relative;
  z-index: 2;
  margin: 0 6vw;
  padding: 26px 2vw 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 0;
  color: #5f6b92;
  font-size: 10px
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px
}

.footer-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #42dc9a;
  box-shadow: 0 0 0 5px rgba(66, 220, 154, .08);
  animation: footerPulse 2s infinite
}

@keyframes footerPulse {
  50% {
    box-shadow: 0 0 0 10px rgba(66, 220, 154, 0)
  }
}

@media(max-width: 1000px) {
  .trust-logos {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-main {
    grid-template-columns: 1.7fr 1fr 1fr
  }

  .footer-main .footer-nav-col:last-child {
    grid-column: 2/4
  }
}

@media(max-width: 700px) {
  .footer-cta {
    padding: 70px 0 55px;
    align-items: flex-start;
    flex-direction: column
  }

  .footer-circle {
    width: 115px;
    height: 115px
  }

  .trust-strip {
    padding: 50px 0
  }

  .trust-copy {
    display: block
  }

  .trust-copy p {
    margin-top: 15px
  }

  .trust-logos {
    grid-template-columns: 1fr
  }

  .trust-logo {
    min-height: 76px
  }

  .footer-main {
    padding: 50px 0;
    grid-template-columns: 1fr;
    gap: 38px
  }

  .footer-main .footer-nav-col:last-child {
    grid-column: auto
  }

  .premium-footer-bottom {
    padding-left: 0;
    padding-right: 0;
    align-items: flex-start;
    flex-direction: column
  }
}