:root {
    --color-text: #050505;
    --color-background: #fcfaf8;
    --color-light: #ffffff;
    --color-grey: #808080;
    --color-light-grey: #efedeb;
    --color-accent: #e16540;
    --font-primary: 'Inter Tight', sans-serif;
    --font-display: 'Inter Tight', sans-serif;
    --max-width: 1200px;
    /* Header variables from buzzPage */
    --text-primary: #030712;
    --text-secondary: #4b5563;
    --border-color: rgba(0, 0, 0, 0.05);
    --bg-hover: #f3f4f6;
    --bg-icon-container: #f3f4f6;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-background);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.025em;
    text-align: center;
}

h1 {
    font-size: 52px;
    line-height: 56px;
    max-width: 880px;
}

h2 {
    font-size: 36px;
    line-height: 40px;
}

h3 {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 30px;
}

p {
    font-size: 17px;
    line-height: 26px;
    color: var(--color-text);
    text-align: center;
    max-width: 560px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Utility Classes --- */
.btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-dark {
    background-color: #e16540;
    color: var(--color-light);
    box-shadow: 0 4px 12px rgba(6, 6, 6, 0.24);
}
.btn-dark:hover {
    background-color: var(--color-accent);
}

.btn-light {
    background-color: var(--color-light);
    color: var(--color-text);
}

.btn-text {
    background-color: transparent;
    color: var(--color-text);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--color-light);
    padding: 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}
.section-header p {
    color: var(--color-grey);
}

.logo {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


/* --- SVG Icon Styling --- */
.sparkle-icon {
    width: 12px;
    height: 12px;
    background-color: rgb(239, 237, 235);
    border-radius: 999px;
    box-shadow: rgba(5, 5, 5, 0.05) 0px -2px 0px 0px inset;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background-color: rgb(239, 237, 235);
    border-radius: 999px;
    box-shadow: rgba(5, 5, 5, 0.05) 0px -2px 0px 0px inset;
}


/* --- Integrated Header (from buzzPage.html) --- */
.header-wrapper {
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    z-index: 50;
}

.header-container {
    background-color: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.header-inner-borders {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.header-content-limiter {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
@media (min-width: 1024px) {
    .header-content-limiter {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

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

.logo-container {
    display: flex;
    align-items: center;
}

.desktop-nav {
    display: none;
    margin-left: 2rem;
    height: 3rem;
    flex-grow: 1;
    align-items: center;
}
@media (min-width: 1024px) {
    .desktop-nav { display: flex; }
}
.desktop-nav > a,
.desktop-nav .nav-dropdown > button {
    display: flex;
    height: 100%;
    align-items: center;
    padding: 0 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: background-color 0.15s ease-out;
}
.desktop-nav > a:hover,
.desktop-nav .nav-dropdown > button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.nav-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-actions a {
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.15s ease-out, border-color 0.15s ease-out;
    padding: 0.4rem 1rem;
}
.nav-actions .btn-login { color: var(--text-primary); }
.nav-actions .btn-login:hover { background-color: rgba(0, 0, 0, 0.05); }
.nav-actions .btn-secondary {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08), inset 0 0 2px 1px rgba(255, 255, 255, 0.3);
    padding: 8px 13px;
}
.nav-actions .btn-secondary:hover { background-color: rgba(255, 255, 255, 0.6); }
.nav-actions .btn-primary {
    color: white;
    background-color: var(--color-accent);
    border: 1px solid transparent;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 8px 13px;
}
.nav-actions .btn-primary:hover { background-color: #c75331; }

.nav-dropdown { position: relative; height: 100%; }
.nav-dropdown > button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    gap: 0.375rem;
}

.popover-panel {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 0.75rem;
    width: 24rem;
    z-index: -1;
    transition: opacity 150ms ease-out, transform 150ms ease-out;
    transform-origin: top center;
}
.nav-dropdown:hover .popover-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 10;
}
.popover-content {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    border-radius: 0 0 1.5rem 1.5rem;
    border: 1px solid var(--border-color);
    border-top: none;
    background-color: white;
    padding: 1rem;
    font-size: 0.875rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.popover-item {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    border-radius: 0.5rem;
    padding: 0.75rem;
    transition: background-color 150ms ease-out;
}
.popover-item:hover { background-color: var(--bg-hover); }
.popover-item .icon-container {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-icon-container);
    border-radius: 0.5rem;
}
.popover-item .icon-gradient-wrap { padding: 0.5rem; border-radius: 0.375rem; }
.icon-1 { background-image: linear-gradient(to right, #E0F0F5, #E0E8F0, #E0F0EA); color: #1A4B6E; }
.icon-2 { background-image: linear-gradient(to right, #FFE8E0, #FFDAD6, #FFD1E0); color: #8B4513; }
.popover-item .text-content { display: flex; flex-direction: column; }
.popover-item .title { font-weight: 600; color: var(--text-primary); }
.popover-item .description { margin-top: 0.125rem; font-size: 13px; line-height: 1.2; font-weight: 400; color: var(--text-secondary); }

.mobile-nav-toggle { display: flex; height: 3rem; align-items: center; justify-content: flex-end; }
.mobile-nav-toggle button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.5rem;
    margin-right: -0.5rem;
    color: #374151;
}
.mobile-nav-toggle button:hover { color: var(--text-primary); background-color: rgba(0, 0, 0, 0.05); }

.rk-hero-icon {
    width: 40px;
    height: 40px;
    fill: linear-gradient(rgb(59, 130, 246) 0%, rgb(29, 78, 216) 100%);
}

@media (min-width: 1024px) { .mobile-nav-toggle { display: none; } }

/* Visually hidden utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 126px 40px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    border-radius: 0;
    z-index: 0;
}
.hero-bg img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-position: center;
    object-fit: fill;
    image-rendering: auto;
}

.hero-inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-bottom: 62px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    width: 100%;
    max-width: 1088px;
    height: auto;
}

/* --- RadarKit (vanilla) --- */
.rk-hero__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-bottom: 31px;
}

.rk-hero__title {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.025em;
    text-align: center;
    font-size: 52px;
    line-height: 56px;
    max-width: 880px;
    color: #010101e0;
}

.rk-hero__line {
    font: inherit;
}

.rk-hero__subtitle {
    font-size: 18px;
    line-height: 27px;
    color: var(--color-text);
    text-align: center;
    max-width: 560px;
    letter-spacing: -0.01em;
}

.rk-hero__actions {
    display: flex;
    gap: 16px;
}

.rk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.15s ease-out, border-color 0.15s ease-out;
    padding: 0.6rem 1.2rem;
    border: 1px solid transparent;
    text-decoration: none;
}

.rk-btn--primary {
    color: #ffffff;
    background-color: var(--color-accent);
}
.rk-btn--primary:hover {
    background-color: #c75331;
}

.rk-btn--secondary {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08), inset 0 0 2px 1px rgba(255, 255, 255, 0.3);
}
.rk-btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 160px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('https://framerusercontent.com/images/fih04jP65WdTfPYuuRfBgLMQ4.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.testimonials-section > * {
    position: relative;
    z-index: 1;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: var(--max-width);
    margin-bottom: 80px;
}

.testimonial-card {
    background-color: var(--color-light);
    padding: 24px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .author {
    flex-grow: 1;
}

.author strong {
    display: block;
    font-size: 13px;
    font-weight: 500;
}
.author span {
    font-size: 13px;
    color: var(--color-grey);
}

.social-icon {
    font-weight: bold;
    font-size: 18px;
}

.testimonial-card blockquote {
    font-size: 13px;
    line-height: 20px;
    text-align: left;
}

/* --- Brands Slider --- */
.brands-slider {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}
.brands-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
}
.brands-track img {
    height: 40px;
    opacity: 0.6;
}
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- FAQ Section --- */
.faq-section {
    padding: 80px 20px 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.faq-list {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
details {
    background-color: var(--color-light);
    border-radius: 22px;
    padding: 20px;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
}
details[open] {
    box-shadow: 0 -6px 0 0 var(--color-light-grey) inset;
}
summary {
    font-weight: 500;
    font-size: 16px;
    list-style: none; /* Remove default marker */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
summary::-webkit-details-marker {
    display: none; /* Hide for Chrome */
}

/* --- SMOOTH ACCORDION & ICON STYLES --- */
.faq-arrow {
    width: 20px;
    height: 20px;
    fill: currentColor;
    background-color: rgb(239, 237, 235);
    border-radius: 999px;
    box-shadow: rgba(5, 5, 5, 0.05) 0px -2px 0px 0px inset;
    transition: transform 0.35s ease-in-out;
    transform: rotate(180deg); /* Default state: pointing up */
}

details[open] summary .faq-arrow {
    transform: rotate(0deg); /* Open state: pointing down */
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr; /* Collapsed by default */
    transition: grid-template-rows 0.35s ease-in-out;
}

details[open] .faq-answer {
    grid-template-rows: 1fr; /* Expanded when open */
}

.faq-answer p {
    overflow: hidden; /* Prevents content spill during animation */
    text-align: left;
    margin-top: 20px;
    font-size: 15px;
    line-height: 24px;
    color: var(--color-text);
    opacity: 0.7;
    max-width: 100%;
}


/* --- Footer --- */
.main-footer {
    position: relative;
    width: 80%;
    margin: 40px auto;
    border-radius: 26px;
    padding: 0;
}

.footer-bg {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    z-index: 0;
}
.footer-bg img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-position: center;
    object-fit: fill;
    image-rendering: auto;
}

.footer-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 80px 40px 40px;
}

.cta-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-bottom: none;
    margin-bottom: 60px;
}

.cta-banner h2 {
    max-width: 880px;
}

.cta-banner p {
    color: var(--color-grey);
}

/* Thin divider line under CTA button */
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(5,5,5,0), rgba(5,5,5,0.15), rgba(5,5,5,0));
    margin-top: 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-about .logo {
    font-size: 28px;
    margin-bottom: 8px;
}

.footer-about p {
    text-align: left;
    font-size: 15px;
    line-height: 24px;
    margin: 0;
    max-width: 320px;
    color: var(--color-grey);
}

.footer-about .btn-light {
    background-color: var(--color-light);
    border: 1px solid var(--color-light-grey);
    color: var(--color-text);
    align-self: flex-start;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links h4 {
    color: var(--color-text);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 12px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-text);
    padding: 0;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-grey);
    text-decoration: none;
}

.copyright {
    text-align: center;
    font-size: 13px;
    color: var(--color-grey);
    margin: 0 auto;
    padding: 0;
    display: block;
    width: 100%;
}

/* Monitor learn more link color override */
.monitor-learn-more a {
    color: #ffffff;
}
.monitor-learn-more a:hover {
    color: #ffffff;
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1200px) and (min-width: 781px) {
    .rk-hero__title {
        font-size: 44px;
        line-height: 48px;
    }
}

@media (max-width: 780px) and (min-width: 481px) {
    .rk-hero__title {
        font-size: 40px;
        line-height: 44px;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .rk-hero__title {
        font-size: 33px;
        line-height: 37px;
        margin-top: 12px;
    }

    .rk-hero__subtitle {
      line-height: 22px;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .testimonials-section {
        padding: 96px 24px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 36px; line-height: 40px; }
    h2 { font-size: 28px; line-height: 32px; }
    .nav-links { display: none; }
    .hero-section { padding-top: 100px; }
    .hero-bg img { object-fit: cover; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .testimonials-section {
        padding: 64px 20px;
    }
    .footer-inner { padding: 60px 20px; }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: left;
    }
    .footer-about {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }
    .footer-about p {
        text-align: center;
        max-width: 100%;
    }
    .footer-about .btn-light {
        align-self: center;
    }
    .footer-links {
        align-items: flex-start;
    }
    .footer-links ul {
        align-items: flex-start;
    }
}

/* Match Framer footer container responsiveness */
@media (max-width: 1199px) {
    .main-footer {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-image {
        width: 360px;
    }
}

.w-tabs {
    position: relative;
}

.w-tab-menu {
    position: relative;
}

.w-tab-link {
    vertical-align: top;
    text-align: left;
    cursor: pointer;
    color: #222;
    background-color: #ddd;
    padding: 9px 30px;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.w-tab-link.w--current {
    background-color: #c8c8c8;
}

.w-tab-content {
    display: block;
    position: relative;
    overflow: hidden;
}

.w-tab-pane {
    display: none;
    position: relative;
}

.w--tab-active {
    display: block;
}

:root {
    --letter-spacing-3: -.03em;
    --primary-black: #1e0059;
    --letter-spacing-1: -.01em;
    --line: #e4e0ec;
    --gray: #f8f6fe;
    --_responsive---padding-100px: 100px;
    --_responsive---margin-80px: 80px;
    --letter-spacing-2: -.02em;
    --white: white;
    --purple: #8067f6;
    --_responsive---padding-140px: 140px;
    --_responsive---padding-110px: 110px;
    --_responsive---border-radius-10px: 10px;
    --_responsive---border-radius-100px: 100px;
    --_responsive---border-radius-12px: 12px;
    --_responsive---border-radius-8px: 8px;
    --_responsive---margin-100px: 100px;
    --font-family: "Inter Tight", Arial, sans-serif;
}

.container {
    z-index: 2;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}


.paragraph-01 {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}

.paragraph-01.faq-subtitle,
.paragraph-01.features-tab-subtitle {
    color: #00000099;
}

.tag-text {
    color: var(--primary-black);
    font-family: Inter Tight, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-left: 5px;
}

.section-badge {
    border-radius: 100px;
    padding: .71px;
    position: relative;
    overflow: hidden;
    box-shadow: 2.49px 21.72px 17.05px #5d48ec0a;
}

.section-badge-inner {
    z-index: 1;
    background-color: var(--white);
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    padding: 3.8px 12.1px;
    display: flex;
    position: relative;
}

.badge-icon {
    filter: drop-shadow(0 3.92px 6.05px #6153ee4f);
}

.badge-outline {
    opacity: .17;
    background-image: linear-gradient(#2000601a, #200060);
    position: absolute;
    inset: 0%;
}

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

.section-header-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: space-between;
    align-items: flex-end;
    display: flex;
}

.section-header-wrap.center {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
}

.heading-wrap {
    width: 100%;
}

.section-header-content {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 548px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.section-text-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 15px;
    display: flex;
}

.features-01 {
    padding-top: var(--_responsive---padding-100px);
    padding-bottom: var(--_responsive---padding-140px);
}

.features-01-main-wrap {
    margin-top: var(--_responsive---margin-80px);
}

.features-tab {
    display: flex;
}

.features-tab-menu {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
    width: 100%;
    max-width: 522px;
    display: flex;
}

.features-tabs-content {
    border-radius: var(--_responsive---border-radius-12px);
    background: linear-gradient(to bottom, #3961f2 0%, #cfacac 50%, #fb6f00 100%);
    border: .79px solid #2000601a;
    width: 100%;
    max-width: 650px;
    height: auto;
    overflow: visible;
    margin-left: auto;
    display: none;
}

.features-tabs-content.hide {
    display: block;
}

.features-tab-link {
    background-color: #ddd0;
    padding: 0 0 0 40px;
    position: relative;
}

.features-tab-number {
    position: absolute;
    left: -16px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #f49d16 25%, #ed6f6f 50%, #f5576c 75%, #4facfe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.features-tab-link.w--current {
    background-color: #fff0;
}

.features-tab-top-wrap {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    display: flex;
}

.features-tab-bottom-wrap {
    overflow: hidden;
    transition: height 0.3s ease-in-out;
}

.features-list {
    padding-left: 20px;
}

.features-list.paragraph-01 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    margin-bottom: 0;
    padding-top: 20px;
    display: flex;
    font-size: 18px;
}

.features-tab-timeline {
    background-color: #1e00591a;
    width: 2px;
    height: 100%;
    position: absolute;
    inset: 0% auto 0% 0%;
    overflow: hidden;
}

.features-timeline-highlighter {
    background-color: #ff6b35;
    position: absolute;
    inset: 0%;
    transition: all 0.3s ease-in-out;
}

.features-tab-pane {
    height: 100%;
}

.features-tabs-content-wrap {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

.features-tab-image-wrap {
    width: 100%;
    max-width: 306px;
}

.features-tab-image {
    width: 100%;
}



.circle-item-wrap {
    z-index: 1;
    position: absolute;
    inset: 0%;
}

.circle-item {
    border-radius: var(--_responsive---border-radius-100px);
    background-image: linear-gradient(#ebf1ff, #fcebf9 50%, #fcf0eb);
    width: 53px;
    height: 53px;
    padding: 2px;
    box-shadow: 0 4px 22px #090f891f;
}

.circle-item.item-01 {
    position: relative;
    top: 80px;
    left: -12px;
}

.circle-item.item-02 {
    position: absolute;
    inset: 30px 18px auto auto;
}

.circle-item.item-03 {
    position: absolute;
    inset: auto auto 20px 30px;
}

.circle-item.item-04 {
    position: absolute;
    inset: auto -6px 60px auto;
}

.circle-item-inner {
    border-radius: var(--_responsive---border-radius-100px);
    background-color: var(--white);
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
}

.features-tabs-marquee-wrap {
    background-image: url("https://cdn.prod.website-files.com/683e98d0f471f1a56a0ed1a0/684bbd984edc83358eb44fb3_Circle%20Ellipse.avif");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    flex: none;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
}

.features-marquee-list {
    flex: none;
    display: flex;
}

.marquee-item {
    background-image: url("https://cdn.prod.website-files.com/683e98d0f471f1a56a0ed1a0/684bbf7b6c868ee25df1f442_Outline.svg");
    background-position: 50%;
    background-size: contain;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    margin-right: 20px;
    padding: 5px;
    display: flex;
}

.marquee-logo {
    filter: drop-shadow(0 10px 32px #15173d1a);
    width: 100%;
}

.integration-marquee-list-wrap {
    display: flex;
    position: relative;
}

.marquee-main-logo-wrap {
    z-index: 2;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    inset: 0%;
}

.hide {
    display: none;
}

@media screen and (max-width: 479px) {
    .w-tab-link {
        display: block;
    }

    body {
        --_responsive---padding-100px: 50px;
        --_responsive---margin-80px: 40px;
        --_responsive---padding-140px: 50px;
        --_responsive---padding-110px: 60px;
        --_responsive---border-radius-10px: 10px;
        --_responsive---border-radius-100px: 100px;
        --_responsive---border-radius-12px: 10px;
        --_responsive---border-radius-8px: 8px;
        --_responsive---margin-100px: 50px;
    }

 

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    

    .h4.faq-question,
    .h4.author-name,
    .h4.testimonials-text,
    .paragraph-01 {
        font-size: 16px;
        line-height: 24px;
    }

    .tag-text {
        font-size: 14px;
        line-height: 20px;
    }

    .section-badge-inner {
        grid-column-gap: 6px;
        grid-row-gap: 6px;
        padding: 3px 11px;
    }

    .section-header-wrap,
    .section-header-left {
        grid-column-gap: 12px;
        grid-row-gap: 12px;
    }

    .section-text-wrap {
        grid-column-gap: 12px;
        grid-row-gap: 12px;
        margin-top: 12px;
    }

    .features-tabs-content {
        height: 260px;
    }

    .features-tab-link {
        grid-column-gap: 28px;
        grid-row-gap: 28px;
        padding: 0 0 0 25px;
    }

    .features-tab-number {
        left: -12px;
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .features-tab-top-wrap {
        grid-column-gap: 8px;
        grid-row-gap: 8px;
    }

    .features-list.paragraph-01 {
        grid-column-gap: 6px;
        grid-row-gap: 6px;
        padding-top: 10px;
    }

    .features-tab-image-wrap {
        width: 200px;
    }

    

    .circle-item {
        width: 36px;
        height: 36px;
        padding: 1.5px;
    }

    .circle-item.item-01 {
        left: -14px;
    }

    .circle-item.item-02 {
        right: 8px;
    }

    .circle-item.item-03 {
        left: 16px;
    }

    .circle-item.item-04 {
        right: -10px;
    }

    .circle-item-icon {
        width: 14px;
    }

    .marquee-item {
        margin-right: 16px;
        padding: 4px;
    }

    .marquee-main-logo {
        width: 64px;
        height: 64px;
    }
}

@media screen and (max-width: 991px) {
    body {
        --_responsive---padding-100px: 80px;
        --_responsive---margin-80px: 60px;
        --_responsive---padding-140px: 80px;
        --_responsive---padding-110px: 80px;
        --_responsive---border-radius-10px: 10px;
        --_responsive---border-radius-100px: 100px;
        --_responsive---border-radius-12px: 12px;
        --_responsive---border-radius-8px: 8px;
        --_responsive---margin-100px: 80px;
    }

   

    .section-header-wrap {
        flex-flow: column;
        align-items: flex-start;
    }

    .features-tab {
        flex-flow: column;
    }

    .features-tab-menu {
        grid-column-gap: 32px;
        grid-row-gap: 32px;
        max-width: 100%;
    }

    .features-tabs-content {
        justify-content: center;
        align-items: center;
        max-width: 100%;
        height: auto;
        margin-right: auto;
        display: flex;
        overflow: visible;
    }

    .features-tabs-content.hide {
        display: none;
    }

    .features-tab-link {
        grid-column-gap: 40px;
        grid-row-gap: 40px;
        flex-flow: row;
        justify-content: flex-start;
        align-items: flex-start;
        padding-left: 25px;
        display: flex;
    }

    .features-tab-number {
        left: -12px;
        top: 5px;
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .features-tab-top-wrap {
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }

    .features-list.paragraph-01 {
        grid-column-gap: 8px;
        grid-row-gap: 8px;
        padding-top: 12px;
    }

    .features-tab-link-inner {
        flex: none;
        width: 40%;
    }

    .features-tab-timeline {
        display: none;
    }

    .features-tab-image-wrap {
        width: 280px;
        max-width: 100%;
    }

    

    .circle-item {
        width: 48px;
        height: 48px;
    }

    .marquee-main-logo {
        width: 70px;
        height: 70px;
    }
}

@media screen and (max-width: 767px) {
    body {
        --_responsive---padding-100px: 60px;
        --_responsive---margin-80px: 48px;
        --_responsive---padding-140px: 60px;
        --_responsive---padding-110px: 72px;
        --_responsive---border-radius-10px: 10px;
        --_responsive---border-radius-100px: 100px;
        --_responsive---border-radius-12px: 12px;
        --_responsive---border-radius-8px: 8px;
        --_responsive---margin-100px: 60px;
    }

    


    .section-badge-inner {
        grid-column-gap: 8px;
        grid-row-gap: 8px;
    }

    .section-header-wrap {
        grid-column-gap: 16px;
        grid-row-gap: 16px;
    }

    .section-text-wrap {
        grid-column-gap: 16px;
        grid-row-gap: 16px;
        margin-top: 14px;
    }

    .features-tabs-content {
        height: auto;
        overflow: visible;
    }

    .features-tab-link {
        grid-column-gap: 32px;
        grid-row-gap: 32px;
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 0 0 0 22px;
    }

    .features-tab-number {
        left: -5px;
        width: 23px;
        height: 23px;
        font-size: 11px;
    }

    .features-tab-link-inner {
        width: 100%;
    }

    .features-tab-image-wrap {
        width: 220px;
    }

    

    .circle-item {
        width: 40px;
        height: 40px;
    }

    .circle-item.item-02 {
        right: 12px;
    }

    .circle-item.item-03 {
        left: 20px;
    }

    .circle-item.item-04 {
        right: -7px;
    }

    .marquee-item {
        margin-right: 18px;
        padding: 4.5px;
    }

    .marquee-main-logo {
        width: 68px;
        height: 68px;
    }
}

.h3-features {
    font-weight: 600;
}

/* --- Override: make uploaded feature images use 80% width on all screens --- */
.features-tab-image-wrap {
    width: 100% !important;
    max-width: none !important;
}
.features-tab-image {
    width: 100% !important;
    height: auto !important;
    border-radius: 15px;
}