:root {
    --brand-primary: #009cf5;
    --brand-primary-hover: #2494d6;
    --brand-subtle: #eaf7ff;
    --brand-navy: #0f172a;
    --content-primary: #111827;
    --content-secondary: #4b5563;
    --content-tertiary: #9ca3af;
    --line-subtle: #e5e7eb;
    --line-default: #d1d5db;
    --slate-400: #94a3b8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
    color: var(--content-primary);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Override Bootstrap defaults to match React/Tailwind tokens */
.text-content-secondary {
    color: var(--content-secondary) !important;
}

.text-content-tertiary {
    color: var(--content-tertiary) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--content-primary);
}

blockquote {
    margin-bottom: 0;
}

.btn-brand,
.btn-brand-outline,
.btn-brand-outline-brand,
.btn-brand-white,
.btn-brand-outline-white,
.btn-portal,
.plan-cta,
.showcase-dot,
.faq-toggle,
.showcase-toggle {
    font-family: inherit;
}

/* Site container — same as React .container-site */
.container-site {
    max-width: 1250px;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.features-split-section {
    padding: 4rem 0;
}
.navbar-expand-md .navbar-nav .nav-link {
    padding: 0px;
    line-height: 19px;
}

.navbar-expand-md .navbar-nav {
    margin-left: 22rem;
}

@media (min-width: 576px) {
    .container-site {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 992px) {
    .container-site {
        padding-left: 7.5rem;
        padding-right: 7.5rem;
    }
}

@media (min-width: 1200px) {
    .container-site {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Header / navbar */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid var(--line-subtle);
    backdrop-filter: blur(8px);
    background: linear-gradient(282deg, #fff 0.57%, #eaf7ff 100.37%);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scroll-active {
    background: #fff;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.site-navbar {
    min-height: 70px;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    box-sizing: border-box;
}

.site-navbar .container-site {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .site-navbar {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 992px) {
    .site-navbar {
        padding-left: 7.5rem;
        padding-right: 7.5rem;
    }
}

@media (min-width: 1200px) {
    .site-navbar {
        padding-left: 0;
        padding-right: 0;
    }
}

.site-logo {
    height: 40px;
    object-fit: contain;
}

.site-brand-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--brand-primary);font-family: "Plus Jakarta Sans", sans-serif;
        color: var(--content-primary);
}

.navbar-brand {
    gap: 0.375rem;
    
}

.site-nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--content-secondary) !important;
    padding-bottom: 0.25rem !important;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav-link:hover {
    color: var(--brand-primary-hover) !important;
}

.site-nav-link.active {
    font-weight: 600;
    color: var(--brand-primary-hover) !important;
    border-bottom-color: var(--brand-primary-hover);
}

.site-nav-link-mobile {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--content-secondary);
    border-radius: 0.5rem;
    padding: 0.625rem 0.75rem;
    text-decoration: none;
    display: block;
}

.site-nav-link-mobile:hover {
    background: var(--brand-subtle);
    color: var(--brand-primary);
}

.collapse.navbar-collapse {
    overflow: hidden;
}

.btn-portal {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--brand-primary-hover);
    color: var(--content-primary);
    background: rgba(255, 255, 255, 0.6);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-portal:hover {
    border-color: var(--brand-primary-hover);
    color: var(--brand-primary);
    background: rgba(255, 255, 255, 0.6);
}

/* Make toggler icon-only to avoid layout shift on open */
.navbar-toggler {
    background: transparent;
    border: none;
    padding: 0.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.25rem;
    height: 1rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    color: var(--content-tertiary);
}

.mobile-menu {
    border-top: 1px solid var(--line-subtle);
    background: #fff;
    padding: 0.5rem 1.25rem 1.5rem;
    /* prevent header jump: ensure mobile-menu doesn't change header layout unexpectedly */
    margin: 0;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .site-nav-list {
        gap: 2rem;
    }
}

.bg-light-tone {
    background: linear-gradient(282deg, #fff 0.57%, #eaf7ff 100.37%);
}

.bg-about {
    background: linear-gradient(4deg, #fff -1.12%, #eaf7ff 114.19%);
}

.bg-brand-gradient {
    background: linear-gradient(135deg, #3ba3e0 0%, #0ea5e9 100%);
}

.bg-partners {
    background: #eef7ff4f;
}

.bg-brand-subtle {
    background: var(--brand-subtle);
}

.shadow-card {
    box-shadow: 0 4px 24px rgba(17, 24, 39, 0.06);
}

.shadow-card-lg {
    box-shadow: 0 12px 40px rgba(0, 156, 245, 0.12);
}

.section-badge {
    display: inline-block;
    border-radius: 999px;
    background: var(--brand-primary);
    padding: 0.375rem 1rem;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    color: #fff;
}

.section-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    text-transform: none;
    letter-spacing: normal;
}

.section-badge-inline svg {
    stroke: var(--content-secondary);
}

/* .section-badge-normal {
            text-transform: none;
            letter-spacing: normal;
        } */

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--content-primary);
    font-family: "Plus Jakarta Sans", sans-serif;
}

@media (min-width: 576px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-title-bold {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--content-primary);
}

@media (min-width: 576px) {
    .section-title-bold {
        font-size: 2.5rem;
    }
}

.section-title-faq {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--content-primary);
}

@media (min-width: 576px) {
    .section-title-faq {
        font-size: 2.5rem;
    }
}

.section-desc {
    font-size: 1rem;
    line-height: 1.625;
    color: var(--content-secondary);
    max-width: 42rem;
}

.section-desc-md {
    font-size: 1rem;
    line-height: 1.625;
    color: var(--content-secondary);
    max-width: 36rem;
}

.text-brand {
    color: var(--brand-primary);
}

.btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--brand-primary);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.btn-brand:hover {
    background: var(--brand-primary-hover);
    color: #fff;
}

.btn-brand-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid var(--line-default);
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--content-primary);
    background: rgba(255, 255, 255, 0.6);
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
}

.btn-brand-outline:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.btn-brand-outline-brand {
    border-color: var(--brand-primary-hover);
}

.btn-brand-outline-brand:hover {
    border-color: var(--brand-primary-hover);
    color: var(--brand-primary);
}

.btn-brand-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-brand-white {
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-primary-hover);
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-brand-white:hover {
    background: var(--brand-subtle);
    color: var(--brand-primary-hover);
}

.btn-brand-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: transparent;
}

.btn-brand-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hero-section {
    padding: 3.5rem 0;
}

@media (min-width: 992px) {
    .hero-section {
        padding: 5rem 0;
    }
}

.hero-copy {
    max-width: 576px;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--content-primary);
    font-family: "Plus Jakarta Sans", sans-serif;
}

@media (min-width: 576px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-title span {
        line-height: 64px;
    }
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

.stats-bar {
    background: var(--brand-primary);
    height: 150px;
    display: flex;
    align-items: center;
}

.stat-item {
    color: #fff;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
}

@media (min-width: 576px) {
    .stat-value {
        font-size: 2rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 576px) {
    .stat-label {
        font-size: 1rem;
    }
}

.stat-divider {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

@media (max-width: 575.98px) {
    .stat-item:nth-child(n+3) {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 0.5rem;
    }
}

.about-section {
    padding: 4rem 0;
}

@media (min-width: 992px) {
    .about-section {
        padding: 5rem 0;
    }
}

.about-img {
    height: 340px;
    width: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}

@media (min-width: 992px) {
    .about-img {
        height: 450px;
    }
}

.about-float-badge {
    position: absolute;
    bottom: -2.5rem;
    left: 1rem;
    border-radius: 1rem;
    background: var(--brand-primary);
    padding: 0.75rem 1.25rem;
    color: #fff;
}

@media (min-width: 576px) {
    .about-float-badge {
        left: -1.5rem;
    }
}

.about-float-badge .badge-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-float-badge .badge-label {
    font-size: 0.75rem;
    margin: 0;
}

.about-bullet-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--content-primary);
    margin-bottom: 0.25rem;
}

.about-bullet-text {
    font-size: 0.875rem;
    line-height: 1.625;
    color: var(--content-secondary);
    margin: 0;
}

.check-circle {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: var(--brand-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.showcase-section {
    padding: 4rem 0;
}

.showcase-preview {
    max-width: 464px;
}

@media (min-width: 992px) {
    .showcase-section {
        padding: 5rem 0;
    }
}
.showcase-preview{
    max-width:464px;
    height:420px;
    overflow:hidden;
}

.showcase-preview-wrap {
    overflow: hidden;
    border-radius: 1rem;
    max-width: 400px;
    padding: 0.5rem;
    box-shadow: 0 12px 40px rgba(0, 156, 245, 0.12);
}

@media (min-width: 576px) {
    .showcase-preview-wrap {
        padding: 0.75rem;
    }
}

.showcase-preview img {
    display: none;
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 0.75rem;
}
.showcase-wrap:has(#sc0.show) .showcase-img-0,
.showcase-wrap:has(#sc0.collapsing) .showcase-img-0 {
    display: block;
}

.showcase-wrap:has(#sc1.show) .showcase-img-1,
.showcase-wrap:has(#sc1.collapsing) .showcase-img-1 {
    display: block;
}

.showcase-wrap:has(#sc2.show) .showcase-img-2,
.showcase-wrap:has(#sc2.collapsing) .showcase-img-2 {
    display: block;
}

.showcase-wrap:has(#sc3.show) .showcase-img-3,
.showcase-wrap:has(#sc3.collapsing) .showcase-img-3 {
    display: block;
}

.showcase-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: #d1d5db;
    transition: all 0.3s;
}

.showcase-wrap:has(#sc0.show) .dot-0,
.showcase-wrap:has(#sc0.collapsing) .dot-0,
.showcase-wrap:has(#sc1.show) .dot-1,
.showcase-wrap:has(#sc1.collapsing) .dot-1,
.showcase-wrap:has(#sc2.show) .dot-2,
.showcase-wrap:has(#sc2.collapsing) .dot-2,
.showcase-wrap:has(#sc3.show) .dot-3,
.showcase-wrap:has(#sc3.collapsing) .dot-3 {
    width: 2rem;
    background: var(--brand-primary);
}

.showcase-item {
    border-bottom: 1px solid var(--line-subtle);
}

.showcase-item:last-child {
    border-bottom: none;
}

.showcase-toggle {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    text-align: left;
}

.showcase-item:has(.collapse.show) .showcase-title,
.showcase-item:has(.collapse.collapsing) .showcase-title {
    color: var(--content-primary);
}

.showcase-item:not(:has(.collapse.show)):not(:has(.collapse.collapsing)) .showcase-title {
    color: var(--content-secondary);
}

.showcase-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--brand-primary);
    background: var(--brand-subtle);
    color: var(--brand-primary);
}

.showcase-item:has(.collapse.show) .showcase-icon,
.showcase-item:has(.collapse.collapsing) .showcase-icon {
    background: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
}

.showcase-title {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 600;
}

@media (min-width: 576px) {
    .showcase-title {
        font-size: 1.5rem;
    }
}

.showcase-plus {
    transition: transform 0.3s;
    color: #9ca3af;
}

.showcase-item:has(.collapse.show) .showcase-plus,
.showcase-item:has(.collapse.collapsing) .showcase-plus {
    transform: rotate(45deg);
}

.showcase-body-text {
    padding: 0 0 0.5rem 3.75rem;
    font-size: 1rem;
    color: var(--content-secondary);
    line-height: 1.625;
}

.showcase-body-actions {
    padding: 0.5rem 0 1.5rem 3.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.features-split-section {
    padding: 4rem 0;
}

.features-split-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.features-split-row {
    min-height: 420px;
}

.features-split-copy {
    max-width: 660px;
}

.features-split-copy h3 {
    margin: 0 0 1.25rem;
    color: var(--content-primary);
    font-size: clamp(2rem, 3.3vw, 3.25rem);
    font-weight: 700;
    line-height: 1.14;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.features-split-copy p {
    margin: 0 0 3.75rem;
    color: var(--content-primary);
    font-size: 1.25rem;
    line-height: 1.35;
}

.features-split-copy .btn-brand {
    min-width: 144px;
    justify-content: center;
}

.features-split-img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: contain;
}

@media (min-width: 992px) {
    .features-split-section {
        padding: 5rem 0;
    }

    .features-split-row:nth-child(odd) .features-split-copy {
        padding-right: 2rem;
    }

    .features-split-row:nth-child(even) .features-split-copy {
        margin-left: auto;
        padding-left: 2rem;
    }

    .features-split-row:nth-child(odd) .features-split-copy .btn-brand {
        margin-left: auto;
    }

    .features-split-row:nth-child(even) .features-split-copy .btn-brand {
        margin-left: auto;
    }
}

@media (max-width: 991.98px) {
    .features-split-list {
        gap: 4rem;
    }

    .features-split-row {
        min-height: 0;
    }

    .features-split-copy p {
        margin-bottom: 1.75rem;
        font-size: 1.0625rem;
    }

    .features-split-img {
        max-height: 360px;
    }
}

.partners-section {
    padding: 60px 120px;
}

.partners-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2494D6;
}

@media (min-width: 576px) {
    .partners-title {
        font-size: 1.5rem;
    }
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.25rem;
    align-items: center;

}

.partner-logo {
    height: 2rem;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: 0.2s ease, transform 0.2s ease;
}

.partner-logo:hover {
    opacity: 1;
    filter: none;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .partners-section {
        padding: 40px 1.5rem;
    }

    .partner-logos {
        gap: 1rem;
    }

    .partner-logo {
        height: 1.75rem;
        max-width: 140px;
    }
}

.partner-logo:hover {
    opacity: 1;
    filter: none;
}

.security-section {
    padding: 4rem 0;
}

@media (min-width: 992px) {
    .security-section {
        padding: 5rem 0;
    }
}

.security-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-img {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
}

.getstart-section {
    padding: 4rem 0;
}

@media (min-width: 992px) {
    .getstart-section {
        padding: 5rem 0;
    }
}

.getstart-step-img {
    width: 281px;
    height: 281px;
    object-fit: contain;
}

.getstart-step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--content-primary);
    margin-bottom: 1rem;
}

.getstart-step-text {
    font-size: 1rem;
    line-height: 1.625;
    color: var(--content-secondary);
    margin: 0;
}

.getstart-connector {
    position: absolute;
    top: 14%;
    left: 14%;
    width: 74%;
    z-index: 0;
    pointer-events: none;
    display: none;
}

@media (min-width: 992px) {
    .getstart-connector {
        display: block;
    }
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--content-primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 576px) {
    .feature-title {
        font-size: 1.5rem;
    }
}

.feature-text {
    font-size: 1rem;
    line-height: 20px;
    color: var(--content-secondary);
    margin: 0;
}

.features-section {
    padding: 4rem 0;
}

@media (min-width: 992px) {
    .features-section {
        padding: 5rem 0;
    }
}

.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid var(--line-subtle);
    background: #fff;
    padding: 1rem;
    box-shadow: 0 4px 24px rgba(17, 24, 39, 0.06);
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 12px 40px rgba(0, 156, 245, 0.12);
}

.feature-number {
    position: absolute;
    right: 1.25rem;
    top: 1rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--brand-subtle);
    pointer-events: none;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--brand-subtle);
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pricing-section {
    padding: 4rem 0;
}

@media (min-width: 992px) {
    .pricing-section {
        padding: 5rem 0;
    }
}

.billing-toggle {
    border: 1px solid var(--line-subtle);
    border-radius: 999px;
    background: #fff;
    padding: 0.25rem;
    display: inline-flex;
    gap: 0.25rem;
}

.billing-toggle .nav-link {
    border-radius: 999px;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--content-secondary);
    border: none;
    background: transparent;
    transition: color 0.2s, background 0.2s;
}

.billing-toggle .nav-link:hover {
    color: var(--content-primary);
}

.billing-toggle .nav-link.active {
    background: var(--brand-primary);
    color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.billing-toggle .nav-link.active:hover {
    color: #fff;
}

.plan-card {
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card-default {
    border: 1px solid var(--line-subtle);
    background: #fff;
    box-shadow: 0 4px 24px rgba(17, 24, 39, 0.06);
}

.plan-card-featured {
    background: var(--brand-navy);
    color: #fff;
    box-shadow: 0 12px 40px rgba(0, 156, 245, 0.12);
}

.plan-price {
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1;
}

.plan-price-row {
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.plan-period {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--content-secondary);
    padding-bottom: 0.125rem;
}

.plan-period-featured,
.plan-desc-featured {
    color: var(--slate-400);
}

.plan-desc {
    font-size: 0.875rem;
    line-height: 1.625;
    color: var(--content-secondary);
}

.plan-tag {
    position: absolute;
    right: 0;
    top: 1rem;
    border-radius: 999px 0 0 999px;
    background: var(--brand-primary);
    padding: 0.25rem 0.75rem;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
}

.plan-check {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.plan-check-default {
    background: var(--brand-subtle);
    color: var(--brand-primary);
}

.plan-check-featured {
    background: var(--brand-primary);
    color: #fff;
}

.plan-cta {
    margin-top: 3.5rem;
    width: 100%;
    border-radius: 0.75rem;
    padding: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
}

.plan-cta-default {
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
    background: transparent;
}

.plan-cta-default:hover {
    background: var(--brand-subtle);
}

.plan-cta-featured {
    background: var(--brand-primary);
    color: #fff;
}

.plan-cta-featured:hover {
    background: var(--brand-primary-hover);
    color: #fff;
}

.testimonials-section {
    padding: 4rem 0;
}

@media (min-width: 992px) {
    .testimonials-section {
        padding: 5rem 0;
    }
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.625;
    color: var(--content-primary);
}

.testimonial-card {
    border: 1px solid var(--line-subtle);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: box-shadow 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(0, 156, 245, 0.12);
}

.star-icon {
    color: var(--brand-primary);
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.avatar-circle {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: var(--brand-primary);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-section {
    padding: 4rem 0;
}

@media (min-width: 992px) {
    .faq-section {
        padding: 5rem 0;
    }
}

.faq-item {
    border: 1px solid var(--line-subtle);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 4px 24px rgba(17, 24, 39, 0.06);
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--content-primary);
}

.faq-toggle:not(.collapsed) .faq-minus,
.faq-item:has(.collapse.show) .faq-minus,
.faq-item:has(.collapse.collapsing) .faq-minus {
    display: inline;
}

.faq-toggle:not(.collapsed) .faq-plus,
.faq-item:has(.collapse.show) .faq-plus,
.faq-item:has(.collapse.collapsing) .faq-plus {
    display: none;
}

.faq-toggle.collapsed .faq-minus,
.faq-item:not(:has(.collapse.show)):not(:has(.collapse.collapsing)) .faq-minus {
    display: none;
}

.faq-toggle.collapsed .faq-plus,
.faq-item:not(:has(.collapse.show)):not(:has(.collapse.collapsing)) .faq-plus {
    display: inline;
}

.faq-answer {
    padding: 0 2.5rem 1.25rem 3.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--content-secondary);
}

.demo-cta {
    position: relative;
    overflow: hidden;
}

.demo-cta-ring {
    position: absolute;
    border: 1px dashed rgb(255, 255, 255);
    border-radius: 999px;
    pointer-events: none;
}

.demo-cta-inner {
    position: relative;
    padding: 4rem 0;
    text-align: center;
}

@media (min-width: 992px) {
    .demo-cta-inner {
        padding: 7.75rem 0;
    }
}

.demo-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.demo-title {
    max-width: 64rem;
    margin: 0 auto;
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
}

@media (min-width: 576px) {
    .demo-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 992px) {
    .demo-title {
        font-size: 3rem;
    }
}

.demo-desc {
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 576px) {
    .demo-desc {
        font-size: 1.25rem;
    }
}

.icon-sm {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-md {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-lg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer {
    position: relative;
    overflow: hidden;
    background: var(--brand-subtle);
}

.footer-watermark {
    position: absolute;
    right: -2.5rem;
    bottom: 0;
    width: 18rem;
    opacity: 0.1;
    pointer-events: none;
    display: none;
}

@media (min-width: 992px) {
    .footer-watermark {
        display: block;
    }
}

.footer-inner {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 2.5rem;
}

@media (min-width: 992px) {
    .footer-inner {
        padding-top: 6rem;
    }
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--content-primary);
}

.footer-link {
    font-size: 1rem;
    color: var(--content-secondary);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--brand-primary);
}

.footer-about {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--content-secondary);
}

.footer-contact-item {
    font-size: 1rem;
    color: var(--content-secondary);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-contact-item:hover {
    color: var(--brand-primary);
}

.footer-contact-text {
    font-size: 0.875rem;
    color: var(--content-secondary);
    font-weight: 500;
}

.footer-bottom {
    margin-top: 5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line-subtle);
}

.footer-copy {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--content-tertiary);
}

.footer-social {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background: #2494d6;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(17, 24, 39, 0.06);
    transition: background 0.2s;
}

.footer-social:hover {
    background: var(--brand-primary);
    color: #fff;
}

/* Contact page */
.contact-section {
    padding: 4.5rem 0;
    background: #fff;
}

.contact-layout {
    align-items: flex-start;
}

.contact-info {
    padding-top: 0.25rem;
}

.contact-info h1 {
    margin: 0 0 1.75rem;
    color: var(--content-primary);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-intro {
    max-width: 640px;
    margin: 0 0 2.25rem;
    color: var(--content-secondary);
    font-size: 1.25rem;
    line-height: 1.5;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.125rem;
}

.contact-info-icon {
    width: 3.625rem;
    height: 3.625rem;
    border-radius: 0.75rem;
    background: #eff7ff;
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item h2 {
    margin: 0 0 0.25rem;
    color: var(--content-primary);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
}

.contact-info-item p {
    margin: 0;
    color: var(--content-secondary);
    font-size: 1.125rem;
    line-height: 1.35;
}

.contact-info-item .contact-muted {
    color: #9aa4b5;
}

.contact-form-card {
    border: 1px solid #e8edf3;
    border-radius: 1.5rem;
    background: #fff;
    padding: 2rem;
    box-shadow: 0 3px 18px rgba(17, 24, 39, 0.08);
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #25304a;
    font-size: 1.125rem;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: #fff;
    color: var(--content-primary);
    font: inherit;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input {
    height: 4rem;
    padding: 0 1.25rem;
}

.contact-form textarea {
    min-height: 9.75rem;
    resize: vertical;
    padding: 1rem 1.25rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 0.2rem rgba(10, 140, 216, 0.12);
}

.contact-form textarea::placeholder {
    color: #9aa4b5;
}

.contact-submit {
    width: 100%;
    min-height: 4.5rem;
    border: none;
    border-radius: 0.875rem;
    background: var(--brand-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    transition: background 0.2s, transform 0.2s;
}

.contact-submit:hover {
    background: var(--brand-primary-hover);
    transform: translateY(-1px);
}

@media (min-width: 992px) {
    .contact-section {
        padding: 5rem 0;
    }

    .contact-form-card {
        padding: 2.25rem;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 3.5rem 0;
    }

    .contact-intro,
    .contact-info-item p {
        font-size: 1rem;
    }

    .contact-form-card {
        padding: 1.25rem;
        border-radius: 1rem;
    }

    .contact-form label {
        font-size: 1rem;
    }

    .contact-submit {
        min-height: 3.75rem;
        font-size: 1.125rem;
    }
}

/* Contact us section */
.demo-cta-inner .contact-card{
    background:rgba(255, 255, 255, 0.2);
    border-radius:18px;
    padding:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition: background 0.2s;
}
.demo-cta-inner .custom-input{
    height:55px;
    border-radius:10px;
    border:1px solid #dcdcdc;
    font-size:16px;
}

.demo-cta-inner textarea.custom-input{
    height:140px;
    resize:none;
    padding-top:15px;
}
.demo-cta-inner .demo-btn{
    height:52px;
    border:none;
    border-radius:10px;
    background:#0d93eb;
    color:#fff;
    font-size:18px;
    font-weight:600;
}

.demo-cta-inner .demo-btn:hover{
    background:#087bd1;
    color:#fff;
}
@media(max-width:768px){
.demo-cta-inner .contact-card{
    padding:20px;
}
}
/* Contact us section */
