/* FUNNELOR HEADER STYLES */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
}


.fn-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(11, 19, 43, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.fn-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fn-logo img {
  height: 48px;
}

.fn-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.fn-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  transition: 0.3s ease;
  position: relative;
}

.fn-nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #00C2A8;
  transition: 0.3s;
}

.fn-nav a:hover::after {
  width: 100%;
}

.fn-cta .fn-btn {
  background: #00C2A8;
  color: #0B132B;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.fn-cta .fn-btn:hover {
  background: #00e6c3;
}

/* MOBILE TOGGLE */

.fn-mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.fn-mobile-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* MOBILE MENU */

.fn-mobile-menu {
  display: none;
  flex-direction: column;
  background: #0B132B;
  padding: 20px;
  gap: 15px;
}

.fn-mobile-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.fn-mobile-btn {
  background: #00C2A8;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  color: #0B132B !important;
  font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .fn-nav,
  .fn-cta {
    display: none;
  }

  .fn-mobile-toggle {
    display: flex;
  }

  .fn-mobile-menu.active {
    display: flex;
  }
}

/* ================= HERO SECTION ================= */

.fn-hero {
  background: linear-gradient(135deg, #0B132B 0%, #1C2541 100%);
  color: white;
  padding: 90px 50px 60px;
  position: relative;
  overflow: hidden;
}

.fn-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}


.fn-hero-left {
  flex: 1;
  min-width: 300px;
}

.fn-hero-left h1 {
  font-size: 64px;
  font-weight: 800;
  /* line-height: 1.05; */
  /* letter-spacing: -1px; */
  margin-bottom: 24px;
}


.fn-hero-left h1 span {
  color: #00C2A8;
  display: block;
}


.fn-hero-left p {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 520px;
}

.fn-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.fn-primary-btn {
  background: #00C2A8;
  color: #0B132B;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.fn-primary-btn:hover {
  background: #00e6c3;
}

.fn-secondary-btn {
  border: 1px solid #00C2A8;
  color: #00C2A8;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.fn-secondary-btn:hover {
  background: #00C2A8;
  color: #0B132B;
}

.fn-hero-badge {
  font-size: 14px;
  color: #94a3b8;
}

/* DASHBOARD MOCK */

.fn-hero-right {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  border-radius: 10px;
  background: transparent;
}


.fn-dashboard-card {
  background: #111827;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.fn-dash-header {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.red { background: #ef4444; }
.yellow { background: #facc15; }
.green { background: #22c55e; }

.fn-dash-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fn-flow-box {
  background: #1F2937;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: #e5e7eb;
}

.fn-flow-box.highlight {
  background: #00C2A8;
  color: #0B132B;
  font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .fn-hero {
    padding: 80px 20px 60px;
  }

  .fn-hero-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 40px;
  }

  .fn-hero-left {
    width: 100%;
  }

  .fn-hero-left h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .fn-hero-left p {
    margin: 0 auto 30px auto;
    max-width: 100%;
  }

  .fn-hero-buttons {
    justify-content: center;
  }

  .fn-hero-badge {
    text-align: center;
  }

  .fn-hero-right {
    width: 100%;
    padding: 0;
    background: transparent;
  }
}

/* ================= PROBLEM SECTION ================= */

.fn-problem {
  background: #ffffff;
  padding: 90px 20px;
}

.fn-problem-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.fn-problem-left {
  flex: 1;
  min-width: 300px;
}

.fn-problem-left h2 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.1;
  color: #0B132B;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.fn-problem-left h2 span {
  color: #00C2A8;
}

.fn-problem-left p {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.7;
  max-width: 480px;
}

.fn-problem-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fn-problem-card {
  background: #f9fafb;
  padding: 22px 24px;
  border-radius: 10px;
  font-weight: 600;
  color: #0B132B;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fn-problem-card span {
  font-weight: 400;
  font-size: 14px;
  color: #6b7280;
}

.fn-problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .fn-problem-container {
    flex-direction: column;
    gap: 50px;
  }

  .fn-problem-left h2 {
    font-size: 34px;
  }

}

/* ================= FRAMEWORK SECTION ================= */

.fn-framework {
  background: #0B132B;
  padding: 100px 20px;
  color: white;
}

.fn-framework-container {
  max-width: 1100px;
  margin: auto;
}

.fn-framework-header {
  text-align: center;
  margin-bottom: 70px;
}

.fn-framework-header h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
}

.fn-framework-header p {
  color: #a8b2d1;
  font-size: 18px;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

/* STEPS */

.fn-framework-steps {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  flex-wrap: wrap;
}

.fn-step {
  flex: 1;
  min-width: 240px;
  background: #111827;
  padding: 30px 25px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s ease;
}

.fn-step:hover {
  transform: translateY(-6px);
  border-color: #00C2A8;
}

.fn-step-number {
  font-size: 18px;
  font-weight: 700;
  color: #00C2A8;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.fn-step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.fn-step p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .fn-framework-steps {
    flex-direction: column;
    gap: 25px;
  }

  .fn-framework-header h2 {
    font-size: 32px;
  }

}

/* ================= INTEGRATION SECTION ================= */

.fn-integration {
  background: #ffffff;
  padding: 100px 20px;
}

.fn-integration-container {
  max-width: 1100px;
  margin: auto;
}

.fn-integration-header {
  text-align: center;
  margin-bottom: 80px;
}

.fn-integration-header h2 {
  font-size: 44px;
  font-weight: 800;
  color: #0B132B;
  margin-bottom: 15px;
}

.fn-integration-header p {
  font-size: 18px;
  color: #4b5563;
  max-width: 600px;
  margin: auto;
}

/* GRID LAYOUT */

.fn-integration-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT SOURCES */

.fn-source-list,
.fn-output-list {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fn-source-box,
.fn-output-box {
  background: #f3f4f6;
  padding: 20px;
  border-radius: 10px;
  font-weight: 600;
  color: #0B132B;
  text-align: center;
  transition: 0.3s ease;
}

.fn-source-box:hover,
.fn-output-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* CENTER ENGINE */

.fn-engine {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fn-engine-core {
  background: #0B132B;
  color: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.fn-engine-core span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 8px;
  color: #00C2A8;
}

.fn-output-box.highlight {
  background: #00C2A8;
  color: #0B132B;
  font-weight: 700;
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .fn-integration-grid {
    flex-direction: column;
    gap: 50px;
  }

  .fn-integration-header h2 {
    font-size: 32px;
  }

}

/* ================= SECURITY SECTION ================= */

.fn-security {
  background: #0B132B;
  padding: 110px 20px;
  color: white;
}

.fn-security-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  flex-wrap: wrap;
}

.fn-security-left {
  flex: 1;
  min-width: 300px;
}

.fn-security-left h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.fn-security-left h2 span {
  color: #00C2A8;
}

.fn-security-left p {
  font-size: 18px;
  color: #a8b2d1;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 520px;
}

.fn-security-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: #cbd5e1;
}

.fn-security-points li {
  font-weight: 500;
}

/* RIGHT CARD */

.fn-security-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.fn-security-card {
  background: #111827;
  padding: 40px 30px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  width: 100%;
  max-width: 400px;
}

.fn-security-badge {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #00C2A8;
  margin-bottom: 30px;
}

.fn-security-flow {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #ffffff;
}

.fn-security-flow span {
  color: #00C2A8;
  font-size: 22px;
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .fn-security-container {
    flex-direction: column;
    gap: 60px;
  }

  .fn-security-left h2 {
    font-size: 32px;
  }

}

/* ================= ROI SECTION ================= */

.fn-roi {
  background: #ffffff;
  padding: 110px 20px;
}

.fn-roi-container {
  max-width: 1100px;
  margin: auto;
}

.fn-roi-header {
  text-align: center;
  margin-bottom: 80px;
}

.fn-roi-header h2 {
  font-size: 44px;
  font-weight: 800;
  color: #0B132B;
  margin-bottom: 15px;
}

.fn-roi-header p {
  font-size: 18px;
  color: #4b5563;
  max-width: 650px;
  margin: auto;
  line-height: 1.7;
}

/* GRID */

.fn-roi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.fn-roi-card {
  background: #f9fafb;
  padding: 35px 30px;
  border-radius: 14px;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.fn-roi-card:hover {
  transform: translateY(-6px);
  border-color: #00C2A8;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.fn-roi-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0B132B;
  margin-bottom: 12px;
}

.fn-roi-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

.fn-roi-card.highlight {
  background: #00C2A8;
  color: #0B132B;
}

.fn-roi-card.highlight h3,
.fn-roi-card.highlight p {
  color: #0B132B;
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .fn-roi-grid {
    grid-template-columns: 1fr;
  }

  .fn-roi-header h2 {
    font-size: 32px;
  }

}

/* ================= IDEAL CLIENT SECTION ================= */

.fn-ideal {
  background: #0B132B;
  padding: 110px 20px;
  color: white;
}

.fn-ideal-container {
  max-width: 1100px;
  margin: auto;
}

.fn-ideal-header {
  text-align: center;
  margin-bottom: 80px;
}

.fn-ideal-header h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 15px;
}

.fn-ideal-header p {
  font-size: 18px;
  color: #a8b2d1;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

/* GRID */

.fn-ideal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.fn-ideal-card {
  background: #111827;
  padding: 35px 30px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.3s ease;
}

.fn-ideal-card:hover {
  transform: translateY(-6px);
  border-color: #00C2A8;
}

.fn-ideal-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.fn-ideal-card p {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.6;
}

.fn-ideal-note {
  margin-top: 60px;
  text-align: center;
  font-size: 16px;
  color: #00C2A8;
  font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .fn-ideal-grid {
    grid-template-columns: 1fr;
  }

  .fn-ideal-header h2 {
    font-size: 32px;
  }

}

/* ================= FNR PROCESS SECTION ================= */

.fnr-process-section {
  background: #ffffff;
  padding: 120px 20px;
}

.fnr-process-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* Header */

.fnr-process-header {
  text-align: center;
  margin-bottom: 90px;
}

.fnr-process-header h2 {
  font-size: 46px;
  font-weight: 800;
  color: #0B132B;
  margin-bottom: 12px;
}

.fnr-process-header p {
  font-size: 18px;
  color: #4b5563;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

/* Timeline */

.fnr-process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Horizontal connector line */

.fnr-process-timeline::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e5e7eb;
  z-index: 0;
}

/* Step */

.fnr-process-step {
  width: 20%;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Circle */

.fnr-process-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 22px;
  color: #0B132B;
  transition: all 0.3s ease;
}

/* Title */

.fnr-process-step h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0B132B;
}

/* Number */

.fnr-process-step span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #94a3b8;
}

/* Hover effect */

.fnr-process-step:hover .fnr-process-circle {
  background: #00C2A8;
  color: #0B132B;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,194,168,0.3);
}

/* Active final step */

.fnr-process-active .fnr-process-circle {
  background: #00C2A8;
  color: #0B132B;
}

.fnr-process-active h4 {
  color: #00C2A8;
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {

  .fnr-process-timeline {
    flex-direction: column;
    gap: 60px;
  }

  .fnr-process-timeline::before {
    display: none;
  }

  .fnr-process-step {
    width: 100%;
  }

}

/* ================= FNR AUDIT SECTION ================= */

.fnr-audit-section {
  background: #0B132B;
  padding: 120px 20px;
  color: white;
}

.fnr-audit-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

/* LEFT */

.fnr-audit-left {
  flex: 1;
  min-width: 300px;
}

.fnr-audit-left h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.fnr-audit-left p {
  font-size: 18px;
  color: #a8b2d1;
  margin-bottom: 30px;
  line-height: 1.6;
}

.fnr-audit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fnr-audit-list li {
  margin-bottom: 14px;
  font-size: 15px;
  color: #cbd5e1;
  font-weight: 500;
}

/* RIGHT CARD */

.fnr-audit-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.fnr-audit-card {
  background: #111827;
  padding: 50px 40px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  max-width: 420px;
  width: 100%;
}

.fnr-audit-price {
  font-size: 48px;
  font-weight: 800;
  color: #00C2A8;
  margin-bottom: 10px;
}

.fnr-audit-price span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  margin-top: 8px;
}

.fnr-audit-card p {
  font-size: 14px;
  color: #a8b2d1;
  margin: 25px 0 35px 0;
  line-height: 1.6;
}

.fnr-audit-btn {
  display: inline-block;
  background: #00C2A8;
  color: #0B132B;
  padding: 16px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.fnr-audit-btn:hover {
  background: #00e6c3;
  transform: translateY(-3px);
}

/* MOBILE */

@media (max-width: 992px) {

  .fnr-audit-wrapper {
    flex-direction: column;
    gap: 60px;
  }

  .fnr-audit-left h2 {
    font-size: 32px;
  }

}
/* ================= FNR FAQ SECTION ================= */

.fnr-faq-section {
  background: #ffffff;
  padding: 120px 20px;
}

.fnr-faq-wrapper {
  max-width: 900px;
  margin: auto;
}

/* Header */

.fnr-faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.fnr-faq-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0B132B;
  margin-bottom: 10px;
}

.fnr-faq-header p {
  font-size: 16px;
  color: #4b5563;
}

/* FAQ Items */

.fnr-faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 0;
}

.fnr-faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #0B132B;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0;
}

.fnr-faq-question span {
  font-size: 20px;
  color: #00C2A8;
  transition: 0.3s ease;
}

.fnr-faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  transition: max-height 0.4s ease;
  margin-top: 10px;
}

.fnr-faq-item.active .fnr-faq-answer {
  max-height: 200px;
}

.fnr-faq-item.active .fnr-faq-question span {
  transform: rotate(45deg);
}

/* ================= FNR FINAL CTA SECTION ================= */

.fnr-final-section {
  background: #0B132B;
  padding: 140px 20px;
  text-align: center;
  color: white;
}

.fnr-final-wrapper {
  max-width: 800px;
  margin: auto;
}

.fnr-final-wrapper h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.fnr-final-wrapper p {
  font-size: 18px;
  color: #a8b2d1;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* ACTIONS */

.fnr-final-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.fnr-final-primary {
  background: #00C2A8;
  color: #0B132B;
  padding: 18px 36px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.fnr-final-primary:hover {
  background: #00e6c3;
  transform: translateY(-4px);
}

.fnr-final-secondary {
  border: 1px solid #00C2A8;
  color: #00C2A8;
  padding: 18px 36px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.fnr-final-secondary:hover {
  background: #00C2A8;
  color: #0B132B;
}

/* MOBILE */

@media (max-width: 992px) {

  .fnr-final-wrapper h2 {
    font-size: 32px;
  }

  .fnr-final-wrapper p {
    font-size: 16px;
  }

}

/* ================= FNR FOOTER ================= */

.fnr-footer {
  background: #111827;
  color: #cbd5e1;
  padding: 100px 20px 40px;
}

.fnr-footer-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

/* Columns */

.fnr-footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.fnr-footer-logo {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #00C2A8;
}

.fnr-footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

.fnr-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fnr-footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
}

.fnr-footer-col ul li a {
  text-decoration: none;
  color: #94a3b8;
  transition: 0.3s ease;
}

.fnr-footer-col ul li a:hover {
  color: #00C2A8;
}

/* Bottom */

.fnr-footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.fnr-footer-bottom p {
  font-size: 13px;
  margin-bottom: 10px;
}

.fnr-footer-disclaimer {
  color: #94a3b8;
  font-size: 12px;
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 992px) {

  .fnr-footer-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

}

@media (max-width: 600px) {

  .fnr-footer-wrapper {
    grid-template-columns: 1fr;
  }

}

.fnr-legal-section {
  padding: 100px 40px;
}

.fnr-legal-wrapper {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 60px 50px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

/* Header */

.fnr-legal-header {
  margin-bottom: 50px;
}

.fnr-legal-header h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
}

.fnr-legal-header p {
  font-size: 14px;
  color: #6b7280;
}

/* Content */

.fnr-legal-content h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 700;
}

.fnr-legal-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #374151;
}

.fnr-legal-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.fnr-legal-content ul li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #374151;
}

/* Responsive */

@media (max-width: 768px) {

  .fnr-legal-wrapper {
    padding: 40px 25px;
  }

  .fnr-legal-header h1 {
    font-size: 28px;
  }

}

/* ================= FNR PRIVACY POLICY SECTION ================= */

.fnr-privacy-section {
  background: #f9fafb;
  padding: 100px 20px;
}

.fnr-privacy-wrapper {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 60px 50px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

/* Header */

.fnr-privacy-header {
  margin-bottom: 50px;
}

.fnr-privacy-header h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0B132B;
}

.fnr-privacy-header p {
  font-size: 14px;
  color: #6b7280;
}

/* Content */

.fnr-privacy-content h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #0B132B;
}

.fnr-privacy-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #374151;
}

.fnr-privacy-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.fnr-privacy-content ul li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #374151;
}

/* Responsive */

@media (max-width: 768px) {

  .fnr-privacy-wrapper {
    padding: 40px 25px;
  }

  .fnr-privacy-header h1 {
    font-size: 28px;
  }

}

/* ================= FNR NDA SECTION ================= */

.fnr-nda-section {
  background: #f9fafb;
  padding: 100px 20px;
}

.fnr-nda-wrapper {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 60px 50px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

/* Header */

.fnr-nda-header {
  margin-bottom: 50px;
}

.fnr-nda-header h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0B132B;
}

.fnr-nda-header p {
  font-size: 14px;
  color: #6b7280;
}

/* Content */

.fnr-nda-content h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #0B132B;
}

.fnr-nda-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #374151;
}

.fnr-nda-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.fnr-nda-content ul li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #374151;
}

/* Responsive */

@media (max-width: 768px) {

  .fnr-nda-wrapper {
    padding: 40px 25px;
  }

  .fnr-nda-header h1 {
    font-size: 28px;
  }

}
/* ================= FNR DISCLAIMER SECTION ================= */

.fnr-disclaimer-section {
  background: #f9fafb;
  padding: 100px 20px;
}

.fnr-disclaimer-wrapper {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 60px 50px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

/* Header */

.fnr-disclaimer-header {
  margin-bottom: 50px;
}

.fnr-disclaimer-header h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0B132B;
}

.fnr-disclaimer-header p {
  font-size: 14px;
  color: #6b7280;
}

/* Content */

.fnr-disclaimer-content h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #0B132B;
}

.fnr-disclaimer-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #374151;
}

/* Responsive */

@media (max-width: 768px) {

  .fnr-disclaimer-wrapper {
    padding: 40px 25px;
  }

  .fnr-disclaimer-header h1 {
    font-size: 28px;
  }

}

/* ================= FNR REFUND POLICY SECTION ================= */

.fnr-refund-section {
  background: #f9fafb;
  padding: 100px 20px;
}

.fnr-refund-wrapper {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 60px 50px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

/* Header */

.fnr-refund-header {
  margin-bottom: 50px;
}

.fnr-refund-header h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0B132B;
}

.fnr-refund-header p {
  font-size: 14px;
  color: #6b7280;
}

/* Content */

.fnr-refund-content h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #0B132B;
}

.fnr-refund-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #374151;
}

.fnr-refund-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.fnr-refund-content ul li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #374151;
}

/* Responsive */

@media (max-width: 768px) {

  .fnr-refund-wrapper {
    padding: 40px 25px;
  }

  .fnr-refund-header h1 {
    font-size: 28px;
  }

}

/* ================= FNR MODAL ================= */

.fnr-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,19,43,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.fnr-modal-container {
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  padding: 40px 35px;
  position: relative;
  box-shadow: 0 30px 70px rgba(0,0,0,0.3);
  max-height: 90vh;
  overflow-y: auto;
}

/* Close Button */

.fnr-modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
}

/* Header */

.fnr-modal-header {
  margin-bottom: 30px;
  text-align: center;
}

.fnr-modal-header h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #0B132B;
}

.fnr-modal-header p {
  font-size: 14px;
  color: #6b7280;
}

/* Form */

.fnr-modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fnr-input-group label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 5px;
  display: block;
}

.fnr-input-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  transition: 0.3s ease;
}

.fnr-input-group input:focus {
  border-color: #00C2A8;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,194,168,0.15);
}

/* Agreement */

.fnr-agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #4b5563;
  line-height: 1.5;
}

.fnr-agreement input {
  margin-top: 3px;
}

.fnr-agreement a {
  color: #00C2A8;
  text-decoration: none;
}

.fnr-agreement a:hover {
  text-decoration: underline;
}

/* Submit Button */

.fnr-submit-btn {
  margin-top: 10px;
  background: #00C2A8;
  color: #0B132B;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.fnr-submit-btn:hover {
  background: #00e6c3;
  transform: translateY(-2px);
}

/* Trigger Button */

.fnr-open-modal {
  background: #00C2A8;
  color: #0B132B;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

/* Mobile */

@media (max-width: 500px) {

  .fnr-modal-container {
    padding: 30px 20px;
  }

}
/* Remove underline from all Funnelor buttons */

.fn-btn,
.fn-btn:visited,
.fn-btn:hover,
.fn-btn:active {
  text-decoration: none;
}

/* ================= FNR WHATSAPP ADVANCED ================= */

.fnr-wa-wrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}

/* Floating Button */

.fnr-wa-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #00C2A8;
  color: #0B132B;
  border: none;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0,194,168,0.4);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pulse Animation */

.fnr-wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(0,194,168,0.4);
  animation: fnrPulse 2s infinite;
  z-index: -1;
}

@keyframes fnrPulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

/* Popup */

.fnr-wa-popup {
  width: 320px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  margin-bottom: 15px;
  display: none;
  overflow: hidden;
  font-size: 14px;
}

/* Header */

.fnr-wa-popup-header {
  background: #0B132B;
  color: white;
  padding: 15px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fnr-wa-popup-header strong {
  display: block;
  font-size: 14px;
}

.fnr-wa-status {
  font-size: 11px;
  color: #00C2A8;
}

.fnr-wa-popup-header button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

/* Body */

.fnr-wa-popup-body {
  padding: 20px 18px;
  color: #374151;
  line-height: 1.6;
}

/* CTA */

.fnr-wa-popup-btn {
  display: block;
  text-align: center;
  background: #00C2A8;
  color: #0B132B;
  padding: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.fnr-wa-popup-btn:hover {
  background: #00e6c3;
}

/* Mobile */

@media (max-width: 500px) {
  .fnr-wa-popup {
    width: 280px;
  }
}
