
/* ===== Brush Highlight Effect ===== */
.brush-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.brush-highlight::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -10px;
    right: -20px;
    height: 40px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 80"%3E%3Cpath fill="%23ffd1ec" d="M10,40 C80,20 200,10 280,30 C295,35 300,50 285,65 C180,80 60,75 15,60 C0,55 -5,45 10,40 Z"/%3E%3C/svg%3E');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.8;
    transform: rotate(-1deg);
}

@media (min-width: 768px) {
    .brush-highlight::before {
        bottom: 10px;
        height: 60px;
    }
}

/* ===== Hero Title ===== */
.hero-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: calc(1.6rem + 2vw);
    line-height: 1.15;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

h2.hero-title {
    width: 100%;
    max-width: 789px;
    font-family: "Raleway", sans-serif;
    font-size: 30px;
    font-weight: 800;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    margin: 0 auto;
}

.hero-brush-backdrop {
    position: absolute;
    top: 30%;
    opacity: 75%;
    left: 75%;
    transform: translate(-50%, -45%);
    width: 55%;
    max-width: 560px;
    height: 230px;
    background-image: url(/assets/images/bruststrokehero.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    pointer-events: none;
}

/* ===== Buttons ===== */
.btn-brand-purple {
    background-color: #9F208C;
    color: #fff;
    border-radius: 30px;
    height: 44px;
    padding: 0 1.5rem;
    font-weight: 500;
    border: none;
    transition: background-color 0.2s ease;
}

.btn-brand-purple:hover {
    background-color: #801870;
    color: #fff;
}

.btn-brand-indigo {
    background-color: #801A70;
    color: #fff;
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    border: none;
    transition: background-color 0.2s ease;
}

.btn-brand-indigo:hover {
    background-color: #801A70;
    color: #fff;
}

/* ===== Hero Image Container ===== */
.hero-banner-wrapper {
    border-radius: 1.5rem;
    overflow: hidden;
    height: 400px;
    position: relative;
}

@media (min-width: 768px) {
    .hero-banner-wrapper {
        height: 550px;
    }
}

/* ===== Logo Carousel ===== */
.logo-carousel-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    animation: logoMarquee 25s linear infinite;
}

.logo-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes logoMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.75;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-item img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

/* ===== Feature Accordion ===== */
.feature-item {
    cursor: pointer;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.feature-dot-outer {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item.active .feature-dot-outer {
    background: #ece9ff;
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9F208C;
    flex-shrink: 0;
}

.feature-item.active .feature-dot {
    width: 10px;
    height: 10px;
}

.feature-content {
    display: none;
    margin-top: 0.75rem;
    padding-left: 2.25rem;
}

.feature-item.active .feature-content {
    display: block;
}

.feature-panel {
    display: none;
    border-radius: 1.5rem;
    height: 450px;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.feature-panel.active {
    display: flex;
}

/* ===== Step Cards ===== */
.step-card {
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    cursor: pointer;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.05);
}

.step-icon-box {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9F208C;
    margin: 0 auto 0.75rem auto;
    transition: all 0.35s ease;
}

.step-card:hover .step-icon-box {
    background: #9F208C;
    color: #fff;
    box-shadow: 0 12px 28px rgba(97, 85, 245, 0.45);
}

.step-node {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E5E7EB;
    border: 2px solid #fff;
    margin: 0 auto 0.75rem auto;
    transition: all 0.35s ease;
}

.step-card:hover .step-node {
    background: #9F208C;
    box-shadow: 0 0 0 4px rgba(97, 85, 245, 0.25);
}

.step-card:hover .step-label-num {
    color: #9F208C !important;
    font-weight: 700;
}

/* ===== "How to e-sign" Steps ===== */
.esign-step-card {
    transition: all 0.3s ease;
    border-radius: 1rem;
    cursor: pointer;
    padding: 0 0.5rem;
}

.esign-icon-box {
    width: 64px;
    height: 64px;
    background-color: rgba(159, 32, 140, 0.08);
    color: #9F208C;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.esign-step-card:hover .esign-icon-box,
.esign-step-card.active .esign-icon-box {
    background-color: #9F208C;
    color: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(159, 32, 140, 0.3);
}

.esign-node-outer {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(159, 32, 140, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.esign-node-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #9F208C;
}

.esign-step-card:hover .esign-node-outer,
.esign-step-card.active .esign-node-outer {
    transform: scale(1.3);
    background-color: rgba(159, 32, 140, 0.35);
}

.esign-connecting-line {
    position: absolute;
    top: 117px;
    left: 8.33%;
    right: 8.33%;
    height: 2px;
    background-color: rgba(159, 32, 140, 0.2);
    z-index: 1;
}

/* ===== Feature Cards Grid ===== */
.feature-card {
    background-color: #F9FAFC;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.feature-card:hover {
    background-color: #FDF8FC;
    border-color: rgba(159, 32, 140, 0.25);
    box-shadow: 0 10px 30px rgba(159, 32, 140, 0.12);
    transform: translateY(-4px);
}

.feature-card:hover h3 {
    color: #9F208C !important;
}

   @media (max-width: 768px) {
       
       .hero-brush-backdrop {
                position: absolute;
                top: 20%;
                opacity: 55%;
                left: 65%;
           }
       
       
   }


.feature-card:hover .read-more {
    color: #9F208C;
}

/* ===== FAQ ===== */
.faq-item {
    background-color: #F4F5F7;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease;
}

.faq-button {
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #212529;
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    color: #6c757d;
    font-size: 0.875rem;
    line-height: 1.6;
}

.faq-answer.open {
    max-height: 200px;
    padding-bottom: 1.25rem;
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* ===== Reviews (masonry) ===== */
.review-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    break-inside: avoid;
}

@media (min-width: 768px) {
    .reviews-columns {
        column-count: 2;
        column-gap: 1.5rem;
    }
}

@media (min-width: 992px) {
    .reviews-columns {
        column-count: 3;
        column-gap: 1.5rem;
    }
}

.reviews-fade-overlay {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8) 50%, transparent);
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
}

/* ===== Newsletter / CTA Banner ===== */
.newsletter-wrapper {
    background-color: #1a2b49;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.banner-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
}

.custom-subscribe-form {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 6px;
    display: flex;
    align-items: center;
    max-width: 450px;
}

.custom-subscribe-form input {
    background: transparent;
    border: none;
    color: white;
    flex-grow: 1;
    padding-left: 15px;
    box-shadow: none !important;
}

.custom-subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.custom-subscribe-form input:focus {
    outline: none;
    background: transparent;
    color: white;
}

.custom-subscribe-form .btn-start {
    background-color: white;
    color: #1a2b49;
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    transition: transform 0.2s;
}

.custom-subscribe-form .btn-start:hover {
    transform: scale(1.05);
}

.floating-tooltip {
    position: absolute;
    top: 30%;
    left: 0;
    background: white;
    color: #1a2b49;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

.floating-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.banner-image-container {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 45%;
    height: 90%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.banner-image-container img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

@media (max-width: 991px) {
    .banner-image-container {
        position: relative;
        width: 100%;
        height: 300px;
        right: 0;
        margin-top: 2rem;
    }
    .floating-tooltip {
        top: 10%;
        left: 10%;
    }
}



/*cta section*/
/* Container & Background */
.stay-connected-banner {
    background-color: #921d8b; /* Matched to the specific purple in the image */
    min-height: 380px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Right-side geometric circle */
.bg-vector-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    border: 5px solid #ffffff00;
    border-radius: 50%;
    right: -180px;
    top: -20px;
    pointer-events: none;
    z-index: 0;
}

.bg-vector-circle::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border: 3px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    left: -80px;
    top: 150px;
}

/* Subscription Input Group Styling */

.
/* Image and Decorative Assets positioning */
.banner-image-container {
    max-width: 500px;
    margin-bottom: -15px; /* Ensures the image drops entirely to the bottom */
}

.responsive-banner-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    vertical-align: bottom;
}

.doodle-graphic {
    top: 12%;
    left: 10%;
    z-index: 1;
}

.floating-tooltip {
    top: 36%;
    left: -5%;
    z-index: 4;
    font-size: 13px !important;
    color: #ce12b7; /* Pinkish-purple text matching image */
    white-space: nowrap;
    border-bottom-right-radius: 0px !important;
}

/* Speech bubble pointer */
.floating-tooltip::after {
    content: '';
    position: absolute;
    bottom: -7px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff;
}

/* Responsive Alignment */
@media (max-width: 991px) {
    .stay-connected-banner {
        text-align: center !important;
    }
    .custom-subscribe-bar {
        margin: 0 auto;
    }
    .floating-tooltip {
        top: 20%;
        left: 5%;
    }
    .doodle-graphic {
        top: 0%;
        left: 20%;
    }
}
/* Footer Custom Styles */
.footer-text-color {
    color: #4a4a4a; /* Dark gray for high readability */
}

.footer-link {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.footer-link:hover {
    color: #921d8b; /* Brand purple hover state */
}

/* Bottom Bar Styling */
.footer-bottom-bar {
    background-color: #f7ebf7; /* Light purple/pink background */
    border-radius: 50px; /* Pill shape */
}

.social-link {
    color: #4a4a4a;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-link i {
    color: #b1229f; /* Purple icon color matching the image */
    font-size: 16px;
}

.social-link:hover, .social-link:hover i {
    color: #921d8b;
}

/* Responsive adjustments for the bottom bar */
@media (max-width: 768px) {
    .footer-bottom-bar {
        border-radius: 20px; /* Softer radius for stacked mobile view */
        text-align: center;
    }
}


/* Video Section Container */
.video-preview-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Maintains standard video proportions */
    max-height: 520px;
    background-color: #1a101f;
    border-radius: 1.5rem; /* Matches rounded-4 */
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(159, 32, 140, 0.15);
}

@media (max-width: 768px) {
    
  .video-preview-wrapper {  
     aspect-ratio: 20 / 20;
  }
}

/* Background Thumbnail Image */
.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-preview-wrapper:hover .video-thumbnail {
    transform: scale(1.03); /* Subtle zoom effect on hover */
}

/* Dark Gradient Overlay for Contrast */
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

/* Centered Play Button */
.play-btn-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
    text-decoration: none;
    outline: none;
}

/* Outer Pulsing Ripple Effect */
.play-btn {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    color: #921d8b; /* Brand Purple */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(146, 29, 139, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

/* Continuous Subtle Pulsing Ring */
.play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    animation: pulse-ring 2s infinite;
    z-index: -1;
}

.play-btn-container:hover .play-btn {
    transform: scale(1.12);
    background-color: #921d8b;
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(146, 29, 139, 0.5);
}

/* Pulse Animation Keyframes */
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive Button Scaling */
@media (max-width: 768px) {
    .play-btn {
        width: 60px;
        height: 60px;
    }
    .play-btn svg {
        width: 24px;
        height: 24px;
    }
}


/* Panel image: cover + rounded, no colored bg */
.feature-panel {
    background-color: transparent !important;
    padding: 0 !important;
}

.feature-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;

}

/* Mobile: panel drops in directly under its tapped item */
@media (max-width: 991.98px) {
    .feature-panel {
        height:300px;
        margin: 0.75rem 0 1rem;
        border-radius: 1rem;
    }
    .feature-panel img {
        border-radius: 1rem;
         min-height:300px;

    }
}