:root {
  --orange: #ff7b47;
  --orange-light: #ff9b6b;
  --red-cta: #ff7b47;
  --purple: #ff7b47;
  --pink: #ff7b47;
  --cyan: #00c6ff;
  --navy: #1d1632;
  --navy-light: #001233;
  --hero-blue: #1a1aff;
  --hero-dark: #0d0d80;
  --heading: #001233;
  --body-text: #4a4a4a;
  --light-bg: #eef2f6;
  --white: #ffffff;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
  --font-nav: 'Poppins', sans-serif;
}

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

html, body {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body-text);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading);
  font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: .3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }


.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: .4s;
}
.navbar.scrolled {
  background: rgba(26,26,200,.97);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  padding: 12px 0;
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
}

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

.footer-brand .nav-logo-img {
  max-height: 150px;
  width: auto;
}

.navbar .nav-logo-img {
  max-height: 75px;
  width: auto;
}

.nav-logo-img {
  max-height: 45px;
  width: auto;
  display: block;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 26px; font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo-name .logo-bold {
  color: #fff;
  font-style: italic;
}
.logo-name .logo-accent {
  color: var(--orange);
  font-style: italic;
}
.logo-name strong {
  color: var(--orange);
}

.nav-links {
  display: flex; gap: 28px;
}
.nav-links a {
  font-family: var(--font-nav);
  color: rgba(255,255,255,.85);
  font-size: 15px; font-weight: 500;
  position: relative;
}
.nav-links a.active,
.nav-links a:hover { color: var(--purple); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 26px; height: 3px;
  background: var(--white); margin: 5px 0;
  border-radius: 2px; transition: .3s;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #1616c8 0%, #1a1aff 30%, #2222dd 60%, #0d0d80 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 90px;
  max-width: 100vw;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,100,255,.25) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-shape { display: none; }

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.15);
  z-index: 3;
}
.ring-1 { width: 180px; height: 180px; top: 10%; left: 5%; }
.ring-2 { width: 120px; height: 120px; bottom: 15%; left: 2%; }

.hero-diamond {
  display: none;
}

.hero-grid {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 80px);
}

.hero-text {
  flex: 1;
  padding-right: 40px;
  position: relative;
  z-index: 2;
}
.hero-text h1 {
  font-size: clamp(38px, 5vw, 68px);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero-text p {
  color: rgba(255,255,255,.80);
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.75;
}

.btn-hero {
  display: inline-block;
  background: var(--white);
  color: #1a1aff;
  padding: 14px 38px;
  border-radius: 50px;
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  transition: .3s;
  border: none;
  cursor: pointer;
  letter-spacing: .3px;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,.25);
  background: #f0f0ff;
}

.hero-btns-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,.55);
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 15px;
  transition: .3s;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,.06);
}
.btn-hero-outline::before {
  content: '';
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.9);
  transform: translateY(-3px);
}

.demo-dropdown-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.demo-select {
  padding: 14px 20px;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 500;
  color: var(--heading);
  background: var(--white);
  min-width: 280px;
  cursor: pointer;
  outline: none;
  transition: .3s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233d3d56' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.demo-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,.15);
}
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;

  min-width: 480px;
}

.phones-wrap {
  position: relative;
  width: 500px;
  height: 640px;
}

.phones-wrap .phone-back {
  position: absolute;
  left: 0;
  top: 100px; 
  z-index: 3;
  width: 260px;
  height: 520px;
  animation: float-back 5.5s ease-in-out infinite;
}

.phones-wrap .phone-front {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
  width: 290px;
  height: 580px;
  animation: float-front 5s ease-in-out infinite;
}

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

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

.phone-frame {
  width: 290px; height: 580px;
  background: #fff;
  border-radius: 36px;
  border: 6px solid rgba(255,255,255,.25);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.1);
  animation: phone-float 5s ease-in-out infinite;
}
.phone-sm { width: 250px; height: 500px; }

.hero-card {
  position: absolute;
  right: -20px;
  top: 18%;
  width: 180px;
  background: var(--white);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  animation: phone-float 5s ease-in-out infinite;
  animation-delay: .8s;
  z-index: 10;
}
.hero-card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.hero-card-sub {
  font-size: 12px;
  color: #777;
  margin-bottom: 14px;
}
.hero-card-btn {
  display: inline-block;
  background: #1a1aff;
  color: #fff;
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-nav);
}
.hero-card-blobs {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.hero-blob {
  width: 22px; height: 22px;
  border-radius: 50%;
}
.hero-blob:nth-child(1) { background: #1a1aff; }
.hero-blob:nth-child(2) { background: #00c6ff; }
.hero-blob:nth-child(3) { background: #1a1aff; opacity:.5; }
.hero-blob:nth-child(4) { background: #223; border: 2px solid #1a1aff; }

.screen-header-alt {
  background: linear-gradient(135deg, #ff7b47 0%, #ffab8a 100%);
}

.sb-card-img {
  height: 72px;
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  border-radius: 12px;
}
.sb-card-img:nth-child(2) { background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%); }
.sb-card-img:nth-child(3) { background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%); }
.sb-card-img:nth-child(4) { background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%); }

@keyframes phone-float {
  0%,100% { transform: translateX(-30px) translateY(0); }
  50% { transform: translateX(-30px) translateY(-18px); }
}

.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 24px;
  background: var(--navy);
  border-radius: 0 0 14px 14px;
  z-index: 5;
}

.phone-screen {
  background: #f5f7fa;
  height: 100%; width: 100%;
}

.screen-header {
  background: linear-gradient(135deg, #1a1aff 0%, #3355ff 100%);
  padding: 36px 16px 20px;
  text-align: left;
  padding-left: 20px;
}
.sh-title {
  color: rgba(255,255,255,.8);
  font-family: var(--font-heading);
  font-weight: 700; font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sh-greeting {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  margin-top: 4px;
}
.sh-sub {
  color: rgba(255,255,255,.7);
  font-size: 11px;
}

.screen-body { padding: 14px; }
.sb-section-label {
  font-size: 11px;
  font-weight: 700;
  color: #555;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  letter-spacing: .5px;
}
.sb-row {
  height: 12px; background: #dde1ea;
  border-radius: 6px; margin-bottom: 10px;
}
.sb-row.short { width: 55%; }
.sb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px; margin-bottom: 12px;
}
.sb-card {
  height: 60px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  display: flex;
  align-items: flex-end;
  padding: 8px;
}
.sb-card-num {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #1a1aff;
}
.sb-card-label {
  font-size: 9px;
  color: #999;
}

section { padding: 100px 0; }

.section-label {
  display: flex; align-items: center; justify-content: center;
  gap: 15px; margin-bottom: 5px;
}
.label-line {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--orange), #ffab8a);
}
.label-text {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--purple);
  font-weight: 600;
  text-transform: capitalize;
}

.watermark-text {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  color: rgba(0,0,0,.04);
  line-height: 1;
  margin-bottom: -10px;
  pointer-events: none;
  user-select: none;
}

.section-heading {
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
}
.product-highlight {
  background: var(--light-bg);
  padding: 80px 0;
}
.product-diagram {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.spec-label {
  text-align: center;
}
.spec-label strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--heading);
}
.spec-label span {
  font-size: 14px;
  color: var(--body-text);
}

.diagram-phone {
  width: 220px;
}

.how-section {
  background: var(--light-bg);
}

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

.how-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 0 29px rgba(0,0,0,.04);
  transition: .3s;
}
.how-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.how-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  color: var(--orange);
}
.how-icon svg { width: 100%; height: 100%; }

.how-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.benefits-section {
  background: var(--light-bg);
  padding-top: 60px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.spec-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  transition: .3s;
}
.spec-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  border-color: var(--orange);
}

.spec-icon {
  width: 24px; height: 24px;
  min-width: 24px;
  margin: 0;
}
.spec-icon svg { width: 100%; height: 100%; }

.spec-card span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--heading);
  line-height: 1.4;
}

.about-product {
  background: var(--light-bg);
}

.features-layout {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.feat-col { flex: 1; }
.feat-phone-center {
  flex: 0 0 280px;
  display: flex;
  justify-content: center;
}

.feat-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 35px;
}

.feat-col.left .feat-row { justify-content: flex-end; }

.feat-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.feat-info p {
  font-size: 14px;
  margin: 0;
}
.feat-info.right-align { text-align: right; }

.feat-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid #ffcdb8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--white);
  color: var(--orange);
}
.feat-circle svg { width: 28px; height: 28px; }

.with-mibly {
  padding: 0;
}

.wm-block {
  display: flex;
  min-height: 500px;
}
.wm-block.reverse { flex-direction: row-reverse; }

.wm-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wm-circle-bg {
  width: 400px; height: 400px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, #ffab8a 50%, #ffd4c4 100%);
  opacity: .25;
}
.wm-circle-bg.blue {
  background: linear-gradient(135deg, var(--navy) 0%, #2a1f4e 100%);
  opacity: .15;
}

.wm-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
}
.wm-text h3 {
  font-size: 16px;
  color: var(--purple);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wm-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.wm-text p {
  margin-bottom: 30px;
  line-height: 1.8;
}

.btn-violet {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 30px;
  font-family: var(--font-nav);
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(29,22,50,.3);
  transition: .3s;
  width: fit-content;
}
.btn-violet:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(29,22,50,.4);
}

.gallery-section {
  background: var(--white);
  padding-bottom: 60px;
}

.gallery-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  margin-top: 50px;
}

.gallery-phone {
  width: 200px; height: 380px;
  background: var(--navy);
  border-radius: 28px;
  border: 5px solid #2a1f4e;
  overflow: hidden;
  transition: .3s;
}
.gallery-phone .gp-screen {
  height: 100%;
  background: linear-gradient(180deg, var(--navy) 0%, #2a1f4e 40%, #f0f2f5 40%);
}

.gallery-phone.featured {
  width: 240px; height: 440px;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

.gallery-phone.tilted-left { transform: rotate(-8deg) translateY(20px); }
.gallery-phone.tilted-right { transform: rotate(8deg) translateY(20px); }

.gallery-phone:hover { transform: translateY(-10px); }
.gallery-phone.tilted-left:hover { transform: rotate(-8deg) translateY(0); }
.gallery-phone.tilted-right:hover { transform: rotate(8deg) translateY(0); }


.useful-section { padding: 0; }

.useful-block {
  display: flex;
  min-height: 450px;
}
.useful-block.reverse { flex-direction: row-reverse; }

.useful-img {
  flex: 1;
  min-height: 300px;
}
.useful-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
}
.useful-content h3 {
  font-size: 32px;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--heading);
}
.useful-content p {
  line-height: 1.9;
  font-size: 16px;
}

.testi-section {
  background: var(--light-bg);
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.testi-card {
  background: linear-gradient(135deg, var(--navy) 0%, #2a1f4e 50%, #3d2d6b 100%);
  color: var(--white);
  padding: 40px;
  border-radius: 12px;
  text-align: left;
  font-style: italic;
  font-size: 15px;
  line-height: 1.8;
}
.testi-card.purple {
  background: linear-gradient(135deg, #2a1f4e 0%, #3d2d6b 50%, #4e3d7e 100%);
}

.testi-authors {
  display: flex;
  justify-content: center;
  gap: 120px;
}
.testi-author { text-align: center; }
.testi-author img {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 4px solid var(--orange);
  margin: 0 auto 12px;
  object-fit: cover;
}
.testi-author h5 {
  font-size: 18px;
  color: var(--orange);
  margin-bottom: 4px;
}
.testi-author span {
  font-size: 14px;
  color: var(--body-text);
}


.brand-bar {
  background: linear-gradient(135deg, var(--navy) 0%, #2a1f4e 50%, #3d2d6b 100%);
  padding: 35px 0;
}
.brand-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.brand-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  opacity: .85;
}

.faq-section {
  background: var(--light-bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.faq-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 29px rgba(0,0,0,.04);
  text-align: left;
  position: relative;
}

.faq-q-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -18px;
  left: -10px;
}

.faq-card h4 {
  font-size: 18px;
  margin-bottom: 15px;
  padding-top: 10px;
}
.faq-card p {
  font-size: 15px;
  line-height: 1.8;
}
.pricing-section {
  background: var(--navy);
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 320px; 
  position: relative;
  transition: .3s;
  text-align: center;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,.08);
}

.price-card.featured {
  border: 2px solid var(--orange);
  box-shadow: 0 10px 40px rgba(255,123,71,.2);
  transform: scale(1.05);
}
.price-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-nav);
}

.price-card h4 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.price-tag {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 5px;
}
.price-tag span {
  font-size: 16px;
  font-weight: 400;
  color: var(--body-text);
}

.price-sub {
  font-size: 14px;
  color: var(--body-text);
  margin-bottom: 10px;
}

.price-duration {
  font-size: 16px;
  color: var(--heading);
  margin-bottom: 30px;
}

.price-feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 20px;
  text-align: left;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

.all-plans-features {
  margin-top: 60px;
  background: var(--white);
  border-radius: 24px;
  padding: 50px 60px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
  position: relative;
  overflow: hidden;
}
.all-plans-features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--hero-blue), var(--orange));
}
.all-plans-features h3 {
  font-size: 24px;
  color: var(--heading);
  margin-bottom: 30px;
}

.price-feature-list li {
  margin-bottom: 0;
  color: var(--body-text);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
  padding: 8px 12px;
  border-radius: 8px;
  transition: .3s ease;
}
.price-feature-list li:hover {
  background: rgba(0,0,0,.02);
  color: var(--heading);
  transform: translateX(4px);
}
.price-feature-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(255,123,71,.15);
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  margin-top: 2px;
}

@media (max-width: 991px) {
  .price-feature-list { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .all-plans-features { padding: 40px 30px; }
}
@media (max-width: 767px) {
  .price-feature-list { grid-template-columns: 1fr; }
  .all-plans-features { padding: 30px 20px; }
}

.btn-price {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--heading);
  border-radius: 6px;
  font-family: var(--font-nav);
  font-weight: 600;
  color: var(--heading);
  transition: .3s;
}
.btn-price:hover {
  background: var(--heading);
  color: var(--white);
}
.btn-price.featured {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-price.featured:hover {
  box-shadow: 0 8px 20px rgba(255,123,71,.35);
  transform: translateY(-2px);
}

.team-section {
  background: var(--light-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 16px;
  padding: 40px 20px;
  box-shadow: 0 0 29px rgba(0,0,0,.04);
  transition: .3s;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.team-card h4 {
  font-size: 18px;
  margin-bottom: 5px;
}
.team-card span {
  font-size: 14px;
  color: var(--body-text);
}

.contact-section {
  background: var(--white);
  padding: 80px 0;
}
.contact-box {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-email {
  display: inline-block;
  padding: 15px 40px;
  border: 2px solid var(--heading);
  border-radius: 30px;
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 15px;
  color: var(--heading);
  transition: .3s;
}
.btn-email:hover {
  background: var(--heading);
  color: var(--white);
}

.footer {
  background: #e9eff4;
  color: #4a4a4a;
  padding-top: 40px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-brand { flex: 2; }
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #666;
  margin-top: 6px;
}

.seal-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  font-family: var(--font-nav);
  color: #444;
  background: rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 20px;
  padding: 4px 10px;
  letter-spacing: .2px;
}
.seal-badge svg { flex-shrink: 0; stroke: #16a34a; }
.seal-badge:last-child svg { stroke: #4285F4; }

.security-seals {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.footer-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links h4 {
  color: var(--heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 8px;
}
.footer-links a {
  font-size: 13.5px;
  color: #666;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid #d1d5db;
  padding: 14px 0;
  font-size: 12.5px;
  color: #888;
}
.footer-bottom a { color: var(--orange); }

.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  z-index: 999;
  animation: wa-pulse 2s infinite;
}
.whatsapp-float svg { width: 28px; height: 28px; }

@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,.7); }
}



.pf-dark {
  background: linear-gradient(160deg, #3949ab 0%, #283593 40%, #1a237e 100%) !important;
  border-color: rgba(255,255,255,.15) !important;
}
.pn-dark { background: #1a237e !important; }
.ps-dark {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 36px 16px 0;
  color: #fff;
  overflow: hidden;
}
.ps-topbar { margin-bottom: 18px; }
.ps-greeting {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 800; color: #fff; line-height: 1.2;
}
.ps-greet-sub {
  font-size: 11px; color: rgba(255,255,255,.65);
  margin-top: 3px; margin-bottom: 14px;
}
.ps-task-card {
  background: rgba(255,255,255,.12);
  border-radius: 14px; padding: 12px 14px;
  margin-bottom: 14px; backdrop-filter: blur(4px);
}
.ps-task-title {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 2px;
}
.ps-task-sub { font-size: 10px; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.ps-avatars { display: flex; align-items: center; }
.ps-avatar { width: 22px; height: 22px; border-radius: 50%; border: 2px solid rgba(255,255,255,.5); }
.ps-review-title {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 10px;
}
.ps-stats-row { display: flex; gap: 8px; }
.ps-stat-card {
  flex: 1; background: rgba(255,255,255,.15);
  border-radius: 14px; padding: 12px 10px; text-align: center;
}
.ps-stat-num {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 800; color: #fff; line-height: 1;
}
.ps-stat-label {
  font-size: 9px; color: rgba(255,255,255,.6);
  margin-top: 4px; text-transform: uppercase; letter-spacing: .5px;
}
.ps-navbar {
  margin-top: auto;
  display: flex; justify-content: space-around; align-items: center;
  padding: 14px 16px; border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  margin-left: -16px; margin-right: -16px;
}

.pf-light { background: #fff; border-color: rgba(255,255,255,.4); }
.ps-light { height: 100%; display: flex; flex-direction: column; overflow: hidden; }
.ps-art {
  flex: 0 0 52%; overflow: hidden;
  border-radius: 0 0 24px 24px; background: #e8eaf6;
}
.ps-light-body {
  flex: 1; padding: 16px 18px 8px;
  display: flex; flex-direction: column;
}
.ps-light-title {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 800; color: #1a237e;
  line-height: 1.2; margin-bottom: 8px;
}
.ps-light-sub { font-size: 10px; color: #666; line-height: 1.5; margin-bottom: 14px; }
.ps-light-btn {
  display: inline-block;
  background: #fff; color: #1a237e;
  border: 2px solid #1a237e;
  padding: 8px 22px; border-radius: 30px;
  font-family: var(--font-nav); font-weight: 700; font-size: 11px;
  width: fit-content; transition: .3s;
}
.ps-light-btn:hover { background: #1a237e; color: #fff; }
.ps-dots {
  display: flex; justify-content: center; gap: 5px; padding-bottom: 12px;
}
.ps-dot { width: 6px; height: 6px; border-radius: 50%; background: #c5cae9; }
.ps-dot.active { background: #3949ab; width: 18px; border-radius: 3px; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .features-layout { flex-direction: column; }
  .feat-col.left .feat-row { justify-content: flex-start; }
  .feat-info.right-align { text-align: left; }
  .feat-phone-center { order: -1; margin-bottom: 40px; }
}

@media (max-width: 991px) {
  .nav-links { 
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; width: 100%;
    background: rgba(13, 13, 128, 0.98);
    backdrop-filter: blur(10px);
    padding: 0;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
  }
  .nav-links.open {
    max-height: 400px;
    padding: 10px 0;
  }
  .nav-links a {
    padding: 18px 30px;
    display: block;
    text-align: center;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-toggle { display: block; }
  .hero-grid { flex-direction: column; text-align: center; padding: 60px 0 20px; justify-content: center; }
  .hero-text { padding-right: 0; margin-bottom: 30px; width: 100%; min-width: 0; }
  .hero-text h1 { font-size: clamp(28px, 7vw, 42px); word-break: break-word; }
  .hero-text p { margin: 0 auto 30px; width: 100%; }
  .hero-ring { display: none; }
  .hero-btns-row { justify-content: center; flex-direction: column; align-items: center; gap: 12px; }
  .btn-hero, .btn-hero-outline { width: 100%; max-width: 340px; justify-content: center; text-align: center; }
  
  .hero-visual { display: flex; justify-content: center; align-items: flex-start; min-width: 0; width: 100%; overflow: visible; }

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

  .wm-block, .wm-block.reverse { flex-direction: column; }
  .wm-text { padding: 40px 30px; }

  .gallery-row { flex-direction: column; align-items: center; }
  .gallery-phone.tilted-left, .gallery-phone.tilted-right { transform: none; }

  .useful-block, .useful-block.reverse { flex-direction: column; }
  .useful-content { padding: 40px 30px; }

  .testi-grid { grid-template-columns: 1fr; }
  .testi-authors { gap: 40px; }

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

  .pricing-grid { flex-direction: column; align-items: center; }
  .price-card { width: 100%; max-width: 380px; }
  .price-card.featured { transform: scale(1); }
  .price-card.featured:hover { transform: translateY(-8px); }

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

  .footer-grid { flex-direction: column; }
}

@media (max-width: 767px) {
  .phones-wrap { width: 360px; height: 461px; }
  .phones-wrap .phone-back { width: 187px; height: 374px; top: 72px; border-radius: 26px; }
  .phones-wrap .phone-front { width: 209px; height: 418px; border-radius: 26px; }
  .demo-content { padding: 25px 20px; }
}

@media (max-width: 420px) {
  .phones-wrap { width: 300px; height: 384px; }
  .phones-wrap .phone-back { width: 156px; height: 312px; top: 60px; border-radius: 22px; }
  .phones-wrap .phone-front { width: 174px; height: 348px; border-radius: 22px; }
}

@media (max-width: 480px) {
  .container { padding: 0 15px; }
  .price-card, .ben-card, .pain-card, .demo-content, .all-plans-features { 
    padding: 25px 15px !important; 
  }
  .demo-select { min-width: 100%; width: 100%; }
  .team-grid { grid-template-columns: 1fr; }
  .testi-authors { flex-direction: column; gap: 30px; }
  .security-seals { justify-content: flex-start; }
}

.benefits-new {
  padding: 100px 0;
  background: #f5f7fa;
  position: relative;
  z-index: 5;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.ben-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}
.ben-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,.06);
}
.ben-icon {
  font-size: 40px;
  margin-bottom: 20px;
}
.ben-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 15px;
}
.ben-card p {
  color: var(--body-text);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

.pain-points-section {
  padding: 100px 0;
  background: #fff;
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  text-align: left;
}
.pain-card {
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.03);
}
.pain-card.antes {
  background: #fff1f2;
  border: 1px solid #ffe4e6;
}
.pain-card.depois {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
}
.pain-header {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0,0,0,.05);
  padding-bottom: 20px;
}
.pain-header h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 5px;
}
.pain-card.antes h3 { color: #e11d48; }
.pain-card.depois h3 { color: #16a34a; }

.pain-header p {
  color: #666;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pain-list {
  list-style: none;
  padding: 0; margin: 0;
}
.pain-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--body-text);
}
.pain-list svg {
  position: absolute;
  left: 0; top: 2px;
  width: 24px; height: 24px;
}
.pain-card.antes .pain-list svg { color: #e11d48; }
.pain-card.depois .pain-list svg { color: #16a34a; }
.pain-list strong { color: var(--navy); }

@media (max-width: 991px) {
  .pain-grid { grid-template-columns: 1fr; }
}

.demo-section {
  padding: 100px 0;
  background: #f5f7fa;
}
.demo-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,.05);
}
.demo-features-list {
  list-style: none; padding: 0; margin: 0 0 30px;
}
.demo-features-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.5;
}
.demo-features-list li strong {
  color: var(--heading);
  font-weight: 700;
}
.demo-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: bold;
}
