* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #eef2ef;
  color: #071216;
}

/* HEADER */
.header-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 20px;
  z-index: 999;
  padding: 0 20px;
}

.header {
  width: 100%;
  max-width: 1200px;
  background: #fff;
  border-radius: 60px;
  padding: 16px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 28px;
  font-weight: 700;
}

.logo .blue { color: #155da8; }
.logo .red { color: #ee2d2f; }
.logo .purple { color: #6543a5; }

.nav {
  display: flex;
  gap: 34px;
}

.nav a {
  text-decoration: none;
  color: #111;
  font-size: 16px;
}

.demo-btn {
  background: #6543a5;
  color: #fff;
  padding: 17px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.demo-btn:hover {
  transform: translateY(-2px);
}
	
	/* ===== LANGUAGE DROPDOWN ===== */
.language-dropdown {
  position: relative;
}

.language-btn {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 16px;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s ease;
}

.language-btn:hover {
  color: #155da8;
}

.language-menu {
  position: absolute;
  top: 170%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: 0.3s ease;
  z-index: 999;
}

.language-dropdown:hover .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.language-menu a {
  display: block;
  padding: 12px 22px;
  text-decoration: none;
  color: #071216;
  font-size: 15px;
  transition: 0.3s ease;
}

.language-menu a:hover {
  background: rgba(21, 93, 168, 0.06);
  color: #155da8;
}

/* Mobile */
@media (max-width: 900px) {
  .language-dropdown {
    display: none;
  }
}

/* HERO */
.hero {
  width: 100%;
  padding: 160px 20px 80px;
  display: flex;
  justify-content: center;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.subheading {
  color: #727272;
  font-size: 18px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 68px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0px;
}

.hero h1 span {
  color: #155da8;
}

.description {
  color: #4F4F4F;
  margin-top: 28px;
  font-size: 26px;
}

.tags {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tag {
  border: 1px solid #d9dddc;
  border-radius: 40px;
  padding: 9px 18px;
  font-size: 15px;
  color: #4d5967;
}

.tag::before {
  content: "•";
  
  font-size: 24px;
  margin-right: 8px;
  vertical-align: middle;
}


.buttons {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #155da8;
  color: #fff;
  padding: 20px 52px;
  border-radius: 50px;
  font-size: 22px;
  text-decoration: none;
}

.btn-outline {
  border: 2px solid #6543a5;
  color: #6543a5;
  padding: 18px 42px;
  border-radius: 50px;
  font-size: 22px;
  text-decoration: none;
}

/* VIDEO SECTION */
.video-section {
  width: 100%;
  padding: 0 20px 110px;
  display: flex;
  justify-content: center;
}

.video-card {
  width: 100%;
  max-width: 1200px;
  background: #fff;
  padding: 24px;
  border-radius: 34px;
}

.video-wrap {
  position: relative;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
}

.video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  background: #fff;
  border: none;
  border-radius: 50%;
}

.play-btn span {
  position: absolute;
  left: 31px;
  top: 24px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 21px solid #155da8;
}

.video-controls {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 18px;
}

.progress {
  height: 7px;
  background: rgba(255,255,255,0.75);
  border-radius: 20px;
  position: relative;
}

.progress-fill {
  width: 74%;
  height: 100%;
  background: #155da8;
}

.progress-dot {
  position: absolute;
  left: 74%;
  top: 50%;
  width: 20px;
  height: 20px;
  background: #155da8;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.time-row {
  margin-top: 9px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}

/* PROBLEM SECTION */
.problem-section {
  width: 100%;
  padding: 20px 20px 120px;
  display: flex;
  justify-content: center;
}

.problem-container {
  width: 100%;
  max-width: 1200px;
}

.problem-container h2 {
  text-align: center;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0px;
  margin-bottom: 54px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.problem-card {
  height: 177px;
  background: #fff;
  border-radius: 24px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s ease;
}

.problem-card.active {
  background: #155da8;
  color: #fff;
}

.problem-card:hover {
  background: #155da8;
  color: #fff;
  transform: translateY(-6px);
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: #155da8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.problem-card.active .icon-box,
.problem-card:hover .icon-box {
  background: #fff;
  color: #155da8;
}

.problem-card.purple .icon-box {
  background: #6543a5;
}

.problem-card.red .icon-box {
  background: #ee2d2f;
}

.problem-card h3 {
  font-size: 20px;
  line-height: 1.45;
  font-weight: 600;
}

/* RECEPTION SECTION */
.reception-section {
  width: 100%;
  padding: 20px 20px 130px;
  display: flex;
  justify-content: center;
}

.reception-container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 70px;
  align-items: center;
}

.reception-image {
  width: 100%;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
}

.reception-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reception-content h2 {
  font-size: 45px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0px;
  margin-bottom: 38px;
}

.reception-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.reception-content li {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 18px;
}

.reception-content li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  background: #071216;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex: 0 0 20px;
}

.reception-btn {
  display: inline-block;
  background: #155da8;
  color: #fff;
  padding: 20px 54px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 21px;
  transition: 0.3s ease;
}

.reception-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(21, 93, 168, 0.28); color:#FFF;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav {
    display: ""!important;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .description {
    font-size: 16px;
  }

  .video-wrap {
    height: 300px;
  }

  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-container h2 {
    font-size: 36px;
  }

  .reception-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reception-image {
    height: 420px;
  }

  .reception-content h2 {
    font-size: 36px;
  }

  .reception-content li {
    font-size: 22px;
  }
}

@media (max-width: 520px) {
  .header {
    padding: 14px;
  }

  .logo {
    font-size: 20px;
  }

  .demo-btn {
    padding: 12px 18px;
    font-size: 13px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    font-size: 18px;
  }

  .reception-image {
    height: 320px;
  }
}
	
	/* ===== PIXEL PERFECT HOW FRONTYX ===== */
.how-section {
  width: 100%;
  padding: 60px 20px 140px;
  display: flex;
  justify-content: center;
}

.how-container {
  width: 100%;
  max-width: 1200px;
  border-radius: 36px;
  padding: 90px 50px;
  position: relative;
  overflow: hidden;

  /* Gradient background */
  background: linear-gradient(120deg, #7c1f1f 0%, #021b24 40%, #1e4b86 100%);
}

/* GRID overlay */
.how-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

/* Soft glow */
.how-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at left, rgba(255,80,80,0.25), transparent 40%),
              radial-gradient(circle at right, rgba(80,120,255,0.25), transparent 40%);
  z-index: 0;
}

/* Content on top */
.how-container > * {
  position: relative;
  z-index: 1;
}

.how-container h2 {
  text-align: center;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 70px;
}

/* Steps layout */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.step {
  background: #f5f5f5;
  padding: 34px;
  border-radius: 22px;
  position: relative;
  transition: 0.3s;
}

/* Active (middle card) */
.step.active {
  border-top: 6px solid #155da8;
}

/* Number */
.step-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Title */
.step h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Description */
.step p {
  font-size: 16px;
  color: #5a6672;
  line-height: 1.5;
}

/* Hover effect */
.step:hover {
  transform: translateY(-6px);
}

/* Responsive */
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .how-container {
    padding: 60px 25px;
  }

  .how-container h2 {
    font-size: 36px;
  }
}
	/* ===== SECTION 5 ANIMATION ===== */

.how-container::before {
  animation: gridMove 18s linear infinite;
}

.how-container::after {
  animation: glowPulse 6s ease-in-out infinite alternate;
}

.step {
  opacity: 0;
  transform: translateY(30px);
  animation: cardReveal 0.8s ease forwards;
}

.step:nth-child(1) {
  animation-delay: 0.15s;
}

.step:nth-child(2) {
  animation-delay: 0.35s;
}

.step:nth-child(3) {
  animation-delay: 0.55s;
}

.step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 22px 45px rgba(0,0,0,0.18);
}

.step.active {
  animation-name: cardReveal, activeGlow;
  animation-duration: 0.8s, 2.8s;
  animation-delay: 0.35s, 1.2s;
  animation-fill-mode: forwards, infinite;
  animation-timing-function: ease, ease-in-out;
}

@keyframes gridMove {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 40px 40px, 40px 40px;
  }
}

@keyframes glowPulse {
  from {
    opacity: 0.65;
    filter: blur(0px);
  }
  to {
    opacity: 1;
    filter: blur(2px);
  }
}

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes activeGlow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(21, 93, 168, 0);
  }
  50% {
    box-shadow: 0 18px 45px rgba(21, 93, 168, 0.28);
  }
}
	
	/* ===== WHERE FRONTYX WORKS ===== */
.where-section {
  width: 100%;
  padding: 10px 20px 130px;
  display: flex;
  justify-content: center;
}

.where-container {
  width: 100%;
  max-width: 1200px;
}

.where-title {
  text-align: center;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0px;
  margin-bottom: 54px;
}

.where-card {
  width: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 74px 76px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}

.where-icon {
  width: 32px;
  height: 44px;
  border-radius: 18px;
  background: #071216;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 24px;
}

.where-content h3 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0px;
  margin-bottom: 16px;
}

.where-text {
  color: #6f6f6f;
  font-size: 17px;
  line-height: 1.55;
  max-width: 390px;
  margin-bottom: 30px;
}

.where-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 42px;
}

.where-list li {
  font-size: 19px;
  line-height: 1.25;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 13px;
}

.where-list li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  background: #071216;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex: 0 0 18px;
}

.where-btn {
  display: inline-block;
  background: #155da8;
  color: #fff;
  padding: 17px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 19px;
  transition: 0.3s ease;
}

.where-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(21, 93, 168, 0.28);
}

.where-image {
  width: 100%;
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
}

.where-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* subtle animation */
.where-card {
  animation: fadeUp 0.8s ease both;
}

.where-image img {
  transition: 0.5s ease;
}

.where-card:hover .where-image img {
  transform: scale(1.04);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
	
	/* ===== SECOND WHERE CARD — 100% CLOSER ===== */
.where-card-second {
  margin-top: 0;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 88px 68px;
  display: grid;
  grid-template-columns: 510px 1fr;
  gap: 75px;
  align-items: center;
}

.where-card-second .where-icon {
  width: 32px;
  height: 42px;
  border-radius: 16px;
  margin-bottom: 34px;
}

.where-card-second h3,
.where-heading-large {
  font-size: 42px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0px;
  margin-bottom: 18px;
}

.where-text-large {
  font-size: 18px;
  line-height: 1.55;
  color: #6f6f6f;
  max-width: 470px;
  margin-bottom: 34px;
}

.where-list-large {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 44px;
}

.where-list-large li {
  font-size: 21px;
  line-height: 1.25;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
}

.where-list-large li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  background: #071216;
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
}

.where-btn-large {
  display: inline-block;
  background: #155da8;
  color: #fff;
  padding: 20px 43px;
  border-radius: 50px;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s ease;
}

.where-btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(21, 93, 168, 0.28);
}

.where-image-large {
  width: 100%;
  height: 455px;
  border-radius: 0;
  overflow: hidden;
}

.where-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 900px) {
  .where-card-second {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 30px;
  }

  .where-card-second h3,
  .where-heading-large {
    font-size: 32px;
  }

  .where-list-large li {
    font-size: 18px;
  }

  .where-image-large {
    height: 320px;
  }
}
	
	/* ===== WHY FRONTYX DIFFERENT ===== */
.why-section {
  width: 100%;
  padding: 40px 20px 130px;
  display: flex;
  justify-content: center;
}

.why-container {
  width: 100%;
  max-width: 1200px;
}

.why-title {
  text-align: center;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0px;
  margin-bottom: 12px;
}

.why-title2 {
  text-align: center;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0px;
  margin-bottom: 52px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 26px;
}

.why-card {
  height: 105px;
  background: #fff;
  border-radius: 18px;
  padding: 0 42px;
  display: flex;
  align-items: center;
  gap: 26px;
  transition: 0.3s ease;
}

.why-card.active {
  background: #155da8;
  color: #fff;
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f2f3f5;
  color: #155da8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  flex: 0 0 56px;
}

.why-card.active .why-icon {
  background: #fff;
  color: #155da8;
}

.why-card.purple .why-icon {
  background: #e4dcf1;
  color: #6543a5;
}

.why-card.red .why-icon {
  background: #f8d8d8;
  color: #ee2d2f;
}

.why-card.lightblue .why-icon {
  background: #dbe6f5;
  color: #155da8;
}

.why-card h3 {
  font-size: 27px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0px;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.08);
}

@media (max-width: 800px) {
  .why-title {
    font-size: 36px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    height: auto;
    min-height: 105px;
    padding: 26px;
  }

  .why-card h3 {
    font-size: 23px;
  }
}
	
	/* ===== GDPR & CYBERSECURITY ===== */
.security-section {
  width: 100%;
  padding: 40px 20px 130px;
  display: flex;
  justify-content: center;
}

.security-container {
  width: 100%;
  max-width: 1200px;
  background: radial-gradient(circle at left bottom, rgba(21, 93, 168, 0.45), transparent 36%),
              linear-gradient(135deg, #071216 0%, #061516 48%, #071216 100%);
  border-radius: 24px;
  padding: 36px 24px 36px 34px;
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 46px;
  align-items: stretch;
}

.security-left {
  padding: 8px 0 28px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.security-left h2 {
  color: #fff;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0px;
}

.security-btn {
  display: inline-block;
  width: fit-content;
  background: #155da8;
  color: #fff;
  padding: 18px 42px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s ease;
}

.security-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(21, 93, 168, 0.35);
}

.security-card {
  background: #fff;
  border-radius: 12px;
  padding: 42px 34px;
  display: flex;
  align-items: center;
}

.security-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.security-list li {
  color: #686868;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.security-list li::before {
  content: "✓";
  width: 21px;
  height: 21px;
  background: #071216;
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 21px;
  margin-top: 1px;
}



@media (max-width: 900px) {
  .security-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px 24px;
  }

  .security-left {
    gap: 32px;
  }

  .security-left h2 {
    font-size: 32px;
  }

  .security-list li {
    font-size: 17px;
  }
}
	
	/* ===== PRICING SECTION ===== */
.pricing-section {
  width: 100%;
  padding: 40px 20px 130px;
  display: flex;
  justify-content: center;
}

.pricing-container {
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.pricing-title {
  font-size: 50px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0px;
  margin-bottom: 18px;
}

.pricing-subtitle {
  color: #707070;
  font-size: 23px;
  line-height: 1.4;
  margin-bottom: 78px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 56px;
}

.pricing-card {
  height: 180px;
  background: #fff;
  border-radius: 22px;
  padding: 48px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pricing-card.featured {
  border: 1.5px solid #9b9cff;
  background: transparent;
}

.pricing-card h3 {
  color: #536071;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 18px;
}

.pricing-price {
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0px;
  margin-bottom: 22px;
}

.pricing-note {
  color: #697589;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}

.pricing-btn {
  display: inline-block;
  background: #155da8;
  color: #fff;
  padding: 20px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 19px;
  font-weight: 500;
  transition: 0.3s ease;
}

.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(21, 93, 168, 0.28);
}

@media (max-width: 900px) {
  .pricing-title {
    font-size: 36px;
  }

  .pricing-subtitle {
    font-size: 18px;
    margin-bottom: 45px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    height: auto;
    min-height: 170px;
  }
}
	/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
  width: 100%;
  padding: 40px 20px 130px;
  display: flex;
  justify-content: center;
}

.final-cta-container {
  width: 100%;
  max-width: 1200px;
  min-height: 500px;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 10% 85%, rgba(170, 40, 34, 0.78), transparent 34%),
    radial-gradient(circle at 90% 72%, rgba(21, 93, 168, 0.88), transparent 38%),
    linear-gradient(120deg, #071216 0%, #061416 48%, #09233a 100%);
}

.final-cta-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.8;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  color: #fff;
}

.final-cta-content h2 {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0px;
  margin-bottom: 18px;
}

.final-cta-content p {
  font-size: 20px;
  line-height: 1.4;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
}

.final-cta-btn {
  display: inline-block;
  background: #fff;
  color: #071216;
  padding: 18px 34px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.final-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(255,255,255,0.18);
}

@media (max-width: 900px) {
  .final-cta-container {
    min-height: 380px;
    border-radius: 28px;
  }

  .final-cta-content h2 {
    font-size: 36px;
  }

  .final-cta-content p,
  .final-cta-btn {
    font-size: 17px;
  }
}
	
	/* ===== FOOTER ===== */
.footer-section {
  width: 100%;
  padding: 10px 20px 60px;
  display: flex;
  justify-content: center;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.footer-line {
  width: 100%;
  height: 1px;
  background: rgba(7, 18, 22, 0.08);
  margin-bottom: 42px;
}

.footer-text {
  font-size: 16px;
  line-height: 1.4;
  color: #6d6d6d;
  font-weight: 400;
}

.footer-text strong {
  color: #071216;
  font-weight: 700;
}

@media (max-width: 768px) {
  .footer-line {
    margin-bottom: 28px;
  }

  .footer-text {
    font-size: 14px;
    padding: 0 10px;
  }
}
	
	/* ===== GLOBAL SECTION SPACING + PREMIUM ANIMATIONS ===== */

/* Equal spacing for all main sections */
.hero,
.video-section,
.problem-section,
.reception-section,
.how-section,
.where-section,
.why-section,
.security-section,
.pricing-section,
.final-cta-section {
  padding-top: 10px !important;
  padding-bottom: 70px !important;
}

/* Keep hero slightly more top space because of sticky header */
.hero {
  padding-top: 150px !important;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Common animation base */
.hero-container,
.video-card,
.problem-container,
.reception-container,
.how-container,
.where-container,
.why-container,
.security-container,
.pricing-container,
.final-cta-container,
.footer-container {
  animation: sectionFadeUp 0.9s ease both;
}

/* Premium card hover effects */
.video-card,
.problem-card,
.reception-image,
.how-container,
.step,
.where-card,
.why-card,
.security-container,
.pricing-card,
.final-cta-container {
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.video-card:hover,
.reception-image:hover,
.where-card:hover,
.security-container:hover,
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(7, 18, 22, 0.10);
}

/* Image premium zoom */
.video-wrap img,
.reception-image img,
.where-image img {
  transition: transform 0.7s ease;
}

.video-card:hover img,
.reception-image:hover img,
.where-card:hover img {
  transform: scale(1.035);
}

/* Button animation */
.demo-btn,
.btn-primary,
.btn-outline,
.reception-btn,
.where-btn,
.where-btn-large,
.security-btn,
.pricing-btn,
.final-cta-btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.demo-btn:hover,
.btn-primary:hover,
.btn-outline:hover,
.reception-btn:hover,
.where-btn:hover,
.where-btn-large:hover,
.security-btn:hover,
.pricing-btn:hover,
.final-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(21, 93, 168, 0.25);
}

/* Heading subtle entrance */
h1, h2, h3 {
  animation: textSoftIn 0.8s ease both;
}

/* Icon pulse */
.icon-box,
.where-icon,
.why-icon {
  transition: transform 0.3s ease;
}

.problem-card:hover .icon-box,
.where-card:hover .where-icon,
.why-card:hover .why-icon {
  transform: scale(1.08) rotate(3deg);
}

/* Final CTA moving grid */
.final-cta-container::before,
.how-container::before {
  animation: gridMoveSlow 22s linear infinite;
}

/* Soft glow breathing */
.final-cta-container {
  animation: sectionFadeUp 0.9s ease both, softGlow 5s ease-in-out infinite alternate;
}

/* Pricing featured card glow */
.pricing-card.featured {
  animation: featuredGlow 3.5s ease-in-out infinite;
}

/* Main animations */
@keyframes sectionFadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textSoftIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gridMoveSlow {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 58px 58px, 58px 58px;
  }
}

@keyframes softGlow {
  from {
    filter: brightness(1);
  }
  to {
    filter: brightness(1.08);
  }
}

@keyframes featuredGlow {

  0%, 100% {
    box-shadow: 0 0 0 rgba(155, 156, 255, 0);
  }
  50% {
    box-shadow: 0 18px 45px rgba(155, 156, 255, 0.22);
  }
}

/* Mobile spacing balance */
@media (max-width: 900px) {
  .hero,
  .video-section,
  .problem-section,
  .reception-section,
  .how-section,
  .where-section,
  .why-section,
  .security-section,
  .pricing-section,
  .final-cta-section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .hero {
    padding-top: 120px !important;
  }
}

/* ==========================================================
   RESPONSIVE FIX PATCH
   Purpose: mobile menu toggle + remove horizontal bottom scroll.
   Desktop design remains unchanged because the visible layout changes
   are limited to responsive breakpoints.
========================================================== */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f3f5f6;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex: 0 0 42px;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: #071216;
  border-radius: 20px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Tablet balance without changing large desktop */
@media (max-width: 1180px) {
  .header,
  .hero-container,
  .video-card,
  .problem-container,
  .reception-container,
  .how-container,
  .where-container,
  .why-container,
  .security-container,
  .pricing-container,
  .final-cta-container,
  .footer-container {
    max-width: calc(100vw - 40px);
  }

  .nav {
    gap: 22px;
  }

  .nav a,
  .language-btn {
    font-size: 15px;
  }

  .demo-btn {
    padding: 15px 24px;
  }

  .where-card {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 440px);
    gap: 48px;
    padding: 62px 48px;
  }

  .where-card-second {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 1fr);
    gap: 48px;
    padding: 70px 48px;
  }
}

@media (max-width: 1024px) {
  .header {
    gap: 18px;
  }

  .logo {
    font-size: 24px;
  }

  .nav {
    gap: 18px;
  }

  .demo-btn {
    font-size: 15px;
    padding: 14px 22px;
  }

  .reception-container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 44px;
  }

  .reception-image {
    height: 460px;
  }

  .where-card {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
    gap: 40px;
    padding: 56px 40px;
  }
}

/* Phone / small tablet navigation */
@media (max-width: 900px) {
  .header-wrapper {
    top: 12px;
    padding: 0 14px;
  }

  .header {
    position: relative;
    max-width: 100%;
    padding: 13px 14px;
    border-radius: 28px;
    gap: 12px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .logo {
    order: 1;
    font-size: 22px;
    white-space: nowrap;
  }

  .demo-btn {
    order: 2;
    margin-left: auto;
    padding: 12px 18px;
    font-size: 14px;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 12px);
    display: none;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 22px 55px rgba(7, 18, 22, 0.14);
    z-index: 1000;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav > a,
  .language-btn {
    width: 100%;
    padding: 14px 12px;
    border-radius: 14px;
    font-size: 16px;
    justify-content: space-between;
  }

  .nav > a:hover,
  .language-btn:hover {
    background: rgba(21, 93, 168, 0.07);
  }

  .language-dropdown {
    display: block;
    width: 100%;
  }

  .language-menu {
    position: static;
    min-width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-radius: 16px;
    padding: 4px 0 4px 12px;
    display: none;
    background: rgba(21, 93, 168, 0.04);
  }

  .language-dropdown:hover .language-menu,
  .language-dropdown:focus-within .language-menu {
    display: block;
    transform: none;
  }

  .language-menu a {
    padding: 11px 14px;
    font-size: 15px;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .video-section,
  .problem-section,
  .reception-section,
  .how-section,
  .where-section,
  .why-section,
  .security-section,
  .pricing-section,
  .final-cta-section,
  .footer-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .video-card {
    padding: 16px;
    border-radius: 26px;
  }

  .video-wrap {
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 220px;
  }

  .video-controls {
    left: 18px;
    right: 18px;
    bottom: 14px;
  }

  .reception-container {
    grid-template-columns: 1fr;
  }

  .where-card,
  .where-card-second {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 46px 28px;
  }

  .where-image,
  .where-image-large {
    width: 100%;
    height: auto;
    min-height: 260px;
    aspect-ratio: 16 / 11;
  }

  .where-image img,
  .where-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .security-container {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 108px !important;
  }

  .subheading {
    font-size: 16px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .description {
    font-size: 17px;
  }

  .buttons {
    gap: 12px;
  }

  .btn-primary,
  .btn-outline,
  .reception-btn,
  .where-btn,
  .where-btn-large,
  .security-btn,
  .pricing-btn,
  .final-cta-btn {
    max-width: 100%;
    text-align: center;
  }

  .problem-container h2,
  .where-title,
  .why-title,
  .pricing-title {
    font-size: 34px;
  }

  .how-container {
    border-radius: 28px;
    padding: 52px 22px;
  }

  .how-container h2 {
    font-size: 34px;
    margin-bottom: 38px;
  }

  .step {
    padding: 26px;
  }

  .security-container,
  .final-cta-container {
    border-radius: 24px;
  }

  .security-card {
    padding: 28px 20px;
  }

  .security-list {
    gap: 22px;
  }

  .pricing-card {
    padding: 36px 22px;
  }
}

@media (max-width: 520px) {
  .header {
    flex-wrap: wrap;
  }

  .logo {
    font-size: 20px;
    max-width: calc(100% - 56px);
  }

  .mobile-menu-toggle {
    order: 2;
    margin-left: auto;
  }

  .demo-btn {
    order: 3;
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-left: 0;
    margin-top: 6px;
  }

  .nav {
    top: calc(100% + 10px);
  }

  .video-wrap {
    min-height: 190px;
  }

  .play-btn {
    width: 60px;
    height: 60px;
  }

  .play-btn span {
    left: 25px;
    top: 19px;
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 17px;
  }

  .video-controls {
    left: 12px;
    right: 12px;
    bottom: 10px;
  }

  .time-row {
    font-size: 13px;
  }

  .progress-dot {
    width: 16px;
    height: 16px;
  }

  .problem-card,
  .why-card {
    padding: 24px;
  }

  .where-card,
  .where-card-second {
    padding: 34px 20px;
    border-radius: 22px;
  }

  .where-card-second h3,
  .where-heading-large {
    font-size: 30px;
  }

  .where-list li,
  .where-list-large li,
  .security-list li {
    font-size: 17px;
  }

  .reception-content li {
    font-size: 20px;
  }

  .final-cta-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 380px) {
  .logo {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .btn-primary,
  .btn-outline {
    font-size: 16px;
    padding: 16px 22px;
  }

  .problem-container h2,
  .where-title,
  .why-title,
  .pricing-title {
    font-size: 30px;
  }
}


/* ==========================================================
   RESPONSIVE VIDEO POPUP
   Opens from video thumbnail and "Bekijk de video (2 min)" button.
========================================================== */

.video-wrap.video-popup-trigger {
  cursor: pointer;
}

body.video-modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 22, 0.76);
  backdrop-filter: blur(8px);
}

.video-modal-dialog {
  position: relative;
  width: min(1100px, 100%);
  background: #ffffff;
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  z-index: 1;
  animation: videoPopupIn 0.28s ease both;
}

.video-modal-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.video-modal-frame video,
.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
  outline: none;
}

.video-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #071216;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
  transition: transform 0.25s ease, background 0.25s ease;
  z-index: 2;
}

.video-modal-close:hover {
  transform: scale(1.06);
  background: #f4f6f7;
}

@keyframes videoPopupIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .video-modal {
    padding: 16px;
  }

  .video-modal-dialog {
    width: 100%;
    border-radius: 20px;
    padding: 10px;
  }

  .video-modal-frame {
    border-radius: 14px;
  }

  .video-modal-close {
    top: -14px;
    right: -10px;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .video-modal {
    padding: 10px;
  }

  .video-modal-dialog {
    border-radius: 16px;
    padding: 8px;
  }

  .video-modal-frame {
    border-radius: 12px;
  }
}


/* ==========================================================
   VIMEO FULL SIZE FIX
   Forces Vimeo player to fill the complete popup area.
========================================================== */

.video-modal-dialog {
  width: min(1120px, calc(100vw - 64px)) !important;
  max-width: 1120px !important;
}

.video-modal-frame {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  min-height: 0 !important;
  background: #000 !important;
  overflow: hidden !important;
}

.video-modal-frame iframe,
.video-modal-frame .popup-vimeo-iframe {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  border: 0 !important;
  background: #000 !important;
  object-fit: cover !important;
}

@media (max-width: 768px) {
  .video-modal-dialog {
    width: calc(100vw - 28px) !important;
  }

  .video-modal {
    padding: 14px !important;
  }
}

@media (max-width: 480px) {
  .video-modal-dialog {
    width: calc(100vw - 20px) !important;
  }

  .video-modal {
    padding: 10px !important;
  }
}

/* Request demo POPUP */
.req_demo_popup { position:fixed; left:0; top:0; display:none; z-index:9999; padding:15px 20px; background-color:#0b4e9a; border:7px solid #e1e1e1; border-radius:15px; -moz-border-radius:15px; -webkit-border-radius:15px; khtml-border-radius:15px; width: 450px; height: auto;}

.req_demo_popup .req_demo_close { font-size: 20px; font-weight: bold; color: #ff0000; float: right; cursor: pointer; margin: 0; }
.req_demo_popup .req_demo_content { padding: 10px; color:#FFFFFF;}
.req_demo_popup .req_demo_content input { margin-bottom: 10px; width: 100%; height: 40px; border:none; padding: 3px 10px;;  border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; color: #000; font-size: 14px; margin-top:5px;}
.req_demo_popup .req_demo_content input:focus{outline:none;}
.req_demo_popup .req_demo_content .button {font-size:20px!important; width:100%; display:block; padding: 10px 20px; text-align: center; margin: 12px 5px 0 0; color: #ffffff; background: #ed7d31; cursor: pointer; font-size: 12px; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px;}


@media screen and (min-width:100px) and (max-width:767px){
.req_demo_popup{max-width: 300px!important; left: 0!important; right: 0!important; margin: auto!important;}
}

#imgLoader, #imgLoaderCon, #imgLoaderReq, #imgLoader1, #imgLoader2, #imgLoader22 {display: none;}


#msg_common {
top: 5px;
    left: 559.391px;
    display: none;     
    
    position: fixed;
    font-family: Verdana, Geneva, sans-serif;
    color: #ffffff;
    font-size: 16px;
    padding: 10px;
    background: #E46F11;
    z-index: 10000;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;    
}
 #msg_common #msg_common_title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

/* Mobile menu closed by default */
.mobile-menu-btn {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    border: 0;
    font-size: 28px;
    color: #ffffff;
    z-index: 10001;
  }

  .header {
    position: relative;
  }

  .nav {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 9999;
  }

  .header.menu-open .nav {
    display: flex !important;
  }
}