/*========== Root ==========*/
:root {
  --accent-blue: #0066ff;
  --blue-light: #3388ff;
  --dark-blue: #0041aa;

  --dark: #1a1a1a;
  --gray: #666;
  --white: #ffffff;
  --black: #000000;

  --bg: #111827;
  --bg-page: #F8FAFC;
  --bg-dark-blue: #0b0f1a;
  --banner-color-p: #94a3b8;

  --transition: 0.3s;
  --transition2: 0.5s ease;

  --section-padding-mobile: 40px;
  --section-padding-tablet: 60px;
  --section-padding-desktop: 80px;
  --section-padding-tv: 120px;

  --radius: 20px;

  --font-base: "Inter", sans-serif;
  --font-alt: "Roboto", sans-serif;

  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(6px);

  --border: #e5e7eb;
  --border-hover: rgba(255, 255, 255, 0.18);
  --icon-color: #A4A7AD;

  --shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  --shadow-app: 0 4px 10px rgba(0, 0, 0, 0.1);

  --icon-radius: 14px;

}

/*========== Reset ==========*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  list-style: none;
}

body {
  background: var(--bg-page);
  color: var(--dark);
  line-height: 1.6;
  font-family: var(--font-base);
}

h1,
h2,
h3 {
  font-family: var(--font-base);
  font-weight: 700;
}

p,
input,
button {
  font-family: var(--font-alt);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/*========== Reused ==========*/
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

section {
  padding-block: var(--section-padding-desktop);
}

.step-card,
.trust-card,
.top .box {
  will-change: transform;
}

.step-card:active,
.trust-card:active,
.top .box:active {
  transform: scale(0.97);
}

.btn {
  position: relative;
  padding: 14px 26px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: .35s ease;
  border: none;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, .35),
      transparent);
  transform: translateX(-120%);
}

.btn:hover::after {
  animation: shineBtn 1.1s ease;
}

@keyframes shineBtn {
  to {
    transform: translateX(120%);
  }
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent-blue), #556cff);
  color: var(--white);
  border: 1px solid var(--accent-blue);
  border-radius: var(--radius);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
}

.btn1 {
  border: 1px solid var(--white);
  color: var(--white);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
}

.btn1:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px) scale(1.03);
}

.typing {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--accent-blue);
  animation: typing 3s steps(30, end), blink .7s infinite;
}

@keyframes typing {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}


/*========== Mobile==========*/
@media (max-width: 480px) {
  section {
    padding-block: var(--section-padding-mobile);
  }
}

/*========== Tablet==========*/
@media (min-width: 481px) and (max-width: 900px) {
  section {
    padding-block: var(--section-padding-tablet);
  }
}

/*========== Desktop ==========*/
@media (min-width: 901px) and (max-width: 1600px) {
  section {
    padding-block: var(--section-padding-desktop);
  }
}

/*========== TV==========*/
@media (min-width: 1601px) {
  section {
    padding-block: var(--section-padding-tv);
  }
}

/*========== Scrollbar ==========*/
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-gradient);
}

::-webkit-scrollbar-thumb {
  background-color: var(--accent-blue);
}

/*========== Responsive Downloads ==========*/
@media (max-width: 768px) {
  .no-scrollbar {
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }
}

/*========== Loading ==========*/
#loading {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#loading .logo {
  width: 260px;
  margin-bottom: 40px;
}

.spinner {
  width: 35px;
  height: 35px;
  border: 4px solid var(--gray);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*========== Header ==========*/
.header {
  padding: 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  animation: fadeDown 0.6s ease forwards;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo img {
  width: 100px;
  height: auto;
  filter: brightness(1) contrast(1.1);
  transition: 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.logo-mobile {
  display: none;
}

/*========== Mobile Header - APP ==========*/
@media (max-width: 768px) {
  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: inline-block;
  }

}

/*========== Mobile ==========*/
@media (max-width: 480px) {
  header.container {
    padding: 12px 20px;
  }

  .logo img {
    width: 80px;
  }
}

/*========== Tablets ==========*/
@media (min-width: 481px) and (max-width: 900px) {
  .logo img {
    width: 90px;
  }
}

/*========== Desktop ==========*/
@media (min-width: 901px) and (max-width: 1600px) {
  .logo img {
    width: 110px;
  }
}

/*========== TV ==========*/
@media (min-width: 1601px) {
  header.container {
    padding: 25px 40px;
  }

  .logo img {
    width: 150px;
  }
}

/*========== Hero ==========*/
.hero {
  padding-top: 1rem;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 280px;
  animation: depth-slow 6s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
  transform-style: preserve-3d;
  will-change: transform;
}

@keyframes depth-slow {
  0% {
    transform: perspective(800px) translateZ(-20px) scale(0.98);
    opacity: 0.85;
  }

  50% {
    transform: perspective(800px) translateZ(6px) scale(1);
    opacity: 1;
  }

  100% {
    transform: perspective(800px) translateZ(-20px) scale(0.98);
    opacity: 0.85;
  }
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--dark-blue), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text h1 strong {
  color: var(--accent-blue);
  -webkit-text-fill-color: var(--accent-blue);
}

.hero-text p {
  font-weight: 500;
  margin-bottom: 25px;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.hero-text h1,
.hero-text p {
  opacity: 0;
  transform: translateY(25px);
  animation: textReveal 0.9s ease forwards;
}

.hero-text p {
  animation-delay: 0.25s;
}

.hero-text p strong {
  color: var(--accent-blue);
}

@keyframes textReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-img {
  flex: 1;
  background: url(../images/bg.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  min-width: 280px;
}

.hero-img img {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: contrast(1.2) drop-shadow(0 30px 40px rgba(0,0,0,0.25));
}

/*========== Mobile Hero - APP ==========*/
@media (max-width: 768px) {
  .hero {
    display: flex;
    align-items: center;
    padding: 0;
  }

  .hero .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 18px 32px;
  }

  .hero-text {
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    margin-bottom: 28px;
    animation: none;
    background: var(--white);
    border: 1px solid var(--border-hover);
    box-shadow: var(--shadow-app);
  }

  .hero-text h1 {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 14px;
    line-height: 1.2;
    margin-bottom: 20px;
    background: none;
    -webkit-background-clip: none;
    -webkit-text-fill-color: var(--accent-blue);
  }

  .hero-text h1 strong {
    font-weight: 700;
  }

  .hero-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
  }

  .hero-img {
    display: flex;
    justify-content: center;
  }

  .hero-img img {
    width: 100%;
    max-width: 320px;
    border-radius: 26px;
  }

}

/*========== Tablet ==========*/
@media (min-width: 481px) and (max-width: 900px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-img img {
    max-width: 380px;
  }
}

/*========== Desktop ==========*/
@media (min-width: 901px) and (max-width: 1600px) {
  .hero-img img {
    max-width: 500px;
  }
}

/*========== TV ==========*/
@media (min-width: 1601px) {
  .hero {
    padding: 90px 0 120px;
  }

  .hero-text h1 {
    font-size: 4rem;
  }

  .hero-img img {
    max-width: 650px;
  }
}


/*========== Top ==========*/
.top-title {
  text-align: center;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.top-subtitle {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
  opacity: 0.85;
}

.top-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.top .box {
  position: relative;
  border: 1px solid var(--border);
  background: var(--gradient);
  padding: 32px 28px;
  border-radius: var(--radius);
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-app);
}

.top .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      var(--accent-blue),
      transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.top .box:hover::before {
  opacity: 1;
}

.top-box-icon {
  position: absolute;
  top: -20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .5rem;
  display: block;
  margin-bottom: 18px;
  background: var(--dark-blue);
  padding: 6px 12px;
  border-radius: var(--icon-radius);
}

.top-box-icon svg {
  width: 50px;
  fill: var(--white);
}

.top-box-icon h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.top .box .box-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.top .box .box-text p {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.85;
}

/*========== Mobile Top - APP ==========*/
@media (max-width: 768px) {
  .top-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .top-title {
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.3;
    color: var(--dark);
  }

  .top-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.6;
    max-width: 520px;
    margin: auto;
  }

  .top-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
  }

  .top-container .box {
    background: var(--white);
    border-radius: 22px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid var(--border-hover);
    box-shadow: var(--shadow-app);
    animation: fadeUp 0.8s ease;
  }

  .top-box-icon {
    top: 0;
    right: 5px;
    padding: 0;
    background: transparent;
  }

  .top-box-icon svg {
    fill: var(--dark-blue);
  }

  .top-container .box img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .box-text h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--dark-blue);
  }

  .box-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark);
  }
}

/*========== Tablet ==========*/
@media (min-width: 481px) and (max-width: 900px) {
  .top .box {
    padding: 30px;
  }
}

/*========== Desktop ==========*/
@media (min-width: 901px) and (max-width: 1600px) {
  .top .box {
    padding: 35px 28px;
  }
}


/*========== Total Format ==========*/
.total-format {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 40px;
  max-width: 1300px;
  margin: 50px auto;
  border-radius: var(--radius);
  background-color: var(--dark-blue);
  background-image: url(../images/woman.png);
  background-repeat: no-repeat;
  background-position-x: 110%;
  background-size: 40%;
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-app);
  filter: contrast(1.2);
  overflow: hidden;
  animation: fadeInBanner 0.8s ease forwards;
}

.total-format::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.06),
      transparent);
  transform: translateX(-200%);
  animation: shineBanner 5s infinite linear;
}

.total-format::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      var(--white),
      transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: shineBanner 5s infinite linear;
}

.total-format:hover::after {
  opacity: 1;
}

@keyframes shineBanner {
  0% {
    transform: translateX(-200%);
  }

  100% {
    transform: translateX(200%);
  }
}

@keyframes fadeInBanner {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.total-format-content {
  flex: 1;
  max-width: 520px;
  z-index: 2;
}

.total-format-content h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
  background: var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(120, 150, 255, 0.55);
  animation: glowTitle 4s ease-in-out infinite alternate;
}

@keyframes glowTitle {
  from {
    text-shadow: 0 0 12px rgba(120, 150, 255, 0.4);
  }

  to {
    text-shadow: 0 0 22px rgba(120, 150, 255, 0.9);
  }
}

.total-format-content p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 30px;
  opacity: 0.92;
}

.total-format-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.total-format-image {
  flex: 1;
  display: flex;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.total-format-image::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle,
      rgba(60, 120, 255, 0.28),
      transparent 70%);
  filter: blur(60px);
  animation: pulseGlow 5s infinite ease-in-out alternate;
}

@keyframes pulseGlow {
  from {
    opacity: 0.4;
    transform: scale(1);
  }

  to {
    opacity: 1;
    transform: scale(1.25);
  }
}

.total-format-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;

}

.total-format-icons svg {
  transition: .35s ease;
  animation: floatIcon 3s ease-in-out infinite;
  opacity: .9;
}

.total-format-icons svg:hover {
  transform: scale(1.18);
  opacity: 1;
}

@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(0);
  }
}

.total-format-icons svg:nth-child(1) {
  animation-delay: 0s;
}

.total-format-icons svg:nth-child(2) {
  animation-delay: .4s;
}

.total-format-icons svg:nth-child(3) {
  animation-delay: .8s;
}

.total-format-icons svg:nth-child(4) {
  animation-delay: 1.2s;
}

/*========== Media Query ==========*/
@media (max-width: 768px) {
  .total-format {
    margin: 0 20px;
    background-image: none;
    box-shadow: var(--shadow-app);
  }
}

/*========== Mobile ==========*/
@media (max-width: 600px) {
  .total-format {
    flex-direction: column;
    gap: 30px;
    padding: 24px 20px;
    margin: 60px 16px;
  }

  .total-format-content {
    max-width: 100%;
    text-align: center;
  }

  .total-format-content h1 {
    font-size: 2.1rem;
  }

  .total-format-content p {
    font-size: 1rem;
  }

  .total-format-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .total-format-image::before {
    width: 180px;
    height: 180px;
  }

  .total-format-icons {
    gap: 22px;
  }

  .total-format-icons svg {
    width: 56px;
    height: 56px;
  }
}

/*========== Tablet ==========*/
@media (min-width: 601px) and (max-width: 1024px) {
  .total-format {
    padding: 40px 30px;
    gap: 40px;
    margin: 0 20px;
  }

}

/*========== Desktop ==========*/
@media (min-width: 1025px) {
  .total-format {
    flex-direction: row;
    padding: 50px;
  }
}

/*========== TV ==========*/
@media (min-width: 1600px) {
  .total-format {
    max-width: 1600px;
    padding: 70px;
    background-size: 35%;
  }

  .total-format-content h1 {
    font-size: 3.5rem;
  }

  .total-format-content p {
    font-size: 1.3rem;
  }

  .total-format-icons svg {
    width: 100px;
    height: 100px;
  }
}

/*========== Total Format - Modal ==========*/
.total-format-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.total-format {
  margin-bottom: 15rem;
}

#modalPlanoFormat .total-format-modal-box,
#contatoModal .total-format-modal-box {
  position: relative;
  width: 90%;
  max-width: 400px;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius);
  backdrop-filter: blur(5px);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border-hover);
  animation: scaleIn .35s ease;
  transition: var(--transition);
}

#total-format-faq {
  width: 100%;
  padding: 0;
  margin-bottom: 1rem;
}

#modalPlanoFormat .total-format-faq-item {
  text-align: left;
  margin-bottom: 20px;
}

#modalPlanoFormat .total-format-faq-item h3 {
  color: var(--accent-blue);
}

#modalPlanoFormat.total-format-faq-item p {
  line-height: 1.4rem;
}

.total-format-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.modalPlano {
  position: absolute;
  top: 0;
  right: 10px;
  background: transparent;
  font-size: 2rem;
  color: var(--banner-color-p);
  cursor: pointer;
}

/*========== How ==========*/
.how-it-works {
  margin-top: -200px;
}

.how-text {
  text-align: center;
  margin-bottom: 3rem;
}

.how-title {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.how-subtitle {
  line-height: 1.6;
  opacity: 0.85;
}

.how-grid {
  padding: 20px 0;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid var(--border);
  background: var(--gradient);
  padding: 10px;
  text-align: center;
  border-radius: var(--radius);
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow-app);
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      var(--accent-blue),
      transparent);
  opacity: 0;
  transition: var(--transition);
}

.step:hover::before {
  opacity: 1;
}

.step .icon svg {
  width: 50px;
  fill: var(--dark-blue);
}

.step p {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

/*========== Mobile How - APP ==========*/
@media (max-width: 768px) {
  .how-text {
    text-align: center;
    margin-bottom: 30px;
  }

  .how-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--dark);
  }

  .how-subtitle {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.6;
    max-width: 520px;
    margin: auto;
  }

  .how-grid {
    display: flex;
    justify-content: center;
  }

  .steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .step {
    position: relative;
    background: var(--white);
    border-radius: 22px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--border-hover);
    box-shadow: var(--shadow-app);
  }

  .step .icon img {
    width: 26px;
    height: 26px;
  }

  .step p {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.4;
    margin: 0;
  }
}

/*========== Mobile ==========*/
@media (max-width: 480px) {
  .how-it-works {
    margin: -225px auto 50px;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .how-text {
    max-width: 100%;
    margin: 0 auto;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .step {
    padding: 35px 25px;
  }

  .step-number {
    top: 14px;
    right: 18px;
  }
}

/*========== Tablet ==========*/
@media (min-width: 481px) and (max-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .how-text {
    max-width: 520px;
    margin: 0 auto;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .step {
    padding: 40px 30px;
  }
}

/*========== Desktop ==========*/
@media (min-width: 901px) and (max-width: 1600px) {
  .steps {
    gap: 40px;
  }
}

/* ========= Steps ========= */
.steps-section {
  padding: 20px;
}

.steps-wrapper {
  max-width: 1200px;
  margin: auto;
}

.steps-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
}

.steps-header h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: 16px;
}

.steps-header p {
  opacity: 0.8;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  position: relative;
  padding: 42px 34px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transform: translateY(-6px);
  border-color: var(--border);
  background: var(--gradient);
  box-shadow: var(--shadow-app);
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      var(--accent-blue),
      transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  position: absolute;
  top: -20px;
  right: 20px;
  display: block;
  margin-bottom: 18px;
  background: var(--dark-blue);
  padding: 6px 12px;
  border-radius: var(--icon-radius);
}

.step-number span {
  display: none;
}

.step-number svg {
  width: 50px;
  fill: var(--white);
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.step-card p {
  font-size: .98rem;
  opacity: .85;
}

/*========== Mobile Steps - APP ==========*/
@media (max-width: 768px) {
  .steps-section {
    margin: -70px auto 50px;
  }

  .steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .steps-header {
    text-align: center;
  }

  .steps-header h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--dark);
  }

  .steps-header p {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.6;
    max-width: 520px;
    margin: auto;
  }

  .steps-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .step-card {
    background: var(--white);
    border-radius: 22px;
    padding: 26px 22px;
    border: 1px solid var(--border-hover);
    box-shadow: var(--shadow-app);
    position: relative;
    animation: fadeUp 0.8s ease;
  }

  .step-number {
    position: absolute;
    top: -14px;
    left: 22px;
    background: linear-gradient(135deg, #0066ff, #3388ff);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 14px;
  }

  .step-number svg {
    display: none;
  }

  .step-number span {
    display: inline-block;
  }

  .step-card h3 {
    margin-top: 14px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--dark);
  }

  .step-card p {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.5;
  }
}

/* ========= Mobile ========= */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-header {
    margin-bottom: 60px;
  }
}

/* ========= Mosaic ========= */
.mosaic-wrapper {
  max-width: 1200px;
  margin: auto;
}

.mosaic-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 28px;
}

.trust-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transform: translateY(-6px);
  border-color: var(--border);
  background: var(--gradient);
  box-shadow: var(--shadow-app);
}

.trust-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      var(--accent-blue),
      transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trust-card:hover::before {
  opacity: 1;
}

.trust-card-box-top {
  position: absolute;
  top: -20px;
  right: 20px;
  display: block;
  margin-bottom: 18px;
  background: var(--dark-blue);
  padding: 6px 12px;
  border-radius: var(--icon-radius);
}

.trust-icon svg {
  width: 50px;
  fill: var(--white);
}

.trust-card h3 {
  margin-bottom: -10px;
}

/*========== Mobile Mosaic - APP ==========*/
@media (max-width: 768px) {
  .mosaic-conversion {
    margin-top: -3rem;
    padding: 50px 18px 20px;
  }

  .mosaic-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .mosaic-conversion .steps-header {
    text-align: center;
  }

  .mosaic-conversion h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--dark);
  }

  .mosaic-conversion p {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.6;
    max-width: 520px;
    margin: auto;
  }

  .mosaic-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .trust-card {
    background: var(--white);
    border-radius: 22px;
    padding: 24px 22px;
    border: 1px solid var(--border-hover);
    box-shadow: var(--shadow-app);
    animation: fadeUp 0.8s ease;
  }

  .trust-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark);
  }

  .trust-card p {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.5;
  }

  .trust-card strong {
    color: var(--accent-blue);
    font-size: 1.2rem;
  }
}

@media (min-width: 481px) and (max-width: 900px) {
  .mosaic-conversion {
    margin: 0 20px;
  }
}


/* ========= BLOG HIGHLIGHTS ========= */
.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-header p {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--gray);
  opacity: 0.9;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.blog-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--gradient);
  box-shadow: var(--shadow-app);
  transform: translateY(-6px);
  transition: var(--transition2);
}

.blog-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow);
}

.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: contrast(1.2);
}

.blog-content {
  padding: 26px 24px 28px;
}

.blog-content h3 {
  margin-bottom: 10px;
  color: var(--dark-blue);
  transition: var(--transition);
}

.blog-content h3 a:hover {
  color: var(--accent-blue);
}

.blog-content p {
  line-height: 1.55;
  color: var(--gray);
}

.blog-cta {
  text-align: center;
  margin-top: 60px;
}

/* ========= Mobile ========= */
@media (max-width: 768px) {

  .blog-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .blog-card {
    background: var(--white);
    border: 1px solid var(--border-hover);
    box-shadow: var(--shadow-app);
    animation: fadeUp .8s ease;
  }

  .blog-card img {
    height: 180px;
  }

  .blog-content h3 {
    font-size: 1.1rem;
    color: var(--dark);
  }

  .blog-content p {
    color: var(--dark);
    opacity: .85;
  }
  
}


/*========== Testimonials ==========*/
.testimonials {
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 40px;
}

.carousel {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-width: 100%;
  padding: 20px;
}

.slide img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.slide p {
  font-style: italic;
  color: var(--banner-color-p);
}

.slide span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: var(--banner-color-p);
}

input[type="radio"] {
  display: none;
}

.navigation {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.bar {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-blue);
  cursor: pointer;
  transition: background 0.3s;
}

input#t1:checked~.slides {
  transform: translateX(0);
}

input#t2:checked~.slides {
  transform: translateX(-100%);
}

input#t3:checked~.slides {
  transform: translateX(-200%);
}

input#t1:checked~.navigation label[for="t1"],
input#t2:checked~.navigation label[for="t2"],
input#t3:checked~.navigation label[for="t3"] {
  background: var(--dark-blue);
}

/*========== Mobile Testimonials - APP ==========*/
@media (max-width: 768px) {
  .testimonials {
    color: var(--dark);
  }

  .slide p {
    font-style: italic;
    color: var(--dark);
  }

  .bar {
    background: var(--blue-light);
  }

}

/*========== Footer ==========*/
footer {
  font-size: 0.9rem;
  margin-bottom: -2rem;
  padding: 20px 0;
  text-align: center;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

footer .footer-links a {
  font-weight: 500;
  white-space: nowrap;
}

footer .footer-links a:hover {
  color: var(--blue-light);
}

/*========== Media Query==========*/
@media (max-width: 768px) {

  footer {
    margin-bottom: 40px;
    padding-bottom: 30px;
    font-size: 0.85rem;
    color: var(--dark);
  }

  footer .footer-links {
    gap: 12px;
  }
}

/*========== TV ==========*/
@media (min-width: 1600px) {
  footer {
    font-size: 1.1rem;
    padding: 30px 0;
  }

  footer .footer-links {
    gap: 30px;
  }
}