/* =========================================================
   Typography
   ========================================================= */
h1,
h2,
h3 {
  font-family: "Lato", sans-serif;
  font-weight: bold;
}

p {
  font-family: "Poppins", sans-serif;
}

/* =========================================================
   Body Background
   ========================================================= */
body {
  /* background: black !important; */
  /* background: url(Images/BackgrounImage.png); */
  background: url(compressed-images/backgrounImagepartial.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

/* =========================================================
   Banner
   ========================================================= */
.insights-banner {
  background: linear-gradient(
    90deg,
    #a749a2 0%,
    #e91e63 45%,
    #ff5722 85%,
    #ff8a50 100%
  );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  position: relative;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.banner-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 4px;
}

.banner-text {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
}

.btn-chrome {
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  margin-left: 20px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 1, 2, 0.5);
  transition: transform 0.2s ease;
}

.btn-chrome:hover {
  transform: scale(1.02);
}

.close-btn {
  position: absolute;
  right: 40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

/* =========================================================
   Hero Section
   ========================================================= */
.hero-title {
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.7;
  margin-top: 32px;
}
/* ===============================
   HERO SECTION – CENTER ALIGN
   =============================== */

.insights-hero {
  min-height: calc(100vh - 120px); /* full screen minus navbar/banner */
  display: flex;
  align-items: center;             /* ✅ vertical center */
}


.hero-text {
  padding-top: 20px;
  font-size: 1.2rem;
  color: #cfcfcf;
  line-height: 1.9;
}

.hero-illustration {
  margin-top: 0px;
  max-width: 260px;
}

/* =========================================================
   CSS Variables
   ========================================================= */
:root {
  --outer-bg: #222e35;
  --inner-bg: #121417;
  --input-bg: #1a1d21;
  --text-main: #ffffff;
  --text-muted: #aebbc3;
  --accent-green: #22c55e;
}

/* =========================================================
   Assessment Card
   ========================================================= */
.assessment-card {
  background: linear-gradient(
    to bottom,
    #2c3839 0%,
    #1f2c35 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 50px;
  max-width: 1500px;
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  margin-top: 80px;
}

.assessment-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.assessment-subtitle {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* =========================================================
   Inner Form
   ========================================================= */
.inner-form-card {
  background-color: var(--inner-bg);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 30px;
  margin-bottom: 25px;
}

.form-label-header {
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.form-subtext {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

/* =========================================================
   Input Field
   ========================================================= */
.input-group-custom {
  position: relative;
  max-width: 350px;
}

.custom-input {
  width: 100%;
  background: var(--inner-bg);
  border: 1px solid #3d444d;
  border-radius: 8px;
  padding: 12px 12px 12px 45px;
  color: white;
}

.input-icon-img {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

/* =========================================================
   Checkbox
   ========================================================= */
.form-check-group {
  display: flex;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}

.checkbox-wrapper input {
  display: none;
}

.checkbox-ui {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #16c21f;
  background: transparent;
  position: relative;
  flex-shrink: 0;
  margin-top: 3px;
}

.checkbox-ui::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.checkbox-wrapper input:checked + .checkbox-ui {
  background: #1b8f25;
}

.checkbox-wrapper input:checked + .checkbox-ui::after {
  opacity: 1;
}

.check-label-title {
  font-size: 17px;
  font-weight: 500;
  color: #e6e6e6;
}

.check-description {
  font-size: 11px;
  color: #8b93a1;
  margin-top: 6px;
  line-height: 1.6;
}

.text-green {
  color: #16c25f;
  cursor: pointer;
}

.privacy-link {
  color: #16c25f;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.privacy-link:hover {
  color: #1ed96a;
  text-decoration: underline;
}

/* =========================================================
   Secure Footer
   ========================================================= */
.secure-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 5px;
}

.secure-text {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* =========================================================
   Footer Styles
   ========================================================= */
.footer {
  padding: 20px 40px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-icons a {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-icons a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.footer-icons img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-icons .icon-youtube {
  width: 28px;
  height: 28px;
}
}

.lock-icon {
  width: 9px;
  height: 9px;
  margin-right: 6px;
  opacity: 0.8;
  object-fit: contain;
  flex-shrink: 0;
  align-self: center;
}

/* =========================================================
   Start Analysis Button
   ========================================================= */
/* =========================================================
   Start Analysis Button – FIXED
   ========================================================= */

.start-analysis-wrapper {
  display: flex;
  justify-content: flex-start; /* ✅ ALWAYS LEFT */
  margin-top: 24px;
}

.start-analysis-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 16%;
  min-width: 220px; /* keeps button readable */
  gap: 10px;
  padding: 16px 24px;

  background-color: #ffffff;
  color: #000000;
  border-radius: 50px;

  font-size: 16px;
  font-weight: 700;
  cursor: pointer;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.start-analysis-btn:hover {
  transform: translateY(-1px);
}

.start-analysis-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-button-svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.start-analysis-btn:hover .hero-button-svg {
  transform: translateX(3px);
}


/* =========================================================
   Marquee
   ========================================================= */
.marquee-wrapper {
  margin-top: 30px;
  height: 54px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(
    to right,
    #1c1c1c 0%,
    #646262 25%,
    #626060 50%,
    #625f5f 75%,
    #1c1c1c 100%
  );
}

.marquee-container {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
}

.marquee-item strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.marquee-logo img {
  height: 40px;
  width: auto;
  display: block;
}

@keyframes marquee {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* =========================================================
   CTA Section
   ========================================================= */
.app-cta {
  background: url("images/1-hero-and-nav/MentacyAdBG.png") no-repeat center center;
  background-size: cover;
  border-radius: 28px;
  padding: 0px 20px 0 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-left: 100px;
  margin-right: 100px;
}

.app-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.012) 40%,
    rgba(107, 22, 22, 0.05) 60%,
    transparent 75%
  );
  z-index: 1;
}

.cta-top-logo {
  position: absolute;
  top: 30px;
  left: 40px;
  z-index: 3;
}

.cta-top-logo img {
  height: 35px;
}

.cta-text-content,
.cta-image-container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-weight: 800;
  font-size: 2.3rem;
  margin-top: 140px;
  margin-bottom: 28px;
  background: linear-gradient(
    to right,
    #256f92 0%,
    #0e3547 40%,
    #0b2c47 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.app-cta .cta-description {
  font-size: 1.3rem;
  max-width: 480px;
  line-height: 1.5;
  margin-bottom: 80px;
}

.cta-description .line-1 {
  color: #1a1818 !important;
  display: inline-block;
  white-space: nowrap;
}

.cta-description .line-2 {
  color: #1a1818 !important;
  display: block;
}

.store-buttons {
  margin-top: 100px;
}

.store-link:hover {
  transform: translateY(-2px);
}

.cta-text-content {
  padding-top: 40px;
}

.cta-image-container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

.phone-mockup {
  height: 520px;
  width: auto;
  transform: translate(15px, 20px);
}
/* Desktop / Large screens */
.cta-description .line-1 {
  display: inline-block;
}

.cta-description .line-2 {
  display: block;
}

/* =========================================================
   Responsive
   ========================================================= */

.navbar{
  background-image: linear-gradient(170deg, #000000 0%, #131313 100%);
  position: relative;
}

.navbar-mentacy-logo {
  width: 130px;                 /* compact icon */
  height: auto;
  margin-left: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.navbar-toggle {
  border: none;
  box-shadow: none;
}

.navbar-toggle:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggle svg {
  width: 26px;
  height: 26px;
}


