@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600;700&display=swap");
@font-face {
  font-family: "behind_the_ninetiessemibold";
  src:
    url("behind-the-nineties-smbd-webfont.woff2") format("woff2"),
    url("behind-the-nineties-smbd-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
:root {
  --primary: #fa3e5d;
  --header-bg: #2b3240;
  --footer-bg: #2b3240;
  --bg-color: #f6f7f9;
  --text-dark: #202b3c;
  --text-dark-theme: #637494;
  --text-label: #3d4b66;
  --text-gray: #6b7280;
  --border-color: #E2E8F0;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  --font-heading: "behind_the_ninetiessemibold", serif;
  --font-body: "Inter", sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
hr { 
    opacity: 1;
}
/* Header */
header {
  /* background-color: var(--header-bg); */
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-header {
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.8;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition:
    background-color 0.3s,
    transform 0.2s;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #e02f4b;
  color: #fff;
}

/* Progress Section */
.step-progress-wrapper {
  margin: 60px auto 40px;
  max-width: 600px;
}

.step-header {
  display: flex;
  justify-content: space-between;
  color: #3d4b66;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 8px;
}

.progress-bar-container {
  height: 4px;
  background-color: #e2e8f0;
  border-radius: 2px;
  width: 100%;
  position: relative;
}

.progress-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--primary);
  border-radius: 2px;
  width: 25%;
  /* Default, overridden inline */
}

/* Shared Card Styles */
.card-wrapper {
  box-shadow: var(--card-shadow);
  padding: 40px;
  margin: 0 auto 80px;
  max-width: 500px;
  margin-top: 115px;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.card-title-main {
  font-family: var(--font-heading);
  font-size: 52px;
  color: var(--header-bg);
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.card-subtitle {
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.5px;
}

/* Form Elements */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: #2b3a5a;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
}

.form-label span.req {
  color: var(--primary);
}

.form-control,
.form-select {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text-dark);
  font-family: inherit;
  transition: border-color 0.3s;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: #a0aec0;
}

.form-text {
  font-size: 11px;
  color: var(--text-gray);
  margin-top: 6px;
  display: block;
}

.checkbox-card {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #fafbfc;
  cursor: pointer;
  margin-bottom: 20px;
}

.checkbox-card input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.checkbox-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--header-bg);
  margin: 0 0 4px 0;
}

.checkbox-content p {
  font-size: 12px;
  color: var(--text-gray);
  margin: 0;
}

.btn-full {
  width: 100%;
  padding: 14px;
  font-size: 15px;
}

.back-link {
  display: block;
  margin-top: 20px;
  text-decoration: none;
  color: #3d4b66;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.5px;
}

.back-link:hover {
  color: var(--text-dark);
}
.back-link:hover svg path {
  fill: var(--text-dark);
}
.secure-text {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #718096;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

/* Footer */
footer {
  background-color: var(--footer-bg);
  color: #fff;
  padding: 30px 0;
  margin-top: auto;
}

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
}

.footer-desc {
  color: #bfbfbf;
  font-size: 14px;
  max-width: 250px;
  line-height: 1.6;
}

.footer-title {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.footer-bottom-links a {
  text-decoration: none;
  margin-left: 20px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

/* Specific to Image 1 */
.verified-icon {
  margin: 0 auto 20px;
}

.verified-icon svg {
  color: #fff;
  width: 35px;
  height: 35px;
}

.linkedin-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background-color: #0a66c2;
  border: 2px solid #fff;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.linkedin-badge svg {
  color: #fff;
  width: 14px;
  height: 14px;
}

/* Layout for Image 3 & 5 */
.two-col-layout {
  max-width: 900px;
  margin: 0 auto 80px;
}

.info-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  padding: 30px;
}

.info-card h3 {
  font-size: 18px;
  color: var(--header-bg);
  margin-bottom: 25px;
  font-weight: 700;
}

.included-list {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.5;
}

.check-icon {
  min-width: 20px;
  width: 20px;
  height: 20px;
  background-color: #e6f7f5;
  color: #38bdf8;
  /* close to teal */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.members-count {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.avatars {
  display: flex;
}

.avatars img:first-child {
  margin-left: 0;
}

.members-text {
  font-size: 12px;
  color: var(--text-gray);
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.guarantee-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--header-bg);
  line-height: 1.4;
}

.payment-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  padding: 30px;
  height: 100%;
}

.payment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.payment-header h3 {
  font-size: 18px;
  color: var(--header-bg);
  margin: 0;
  font-weight: 700;
}

.card-icons {
  display: flex;
  gap: 5px;
}

.card-icons img {
  height: 20px;
}

.payment-secure {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 10px;
  color: #a0aec0;
  margin-top: 10px;
  margin-bottom: 20px;
}

.payment-secure span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.info-alert {
  background-color: #f0f7ff;
  border: 1px solid #e0f0ff;
  border-radius: 6px;
  padding: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
}

.info-alert-icon {
  color: #3b82f6;
  margin-top: 2px;
}

.info-alert-text {
  font-size: 12px;
  color: #3b82f6;
  line-height: 1.5;
}

.terms-text {
  text-align: center;
  font-size: 11px;
  color: var(--text-gray);
  margin-top: 15px;
  line-height: 1.6;
}

.terms-text a {
  color: #3b82f6;
  text-decoration: none;
}

/* Image 4 Cards */
.welcome-cols {
  max-width: 900px;
  margin: 0 auto 40px;
}

.welcome-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  padding: 30px;
  text-align: center;
  height: 100%;
  position: relative;
}

.welcome-icon {
  width: 60px;
  height: 60px;
  background-color: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.welcome-icon.email {
  background-color: #e0f2fe;
  color: #38bdf8;
}

.welcome-icon.app {
  background-color: #ffe4e6;
  color: #fb7185;
}

.welcome-icon.check {
  background-color: #ecfdf5;
  color: #10b981;
}

.welcome-icon img {
  width: 24px;
}

.welcome-card h3 {
  font-size: 16px;
  color: var(--header-bg);
  margin-bottom: 15px;
  font-weight: 700;
}

.welcome-card p {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 0;
  line-height: 1.5;
}

.welcome-card a {
  text-decoration: none;
  font-weight: 500;
}

.rec-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.store-btn {
  background-color: #000;
  color: #fff;
  border-radius: 6px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  text-align: left;
  justify-content: center;
}

.store-btn svg {
  width: 20px;
  height: 20px;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
}

.store-btn-text span:first-child {
  font-size: 8px;
  text-transform: uppercase;
}

.store-btn-text span:last-child {
  font-size: 14px;
  font-weight: 600;
}

.receive-list {
  text-align: left;
  list-style: none;
}

.receive-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--text-dark);
}

.receive-list .check-icon {
  width: 25px;
  height: 25px;
  background-color: transparent;
  color: #10b981;
}

.welcome-action {
  text-align: center;
  max-width: 400px;
  margin: 0 auto 80px;
}

.return-link {
  display: block;
  margin-top: 20px;
  color: #3b82f6;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
}

.questions-text {
  margin-top: 40px;
  color: #6b7280;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.5px;
}

.questions-text a {
  color: #3b82f6;
  text-decoration: none;
}
.logo-main img {
  width: 180px;
}
/* Responsive Styles */
@media (max-width: 767px) {
  .logo-main img {
    width: 140px;
  }
  .nav-links {
    gap: 15px;
    padding: 15px 0;
  }

  .card-wrapper {
    padding: 25px 20px !important;
    margin-bottom: 40px;
  }

  .card-title-main {
    font-size: 32px !important;
    margin-bottom: 0;
  }

  .step-progress-wrapper {
    margin: 30px auto 20px;
  }

  .header-container {
    padding: 0 15px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    font-size: 14px;
  }

  .footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .footer-bottom-links a {
    margin-left: 0 !important;
    font-size: 14px;
  }

  .payment-card,
  .info-card,
  .welcome-card {
    padding: 20px;
  }
}
.form-check-input {
  margin-top: 0;
}
.form-check-input:checked {
  background-color: #ff4d4f;
  border-color: #ff4d4f;
}
.form-check-input:focus {
  border-color: #ff4d4f;
  box-shadow: 0 0 0 0.25rem rgb(253 102 100 / 33%);
}
.accordion-csm .accordion-item {
  background: #f8fafc;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #e0e9f1;
  border-radius: 12px;
}
.accordion-header {
  margin-bottom: 0;
}
button.accordion-button {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
}
.accordion-body p {
  margin-top: 10px;
  margin-bottom: 0px;
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}
.content-page {
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  word-break: break-all;
}
.content-page-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #1e293b;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 700;
}

.logo-main {
  text-align: center;
}

h4.form-label {
  color: #3d4b66;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
form p {
  color: rgba(61, 75, 102, 0.8);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
form em {
  color: #6b7280;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
}
form hr {
  margin: 1rem 0;
  color: #f3f4f6;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 1;
}
.verification-card p.sub-title {
  color: rgba(61, 75, 102, 0.8);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
.review-box ul li {
  color: #3d4b66;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 8px;
}
.review-box ul li::marker {
  color: #0794f2;
}

.review-box ul {
  padding-left: 1.4rem;
}

/* Login css */

.login-subtitle {
  letter-spacing: -0.5px;
  color: #718096;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.75px;
}
.login-title-main {
  color: #2b3a5a;
  text-align: center;
  font-family: "Behind The Nineties";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 88.889% */
  margin-bottom: 15px;
}
.login-subtitle strong {
  border-radius: 4px;
  background: #f3f4f6;
  display: inline-block;
  padding: 0 4px;
  color: #2b3a5a;
  font-weight: 500;
}
.resendcode {
  color: #3b82f6;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}
#resend-otp-timer {
  color: rgb(113, 128, 150);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.login-back-link {
    color: #718096;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    display: inline-block;
    text-align: center;
    width: 100%;
    text-decoration: none;
}
.subscription-label {
    color: #A0AEC0;
    text-align: right; 
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.subscription-display {
    color: #2B3A5A;
    text-align: right; 
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.subscription-box {
    display: flex;
    padding: 28px 20px 20px 20px;
    flex-direction: column;
    gap: 6.8px;
    align-self: stretch;
     border-radius: 12px;
}

.subscription-box.no-subs { 
    border: 1px dashed #FECACA;
    background: #FEF2F2;
}
.subscription-box.no-subs h2{color: #FF4765;}
.subscription-box.no-subs p{color: #991B1B;}
.subscription-box.active-subs h2{color: #2ECA7F;}
.subscription-box.active-subs p{color: #166534;}
.subscription-box.active-subs { 
border: 1px dashed #BBF7D0;
background: #F0FDF4;
}
.subscription-box h2 {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
}

.subscription-box p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.75px; /* 162.5% */
    margin-bottom: 0px;
}

.subscription-box button {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}
.logout-btn {
    border-radius: 8px;
    background: #F3F4F6;
    padding: 12px 0;
    width: 100%;
    border: none;
    color: #2B3A5A;
    text-align: center; 
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}