@charset "utf-8";
/* CSS Document */

.LogIn .btn {
    background-color: #201337 !important;
    padding: 8px;
    font-weight: 500;
}

.attention {
    animation: attentionPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.8);
}

@keyframes attentionPulse {
    0% {        
        transform: scale(1);
    }

    50% {        
        transform: scale(1.03);
    }

    100% {        
        transform: scale(1);
    }
}


#main-button{

	padding: 16px;
    font-size: 1.3rem;
  
}

#Domain{

    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
  
}

.aaa{
  
    background-color: #f4f2fd;
    padding: 10px;
    width: fit-content;
    border-radius: 10px;
    margin-bottom: 16px; 
  
  
}


.Main {
	background-color: rgb(0, 0, 0, .05);
    padding: 20px;
    border-radius: 20px;
      width: fit-content;
}

.LogIn {
    display: flex;
    gap: 10px;
}

.btn {
    cursor: pointer;
    font-size: 1rem;
    padding: 10px;
    border-radius: 12px;
    background-color: #6d3fc0 !important;
    color: white !important;
    font-weight: 700;
    border: none;
}

:root {
    --brand-purple: #6d3fc0;
    --brand-purple-dark: #5a32a3;
    --brand-purple-light: #f3eeff;
    --brand-purple-mid: #e8dcff;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: #0f0a1e;
    background: #fff;
    overflow-x: hidden;
}

/* ── NAVBAR ── */
.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-right: -2px;
}

.brand-icon img {
  width: 45px;   /* controls logo size inside box */
  height: 45px;
  object-fit: contain;
}

.navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #f0ebff;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.15rem;
    color: #0f0a1e !important;
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}


.brand-dot-new {
    color: var(--brand-purple);
    font-style: italic;
  margin-left: -.65em;
}

.nav-link {
    font-weight: 600;
    color: #5a5672 !important;
    transition: color .2s;
    padding: 6px 14px !important;
}

.nav-link:hover {
    color: var(--brand-purple) !important;
}

.btn-nav-login {
    font-weight: 600;
    color: #0f0a1e;
    background: transparent;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: color .2s;
    cursor: pointer;
}

.btn-nav-login:hover {
    color: var(--brand-purple);
}

.btn-primary-brand {
    background: var(--brand-purple);
    color: #fff !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 9px 22px;
    border: none;
    box-shadow: 0 4px 18px rgba(109, 63, 192, 0.3);
    transition: background .2s, box-shadow .2s, transform .15s;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.btn-primary-brand:hover {
    background: var(--brand-purple-dark);
    box-shadow: 0 6px 24px rgba(109, 63, 192, 0.4);
    transform: translateY(-1px);
    color: #fff !important;
}

.btn-outline-brand {
    background: transparent;
    color: var(--brand-purple);
    font-weight: 700;
    border-radius: 12px;
    padding: 11px 26px;
    border: 2px solid #ddd0ff;
    transition: background .2s, transform .15s;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.btn-outline-brand:hover {
    background: var(--brand-purple-light);
    transform: translateY(-1px);
}

/* ── HERO ── */

/* HERO SECTION CSS ONLY */

.hero-section{
  position:relative;
  overflow:hidden;
  padding:80px 0 60px;
}

.hero-bg-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center right;
  z-index:0;
}

.XXhero-section::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,.97) 0%,
    rgba(255,255,255,.92) 40%,
    rgba(255,255,255,.55) 70%,
    rgba(255,255,255,.08) 100%
  );
  z-index:1;
}

.hero-section .container{
  position:relative;
  z-index:2;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#f3eeff;
  color:#6d3fc0;
  font-weight:700;
  padding:6px 16px;
  border-radius:50px;
  margin-bottom:20px;
}

.hero-badge-dot{
  width:7px;
  height:7px;
  background:#6d3fc0;
  border-radius:50%;
  animation:pulse 2s infinite;
}

@keyframes pulse{
  0%,100%{opacity:1;transform:scale(1);}
  50%{opacity:.6;transform:scale(.85);}
}

.hero-h1{
  font-size:clamp(2.4rem,5vw,3.5rem);
  font-weight:900;
  line-height:1.08;
  margin-bottom:8px;
}

.hero-h2{
  font-size:clamp(2rem,4.5vw,3rem);
  font-weight:900;
  line-height:1.1;
  color:#6d3fc0;
  margin-bottom:22px;
}

.hero-lead{
  font-size:1.05rem;
  color:#5a5672;
  line-height:1.7;
  max-width:440px;
  margin-bottom:28px;
}

.hero-check-list{
  list-style:none;
  padding:0;
  margin-bottom:32px;
}

.hero-check-list li{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  margin-bottom:10px;
}

.hero-check-list li i{
  color:#6d3fc0;
  font-size:1.1rem;
}

.hero-note{
  color:#9490a8;
}

.steps-bar{
  border-top:1px solid #f0ebff;
  padding-top:36px;
  margin-top:48px;
      background-color: white;
  padding: 20px;
    border-radius: 10px;
}

.step-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.step-num{
  width:34px;
  height:34px;
  flex-shrink:0;
  background:#f3eeff;
  color:#6d3fc0;
  border-radius:50%;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
}

.step-item h6{
  font-weight:700;
  margin-bottom:2px;
}

.step-item p{
  color:#9490a8;
  margin:0;
}

@media (max-width:767px){
  .steps-bar{
    display:none;
  }

  .hero-bg-img{
    object-position:75% center;
  }
}

/* ── SECTION HEADERS ── */
.section-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-purple);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title .highlight {
    color: var(--brand-purple);
}

.section-sub {
    font-size: 1rem;
    color: #5a5672;
    max-width: 520px;
    margin: 0 auto;
}

/* ── PAIN POINTS ── */
.pain-section {
    background: linear-gradient(180deg, #f7f2ff 0%, #fff 100%);
    padding: 80px 0;
}

.pain-card {
    background: #fff;
    border: 1px solid #ede8ff;
    border-radius: 18px;
    padding: 28px 24px;
    height: 100%;
    transition: box-shadow .25s, border-color .25s, transform .25s;
}

.pain-card:hover {
    box-shadow: 0 8px 30px rgba(109, 63, 192, 0.1);
    border-color: rgba(109, 63, 192, 0.3);
    transform: translateY(-4px);
}

.pain-emoji {
    font-size: 2rem;
    margin-bottom: 14px;
}

.pain-q {
    font-weight: 600;
    color: #5a5672;
    font-style: italic;
    margin-bottom: 14px;
}

.pain-divider {
    width: 32px;
    height: 2px;
    background: var(--brand-purple);
    border-radius: 2px;
    margin-bottom: 12px;
    transition: width .4s;
}

.pain-card:hover .pain-divider {
    width: 100%;
}

.pain-ans {
    font-weight: 600;
    color: #0f0a1e;
}

/* ── FEATURES ── */
.features-section {
    padding: 80px 0;
    background: #fff;
}

.feature-card {
    background: #fff;
    border: 1px solid #f0eaff;
    border-radius: 18px;
    padding: 26px 22px;
    height: 100%;
    transition: box-shadow .25s, border-color .25s, transform .25s;
    cursor: default;
}

.feature-card:hover {
    box-shadow: 0 10px 36px rgba(109, 63, 192, 0.1);
    border-color: rgba(109, 63, 192, 0.25);
    transform: translateY(-4px);
}

.feature-icon {
    width: 46px;
    height: 46px;
    background: var(--brand-purple-light);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.25rem;
    color: var(--brand-purple);
    transition: background .25s, transform .25s;
}

.feature-card:hover .feature-icon {
    background: var(--brand-purple);
    color: #fff;
    transform: scale(1.1);
}

.feature-card h6 {
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    color: #5a5672;
    line-height: 1.6;
    margin: 0;
}

/* ── STATS ── */
.stats-section {
    background: var(--brand-purple);
    padding: 60px 0;
}

.stat-val {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
}

.stat-lbl {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f7f2ff 100%);
}

.testi-card {
    background: #fff;
    border: 1px solid #ede8ff;
    border-radius: 20px;
    padding: 28px;
    height: 100%;
    transition: box-shadow .25s, transform .25s;
}

.testi-card:hover {
    box-shadow: 0 12px 40px rgba(109, 63, 192, 0.1);
    transform: translateY(-4px);
}

.stars {
    color: var(--brand-purple);
    margin-bottom: 14px;
}

.testi-quote {
    font-weight: 500;
    color: #0f0a1e;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testi-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-name {
    font-weight: 700;
    margin-bottom: 1px;
}

.testi-role {
    color: #9490a8;
}

/* ── MID CTA ── */
.mid-cta-section {
    background: linear-gradient(90deg, #f3eeff 0%, #fff 100%);
    border-top: 1px solid #ede8ff;
    border-bottom: 1px solid #ede8ff;
    padding: 64px 0;
}

/* ── PRICING ── */
.pricing-section {
    padding: 80px 0;
    background: #fff;
}

.toggle-wrap {
    background: #f0eaff;
    border-radius: 50px;
    padding: 4px;
    display: inline-flex;
    gap: 4px;
}

.toggle-btn {
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    background: transparent;
    color: #5a5672;
    transition: all .2s;
}

.toggle-btn.active {
    background: #fff;
    color: #0f0a1e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.annual-badge {
    background: var(--brand-purple);
    color: #fff;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    margin-left: 4px;
    vertical-align: middle;
}

.pricing-card {
    background: #fff;
    border: 2px solid #ede8ff;
    border-radius: 22px;
    padding: 32px 28px;
    height: 100%;
    transition: box-shadow .25s, transform .25s;
}

.pricing-card:hover {
    box-shadow: 0 16px 50px rgba(109, 63, 192, 0.1);
    transform: translateY(-4px);
}

.pricing-card.featured {
    background: var(--brand-purple);
    border-color: var(--brand-purple);
    box-shadow: 0 24px 60px rgba(109, 63, 192, 0.3);
    transform: scale(1.04);
}

.pricing-card.featured:hover {
    transform: scale(1.06) translateY(-4px);
}

.featured-badge-pill {
    background: #fff;
    color: var(--brand-purple);
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(109, 63, 192, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    margin-bottom: 14px;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.plan-tagline {
    margin-bottom: 20px;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
}

.plan-per {
    font-weight: 500;
    vertical-align: bottom;
    padding-bottom: 5px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 22px 0 28px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.plan-features .check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon.light {
    background: rgba(109, 63, 192, 0.1);
    color: var(--brand-purple);
}

.check-icon.dark {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-plan-light {
    display: block;
    width: 100%;
    background: var(--brand-purple);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: background .2s, transform .15s;
    box-shadow: 0 4px 16px rgba(109, 63, 192, 0.25);
}

.btn-plan-light:hover {
    background: var(--brand-purple-dark);
    transform: translateY(-1px);
}

.btn-plan-dark {
    display: block;
    width: 100%;
    background: #fff;
    color: var(--brand-purple);
    font-weight: 800;
    border: none;
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: background .2s, transform .15s;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.btn-plan-dark:hover {
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-1px);
}

/* ── FAQ ── */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-item {
    border: 1px solid #ede8ff;
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

.faq-item.open {
    border-color: rgba(109, 63, 192, 0.3);
    box-shadow: 0 4px 16px rgba(109, 63, 192, 0.08);
}

.faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-q {
    font-weight: 700;
    color: #0f0a1e;
}

.faq-toggle {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
    background: #f0eaff;
    color: #5a5672;
}

.faq-item.open .faq-toggle {
    background: var(--brand-purple);
    color: #fff;
}

.faq-answer {
    padding: 0 20px 18px;
    color: #5a5672;
    line-height: 1.7;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ── CONTACT ── */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f7f2ff 0%, #fff 100%);
}

.contact-info-card {
    background: #fff;
    border: 1px solid #ede8ff;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--brand-purple-light);
    color: var(--brand-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-info-card h6 {
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-info-card .val {
    color: var(--brand-purple);
    font-weight: 600;
}

.contact-info-card .sub {
    color: #9490a8;
    margin: 0;
}

.promise-box {
    background: rgba(109, 63, 192, 0.05);
    border: 1px solid rgba(109, 63, 192, 0.12);
    border-radius: 14px;
    padding: 18px 20px;
}

.contact-form-card {
    background: #fff;
    border: 1px solid #ede8ff;
    border-radius: 20px;
    padding: 32px;
}

.form-label {
    font-weight: 700;
    color: #0f0a1e;
    margin-bottom: 6px;
}

.form-control,
.form-select {
    border: 1px solid #e5dfff;
    border-radius: 10px;
    padding: 10px 14px;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand-purple);
    box-shadow: 0 0 0 3px rgba(109, 63, 192, 0.12);
    outline: none;
}

/* ── FINAL CTA ── */
.final-cta-section {
    padding: 80px 0;
    background: #fff;
}

.final-cta-box {
    background: var(--brand-purple);
    border-radius: 28px;
    padding: 72px 40px;
    position: relative;
    overflow: hidden;
}

.final-cta-box::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    filter: blur(60px);
}

.final-cta-box::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    filter: blur(60px);
}

.final-cta-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 auto 24px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.final-cta-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.final-cta-box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 480px;
    margin: 0 auto 32px;
}

.btn-cta-white {
    background: #fff;
    color: var(--brand-purple);
    font-weight: 800;
    border: none;
    border-radius: 14px;
    padding: 14px 30px;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
    transition: background .2s, transform .15s;
    text-decoration: none;
}

.btn-cta-white:hover {
    background: rgba(255, 255, 255, 0.93);
    transform: translateY(-2px);
    color: var(--brand-purple);
}

.btn-cta-ghost {
    background: transparent;
    color: #fff;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    padding: 14px 30px;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, transform .15s;
    text-decoration: none;
}

.btn-cta-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #fff;
}
/* ── FORM ── */
.contact-info-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  /* Add theme color here if needed */
}

.contact-info-card .val {
  font-weight: 600;
}

.contact-info-card .sub {
  color: #6c757d;
}

.promise-box {
  background: #f8f9fa; /* Light background for the box */
  padding: 15px;
  border-radius: 8px;
}

.promise-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.promise-text {
  color: #5a5672;
  margin: 0;
  line-height: 1.6;
}

.btn-primary-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #6d3fc0
  color: white;
  border: none;
  font-size: 1rem;
  padding: 13px;
  border-radius: 12px;
  cursor: pointer;
}

.btn-primary-brand:hover {
  filter: brightness(90%);
}


.u-btn-primary, 
a.u-btn-primary, 
button.u-btn-primary {
  	background-color: var(--brand-purple) !important;
    transition: background-color 0.2s ease-in-out !important;
}

.success-box {
    display: none;
    text-align: center;
    padding: 20px;
}


/* ── FOOTER ── */
.site-footer {
    background: #fff;
    border-top: 1px solid #f0ebff;
    padding: 56px 0 32px;
}

.footer-brand {
    font-weight: 800;
    font-size: 1rem;
    color: #0f0a1e;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-desc {
    color: #9490a8;
    line-height: 1.6;
    margin-top: 10px;
    max-width: 200px;
}

.footer-heading {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0f0a1e;
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #9490a8;
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--brand-purple);
}

.footer-bottom {
    border-top: 1px solid #f0ebff;
    padding-top: 20px;
    margin-top: 40px;
}

.footer-copy {
    color: #c0bcd0;
}

.footer-socials a {
    color: #c0bcd0;
    text-decoration: none;
    margin-left: 18px;
    transition: color .2s;
}

.footer-socials a:hover {
    color: var(--brand-purple);
}

/* ── UTILS ── */
.success-box {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.success-box i {
    font-size: 3rem;
    color: var(--brand-purple);
    margin-bottom: 12px;
}

.success-box h5 {
    font-weight: 800;
    margin-bottom: 6px;
}

.success-box p {
    color: #5a5672;
}

@media (max-width: 991px) {
    .hero-img-wrapper {
        margin-top: 48px;
    }

    .hero-float-sales,
    .hero-float-badge {
        display: none;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 767px) {
    .steps-bar {
        display: none;
    }

    .final-cta-box {
        padding: 52px 24px;
    }
}






