:root {
    --primary-color: #8929EA;
    --secondary-color: #4A5568;
    --text-color: #1A202C;
    --background-color: #FFFFFF;
    --section-padding-y: 100px;
    --font-family: 'Inter', sans-serif;
    --logo-font-family: 'Manrope', sans-serif;
    --base-font-size: 17px;
    --line-height-base: 1.7;
}

body {
    margin: 0;
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: var(--line-height-base);
    font-size: var(--base-font-size);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 25px;
}
.container-large {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header & Logo */
header {
    padding: 25px 0;
    background-color: var(--background-color);
    /* border-bottom: 1px solid #E5E7EB; */
}

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

.logo {
    font-family: var(--logo-font-family);
    font-size: 1.9em;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}
.logo:hover {
    text-decoration: none;
}


h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 0.75em;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2.4em;
    font-weight: 700;
    margin-bottom: 1.2em;
    text-align: center;
}

h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 0.5em;
}
h4 {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.7em;
}

p {
    margin-bottom: 1.5em;
    color: var(--secondary-color);
    font-weight: 400;
}
p.lead {
    font-size: 1.25em;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 1.5em;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.2s ease, transform 0.2s ease;
    border: none;
    width: auto;
}

.cta-primary {
    background-color: var(--primary-color);
    color: white;
}

.cta-primary:hover {
    background-color: #701fbf;
    transform: translateY(-2px);
    text-decoration: none;
}

.cta-secondary {
    background-color: #F3F4F6;
    color: var(--text-color);
    border: 1px solid #E5E7EB;
}

.cta-secondary:hover {
    background-color: #E5E7EB;
    transform: translateY(-2px);
    text-decoration: none;
}

section {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}

#hero {
    text-align: center;
    padding-top: calc(var(--section-padding-y) - 20px);
    padding-bottom: calc(var(--section-padding-y) + 20px);
}

#hero .subheadline {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#hero .cta-buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

@media (min-width: 520px) {
    #hero .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    .cta-button {
        width: auto;
    }
}


#how-it-works h2 {
     margin-bottom: 1.5em;
}
#how-it-works .video-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

#how-it-works .video-wrapper {
    width: 100%;
    max-width: 720px;
    text-align: center;
}

#how-it-works .video-wrapper h3 {
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

#how-it-works iframe,
#how-it-works .video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07), 0 5px 10px rgba(0,0,0,0.04);
}
#how-it-works .video-placeholder {
    background-color: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: var(--secondary-color);
    font-style: italic;
}

@media (min-width: 900px) {
    #how-it-works .video-container {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
    }
    #how-it-works .video-wrapper {
        width: calc(50% - 20px);
        max-width: 560px;
    }
}

#value-propositions .value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: left;
}

#value-propositions .value-item {
    padding: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
}
#value-propositions .value-item h3 {
    color: var(--text-color);
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 0.6em;
}
#value-propositions .value-item p {
    font-size: 1em;
    margin-bottom: 0;
}

#customer-quotes {
    background-color: #F9FAFB;
}
#customer-quotes .quotes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 750px;
    margin: 0 auto;
}

#customer-quotes blockquote {
    background-color: transparent;
    border-left: 4px solid var(--primary-color);
    margin: 0;
    padding: 10px 0 10px 30px;
    font-style: normal;
    border-radius: 0;
    box-shadow: none;
}

#customer-quotes blockquote p {
    font-size: 1.2em;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1em;
}

#customer-quotes cite {
    display: block;
    margin-top: 0;
    font-style: normal;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 1em;
}

#pricing h2 {
    margin-bottom: 1em;
}
#pricing .pricing-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3em auto;
    font-size: 1.1em;
    color: var(--secondary-color);
}

#pricing .pricing-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

#pricing .pricing-card {
    background-color: #F9FAFB;
    border-radius: 12px;
    padding: 35px;
    text-align: left;
    flex-grow: 1;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
}

#pricing .pricing-card h4 {
    font-size: 1.6em;
    margin-bottom: 1em;
    text-align: center;
    color: var(--text-color);
}

#pricing .plan-group {
    margin-bottom: 20px;
    flex-grow: 1;
}
#pricing .plan-group:last-child {
    margin-bottom: 0;
}

#pricing .plan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #E5E7EB;
}
#pricing .plan:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
#pricing .plan:first-child {
    padding-top: 0;
}

#pricing .plan-info {
    flex-grow: 1;
}

#pricing .plan-name {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25em;
}
#pricing .plan-details {
    font-size: 0.95em;
    color: var(--secondary-color);
    margin-bottom: 0;
}
#pricing .price {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--text-color);
    text-align: right;
    white-space: nowrap;
    margin-left: 15px;
}
#pricing .price span {
    font-size: 0.6em;
    font-weight: 500;
    color: var(--secondary-color);
}

#pricing .pricing-footer {
    text-align: center;
    margin-top: 50px;
}

#pricing .integration-note,
#pricing .discount-note {
    font-size: 0.95em;
    color: var(--secondary-color);
    margin-bottom: 1em;
}
#pricing .discount-note strong {
    color: var(--primary-color);
    font-weight: 600;
}
#pricing .integration-note {
     margin-top: 1.5em;
}
#pricing .pricing-footer a.cta-primary {
    margin-top: 1.5em;
}


@media (min-width: 768px) {
    #pricing .pricing-container {
        flex-direction: row;
    }
    #pricing .pricing-card {
        width: calc(50% - 20px);
    }
     #pricing .pricing-card h4 {
        text-align: left;
    }
}

#request-demo {
    background-color: #F9FAFB;
}
#request-demo .container {
    max-width: 700px; /* Default max-width for smaller screens */
}
#request-demo h2 {
    margin-bottom: 0.5em;
}
#request-demo p.lead {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5em;
}
#request-demo .zcal-inline-widget {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07), 0 5px 10px rgba(0,0,0,0.04);
    min-height: 600px !important; /* As per Zcal's recommendation often */
    height: auto !important; /* Allow it to adapt if Zcal makes it taller */
    width: 100%;
}
#request-demo .zcal-inline-widget a {
    display: block;
    padding: 20px;
    text-align: center;
}

/* Media query to make calendar container wider on desktops */
@media (min-width: 992px) { /* Adjust breakpoint as needed (e.g., large desktops) */
    #request-demo .container {
        max-width: 960px; /* Increased max-width for desktop calendar view */
    }
}


footer {
    background-color: var(--background-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 50px 20px;
    font-size: 0.9em;
    border-top: 1px solid #E5E7EB;
}

footer p {
    margin: 8px 0;
    color: var(--secondary-color);
}

footer a {
    color: var(--secondary-color);
    font-weight: 500;
}
footer a:hover {
    color: var(--primary-color);
}