/* Custom CSS for Click to Send Landing Page */

:root {
    --primary-color: #7544c2;
    --primary-dark: #8952E0;
    --text-dark: #18181B;
    --text-muted: #71717B;
    --bg-light: #f8f9fa;
    --border-light: #e9ecef;
}

/* Global Styles */
body {
    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: 1.6;
    color: var(--text-dark);
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Navigation */
/* .navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
} */

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    color: var(--text-dark);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(0deg, #FFFFFF 0%, #E8DFFF 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-image-container {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: rgba(0,0,0,0.02);
    padding: 24px;
}

.hero-image-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    height: 400px;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
}

.play-button {
    width: 65px;
    height: 65px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(117, 68, 194, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
    box-shadow: 0 0 40px rgba(117, 68, 194, 0.4);
}

/* Feature Cards */
.feature-card {
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(213, 173, 255, 0.2);
    box-shadow: 0px 0px 30px 0px #D5ADFF33;
    height: 100%;
}

.feature-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(213, 173, 255, 0.3);
}
.feature-card h3 {
    font-size: clamp(22px, 3vw, 33px);
    line-height: 100%;
    letter-spacing: -1.8px;
}
.feature-card p {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #71717b;
    margin-bottom: 0;
}
.feature-image-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    height: 200px;
    border-radius: 15px;
    border: 2px dashed #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 500;
}

/* How It Works Section */
.how-it-works-section {
    background: rgb(115 0 255 / 3%);
}

.step-image-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    height: 300px;
    border-radius: 20px;
    border: 2px dashed #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 500;
}

/* Integration Logos */
.integration-logo {
    background: rgba(0,0,0,0.01);
    border-radius: 20px;
    padding: 26px 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(204, 204, 204, 0.2);
}

.integration-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(213, 173, 255, 0.2);
}

.logo-placeholder {
    height: 72px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-muted);
    border: 2px dashed #dee2e6;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
}

.testimonial-card .btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    box-shadow: 0px 0px 30px 0px #FFFFFF66 inset;
    top: 50%;
    transform: translateY(-50%);
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 0 30px rgba(213, 173, 255, 0.2);
    border: 1px solid rgba(213, 173, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(213, 173, 255, 0.3);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    padding: 8px 0;
    line-height: 1.6;
    border-bottom: 1px solid #E5E7EB;
    width: 100%;
    max-width: 34%;
}

/* FAQ Section */
.accordion-button:not(.collapsed) {
    background-color: rgba(117, 68, 194, 0.1);
    color: var(--primary-color);
    border-color: rgba(117, 68, 194, 0.2);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(117, 68, 194, 0.25);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
}

.cta-card {
    background: radial-gradient(81.01% 112.18% at 50% 50%, #FFFFFF 0%, #EFE8FF 100%);
    border-radius: 120px;
    padding: 160px 20px;
}
.cta-card h2 {
    font-weight: 500;
    font-size: clamp(30px, 4.5vw, 60px);
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-align: center;
    margin-bottom: 12px;
}
.cta-card p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.45px;
    text-align: center;
    color: #71717b;
    max-width: 540px;
    margin: 0 auto;
}
.cta-btns .btn-dark {
    margin-top: 60px;
    /*margin-bottom: 20px;*/
}
/* Footer */
.footer {
    background: #000000;
    padding: 80px 0;
    color: #B9B9BF;
}

.footer a:hover {
    color: #ffffff;
}
a.navbar-brand.fw-bold.sitelogo img {
    width: 202px;
}
.footer .sitelogo {
    margin-bottom: 25px;
    display: block;
}
.footer h5 {
    color: #9f9fa9;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.footer ul li:not(:last-child) {
    margin-bottom: 15px;
}
.footer ul li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #B9B9BF;
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        text-align: center;
    }
    
    .hero-image-placeholder {
        height: 250px;
        margin-top: 2rem;
    }
    
    .step-image-placeholder {
        height: 200px;
        margin-bottom: 2rem;
    }
    
    .cta-card {
        border-radius: 40px;
        padding: 40px 20px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.pricing-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.btn {
    transition: all 0.3s ease;
}

/* .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
} */

/* .navbar-brand:hover {
    transform: scale(1.05);
} */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Focus States */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(117, 68, 194, 0.25);
}

ul.list-unstyled a {
    /*color: #7544c2;*/
    color: #ffff
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    .play-button {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
} 


.btn.btn-dark {
    background: #000000;
    border-radius: 10px;
}
.header-btns .btn {
    font-size: 14px;
    display: inline-flex;
    gap: 5px;
}
.btn {
    font-size: 15px;
    font-weight: 600;
}
.navbar-expand-lg .navbar-nav {
    gap: 10px;
}
.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px;
}
nav.navbar {
    background: transparent !important;
    position: absolute;
    width: 100%;
    padding: 25px 0 !important;
}
.hero-section {
    padding-top: 100px;
    padding-bottom: 0px;
}
.hero-text-view {
    max-width: 740px;
    margin-bottom: 55px;
}
.title-text {
    font-size: clamp(35px, 5vw, 44px);
    line-height: 1.04;
    letter-spacing: -1.8px;
    margin-bottom: 15px;
}
.sub-text {
    font-size: 20px;
    line-height: 24px;
    color: #71717B;
    font-weight: 400;
}
.hero-section .sub-text {
    margin-bottom: 40px;
}
.features-section {
    padding: 80px 0;
}
.how-it-works-section {
    padding: 110px  0;
}
.small-head {
    max-width: 560px;
    margin: 0 auto 80px;
}
.how-it-works-section h3 {
    font-size: clamp(22px, 3vw, 33px);
    line-height: 100%;
    letter-spacing: -1.8px;
    font-weight: 500;
}
.how-it-works-section p {
    font-weight: 400;
    line-height: 1.6;
    color: #71717b;
    margin-bottom: 0;
}
.medium-head {
    max-width: 650px;
    margin: 0 auto;
}
.integrations-section {
    padding-top: 120px;
}
.testimonials-section {
    padding-top: 120px;
}
.testimonials-section h2 {
    font-family: Geist;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #71717b;
}
.testimonial {
    font-weight: 500;
    font: clamp(22px, 3vw, 33px);
    line-height: 1.4;
    letter-spacing: -1.8px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 35px !important;
}
.testimonial-name {
    font-weight: 500;
    font-size: 32px;
    letter-spacing: -1.8px;
    text-align: center;
    color: #705699;
    padding-right: 15px;
}
.testimonial-bio {
    font-family: Geist;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #71717b;
}
.pricing-section {
    padding-top: 80px;
}
.common-features {
    font-weight: 500;
    font-size: 20px;
    color: #18181b;
    margin-bottom: 20px;
    margin-top: 20px;
}
.faq-section {
    padding-top: 120px;
}
.price-info {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
}
.display-price {
    font-weight: 600;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: -1px;
}
.badge-time {
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: rgb(0 0 0 / 64%);
}
.pricing-card hr {
    border-color: #9da0a5;
    margin: 20px 0 24px;
}
.faq-section .accordion-item {
    border: 1px solid #E5E7EB !important;
    margin-bottom: 20px;
    border-radius: 20px !important;
    overflow: hidden;
}
.faq-section .accordion-button {
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -1px;
    color: #18181b !important;
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
.faq-section .accordion-collapse {
    border-top: none !important;
}
.faq-section .accordion-body {
    color: #6b7280;
    font-family: Geist;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    padding-top: 0;
}
.hide-desktop {
    display: none;
}
button, a {
    outline: none !important;
    box-shadow: none !important;
}
.inner-page-wrap {
    padding-top: 160px;
    padding-bottom: 80px;
}
.copyright-row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: 10px 20px;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 35px;
}
.copyright-row li {
    margin: 0;
}
.copyright-row li a {
    text-decoration: none;
}
.title-text-h2 {
    font-size: clamp(28px, 4vw, 50px);
    max-width: 800px;
}
ul.feature-list i {
    display: none !important;
}
@media (min-width: 992px) {
.navbar-expand-lg .navbar-nav {
    background: #ffffff;
    border-radius: 50px;
    padding: 6px;
}
.navbar-expand-lg .navbar-nav .nav-link {
    line-height: 1.5;
    border-radius: 50px;
    padding: 6px 10px;
    color: #545967;
}
.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link.active {
    background: #000000;
    color: #ffffff;
}
}
@media (max-width: 991px) {
.navbar-collapse {
    position: absolute;
    background: #fff;
    width: 100%;
    left: 0;
    top: 100%;
}
.navbar-nav {
    max-width: 720px;
    padding: 10px 15px;
    gap: 0 !important;
    margin-bottom: 0 !important;
}
.integrations-section img {
    max-width: calc(33% - 18px);
    height: auto;
}
.hide-mobile {
    display: none;
}
.hide-desktop {
    display: block;
}
.inner-page-wrap {
    padding-top: 100px;
    padding-bottom: 70px;
}
.navbar-nav {
    text-align: center;
}
.footer {
    padding: 60px 0 35px;
}
.copyright-row {
    justify-content: center;
}
}
@media (max-width: 768px) {
.hero-section .align-items-center {
    justify-content: center;
}
}
@media (max-width: 767px) {
.feature-item {
    max-width: 50%;
}
.hero-section {
    padding-top: 125px;
}

.testimonials-section h2 {
    font-size: 16px;
}
.faq-section .accordion-button {
    font-size: 18px;
}
.small-head {
    margin: 0 auto 40px;
}
.cta-section {
    padding: 80px 0;
}
.faq-section {
    padding-top: 80px;
}
.pricing-section {
    padding-top: 60px;
}
.testimonials-section {
    padding-top: 100px;
}
.integrations-section {
    padding-top: 80px;
}
.how-it-works-section {
    padding: 80px  0;
}
.features-section {
    padding: 80px 0;
}
.sub-text {
    font-size: 18px;
}
}


.coming-soon {
    position: absolute;
    top: -25px;
    background: #7c4dff;
    width: 60px;
    right: -20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 100%;
    line-height: 1;
    font-size: 12px;
    color: #fff;
    transform: rotate(17deg);
    animation: zoomInOut 2s infinite ease-in-out;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: rotate(17deg) scale(1);
    }
    50% {
        transform: rotate(17deg) scale(1.1);
    }
}
