:root {
    --green: #178758;
    --lt-green: #1FB274;
    --black: #38354F;
    --lt-blue: #BCDAFF;
    --dark-green: #178758;
    --dark-blue: #0071EB;
    --med-blue: #BCDAFF;
    --red: #b91c1c;
    --dark-red: #8b1414;
    --lt-blue-gradient: linear-gradient(180deg, #FFF 0%, #BCDAFF 100%);
    --lt-blue-gradient-mid: linear-gradient(180deg, #FFF -30%, #BCDAFF 100%);
    --green-gradient: linear-gradient(180deg, #29C985 0%, #139860 100%);
}

body {
    font-family: 'Lato', sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: var(--black);
}

/* Document Preview Styles */
.demo-hero-section {}

/* Level 1: Top Deck */
.demo-top-deck {
    text-align: center;
    margin-bottom: 3rem;
}

/* Level 2: Processing Area */
.demo-processing-area {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.demo-left-column {
    position: sticky;
    top: 2rem;
}

.demo-right-column {
    width: 100%;
}

/* Did You Know Card */
.did-you-know-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
}

.dyk-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.dyk-content {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    min-height: 120px;
    margin: 0 0 1.5rem 0;
    text-align: center;
    transition: opacity 0.3s ease;
}

.dyk-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #f3f4f6;
}

.dyk-nav-btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--green);
    color: var(--green);
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dyk-nav-btn:hover {
    background: var(--green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 135, 88, 0.3);
}

.demo-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 1rem 0;
    text-align: center;
}

.demo-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin: 0 0 3rem 0;
    text-align: center;
}

.demo-next-hint {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.125rem;
    color: #374151;
    font-weight: 600;
}

.demo-documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Loading Zone Styles */
.demo-loading-zone {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Intro Animation */
.intro-animation {
    max-width: 600px;
    margin: 0 auto;
}

.intro-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    opacity: 0;
    animation: introItemSlideIn 0.4s ease-out forwards;
}

.intro-item:nth-child(1) {
    animation-delay: 0s;
}

.intro-item:nth-child(2) {
    animation-delay: 0.8s;
}

.intro-item:nth-child(3) {
    animation-delay: 1.6s;
}

.intro-item:nth-child(4) {
    animation-delay: 2.4s;
}

.intro-item:nth-child(5) {
    animation-delay: 3.2s;
}

@keyframes introItemSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.intro-item.complete {
    background: #f0fdf4;
    border: 2px solid var(--green);
}

.intro-icon {
    font-size: 1.5rem;
    min-width: 24px;
    text-align: center;
}

.intro-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
}

.loading-zone-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.loading-doc-scanner {
    position: relative;
    width: 100%;
    height: 400px;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes thumbnailCycle {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    90% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
}

.scanner-thumbnail {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0;
    animation: thumbnailCycle 3.2s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 2px solid #dee2e6;
}

/* Last thumbnail stays visible */
.scanner-thumbnail-last {
    animation: thumbnailFadeInStay 1s ease-out forwards !important;
}

@keyframes thumbnailFadeInStay {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.scanner-pages {
    position: relative;
    width: 100%;
    height: 100%;
}

.scanning-page {
    position: absolute;
    width: 80%;
    height: 80%;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    top: 10%;
    left: 10%;
    animation: pageScan 0.5s ease-out;
}

@keyframes pageScan {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.scanner-line-horizontal {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(23, 135, 88, 0.3) 45%,
            rgba(23, 135, 88, 0.8) 50%,
            rgba(23, 135, 88, 0.3) 55%,
            transparent 100%);
    box-shadow: 0 0 20px rgba(23, 135, 88, 0.6);
    animation: scanHorizontal 2s ease-in-out infinite;
}

@keyframes scanHorizontal {

    0%,
    100% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }
}

.loading-page-counter {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
}

.loading-progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.loading-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green) 0%, var(--dark-green) 100%);
    width: 0%;
    transition: width 0.3s ease;
}

.loading-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1.5rem 0;
}

.metadata-progress-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.metadata-progress-item.processing {
    background: #e0f2fe;
    border: 2px solid #0A6DEF;
}

.metadata-progress-item.complete {
    background: #f0fdf4;
    border: 2px solid var(--green);
}

.progress-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.progress-content {
    flex: 1;
}

.progress-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
}

.progress-detail {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

.outline-item {
    padding: 0.25rem 0;
    color: #374151;
}

.question-preview {
    font-style: italic;
    color: #0A6DEF;
}

.accessibility-info {
    color: var(--green);
    font-weight: 600;
}

/* Level 3: Document Cards (No scanning effect) */
.demo-doc-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    background: #f3f4f6;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.demo-doc-thumbnail::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.95) 100%);
    pointer-events: none;
}

.demo-doc-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

@media (max-width: 1024px) {
    .demo-processing-area {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .demo-left-column {
        position: static;
    }

    .did-you-know-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .loading-zone-content {
        grid-template-columns: 1fr;
    }
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.demo-document-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    position: relative;
    min-height: 480px;
}

.demo-document-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--green);
}

@keyframes thumbnailFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.demo-doc-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.demo-doc-badge.processing {
    color: #0A6DEF;
    border: 2px solid #0A6DEF;
    animation: badgePulse 2s ease-in-out infinite;
}

.demo-doc-badge.ready {
    color: var(--green);
    border: 2px solid var(--green);
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.demo-doc-content {
    padding: 1.75rem;
    background: white;
}

.demo-doc-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1.25rem 0;
    line-height: 1.4;
    background: white;
    padding: 0.5rem 0;
}

/* Metadata Styles */
.demo-doc-metadata {
    margin: 1.25rem 0;
    min-height: 120px;
}

/* Skeleton Loading */
.metadata-loading {
    transition: opacity 0.3s ease;
}

@keyframes skeletonPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.metadata-skeleton {
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeletonPulse 1.5s ease-in-out infinite;
    border-radius: 4px;
    margin-bottom: 10px;
}

.metadata-skeleton.short {
    width: 60%;
}

/* Metadata Content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.5s ease-out backwards;
}

.metadata-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    padding: 0.625rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.metadata-item:hover {
    background: #e9ecef;
    transform: translateX(4px);
}

.metadata-item.summary {
    background: transparent;
}

.metadata-item.summary:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.metadata-icon {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.metadata-item span {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #374151;
}

.metadata-item.tags {
    display: flex;
    gap: 0.5rem;
    background: transparent;
    padding: 0;
}

.metadata-item.tags:hover {
    transform: none;
    background: transparent;
}

.metadata-tag {
    display: inline-block;
    padding: 4px 8px;
    background: white;
    color: var(--green);
    font-size: 0.0rem;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 0px solid var(--green);
    box-shadow: 0 2px 6px rgba(23, 135, 88, 0.15);
    transition: all 0.3s ease;
}

.metadata-tag:hover {
    transform: translateY(-2px);
    background: var(--green);
    color: white;
    box-shadow: 0 4px 12px rgba(23, 135, 88, 0.4);
}

.demo-doc-link {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--green) 0%, var(--dark-green) 100%);
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(23, 135, 88, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.demo-document-card:hover .demo-doc-link {
    opacity: 1;
    pointer-events: auto;
}

.demo-doc-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 135, 88, 0.4);
}

.demo-doc-link::after {
    content: '→';
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.demo-doc-link:hover::after {
    transform: translateX(4px);
}

/* Manual Tour Button */
.tour-manual-start {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--green) 0%, var(--dark-green) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(23, 135, 88, 0.3);
    transition: all 0.3s ease;
}

.tour-manual-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 135, 88, 0.4);
}

@media (max-width: 768px) {
    .demo-documents-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .demo-doc-scanner {
        height: 200px;
    }
}

/* DocAccess Tour Styles */
.docaccess-tour-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 999999998;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.docaccess-tour-popup {
    position: fixed;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 999999999;
    max-width: 450px;
    min-width: 350px;
    animation: tourPopupSlideIn 0.4s ease-out;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    pointer-events: auto;
}

@keyframes tourPopupSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-popup-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-popup-header.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.tour-popup-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.tour-skip-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.tour-skip-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.tour-popup-body {
    padding: 1.5rem;
}

.tour-popup-body p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
    font-size: 1rem;
}

.tour-popup-body p:last-child {
    margin-bottom: 0;
}

.tour-popup-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-step-indicator {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 600;
}

.tour-next-btn {
    background: white;
    color: #059669;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tour-next-btn:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Tour Arrow Pointer */
.docaccess-tour-popup::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.docaccess-tour-popup.arrow-top::before {
    top: -10px;
    left: 20px;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #10b981 transparent;
}

.docaccess-tour-popup.arrow-bottom::before {
    bottom: -10px;
    left: 20px;
    border-width: 10px 10px 0 10px;
    border-color: #10b981 transparent transparent transparent;
}

.docaccess-tour-popup.arrow-left::before {
    left: -10px;
    top: 20px;
    border-width: 10px 10px 10px 0;
    border-color: transparent #10b981 transparent transparent;
}

.docaccess-tour-popup.arrow-right::before {
    right: -10px;
    top: 20px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #10b981;
}

.tour-highlight {
    position: relative !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.5), 0 0 0 8px rgba(16, 185, 129, 0.3) !important;
    animation: tourHighlightPulse 2s ease-in-out infinite !important;
    border-radius: 8px !important;
}

@keyframes tourHighlightPulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.5), 0 0 0 8px rgba(16, 185, 129, 0.3);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.6), 0 0 0 12px rgba(16, 185, 129, 0.2);
    }
}

/* Blinking effect for toggle switch */
.tour-blink {
    animation: tourBlink 0.8s ease-in-out infinite !important;
}

@keyframes tourBlink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.05);
    }
}

p a {
    text-decoration: underline;
}

p a:hover {
    color: var(--dark-blue);
}

.alert a {
    text-decoration: underline;
    color: var(--dark-blue);
}

.alert a:hover {
    color: var(--black);
}

.page-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1px 20px 20px;
    background-color: rgba(255, 255, 255, 1);
}

.page-content-container h2 {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 1em;
}

.page-content-container h3 {
    margin-top: 1em;
    font-size: 1em;
    font-weight: bold;
}

.page-content-container p {
    margin-bottom: 1em;
}

.page-content-container a {
    color: var(--dark-green);
    text-decoration: underline;
}

.page-content-container ul,
.page-content-container ol {
    margin-bottom: 1em;
    padding-left: 20px;
}

.page-content-container ul li {
    margin-bottom: 1em;
    display: list-item;
    list-style-type: disc;
}

.da h4 {
    font-weight: 600;
}


.max-w-screen-lg {
    max-width: 1200px !important;
}

.docaccess-nav .current-page {
    color: var(--dark-green);
}

.docaccess-nav .btn-gradient.current-page {
    background: white;
    color: var(--green);
    border: 1px solid var(--green);
    text-shadow: 0 0 2px white;
}

.docaccess-nav .btn-gradient.current-page:hover {
    background: var(--green);
    color: white;
    text-shadow: 0 0 2px black;
}

.docaccess-nav a:first-child {
    margin-right: 0;
}

.docaccess-nav a {
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

.docaccess-nav a:hover {
    color: var(--green);
}

.docaccess-nav a.btn-action,
.docaccess-nav a.btn-gradient {
    font-size: 16px;
}



.docaccess-video-container a {
    position: relative;
    transition-delay: 0s !important;
    transition: all 0.3s ease !important;
    display: inline-block;

}

.docaccess-video-container a:hover video {
    opacity: 0.8;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);

}

.docaccess-video-container a:before {
    top: calc(50% - 37px);
    left: calc(50% - 37px);
    position: absolute;
    content: "";
    border: 0;
    background: transparent;
    box-sizing: border-box;
    width: 0;
    height: 74px;

    border-color: transparent transparent transparent #202020;
    transition: 300ms all ease;
    cursor: pointer;

    border-style: solid;

}

.docaccess-video-container a:hover:before {

    height: 80px;
    width: 80px;

    top: calc(50% - 40px);
    left: calc(50% - 40px);
}

.docaccess-video-container a img {
    margin: 0;
}

.logo-container {
    position: relative;
    min-width: 250px;
}

.beta-badge {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-green);
    text-transform: uppercase;
    margin-left: 5px;
    position: absolute;
    right: 0;
    top: 3%;
    padding-right: 30px;
}

#mobile-menu-btn {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .docaccess-nav {
        display: block !important;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        background-color: white;
        padding: 10px 30px 40px;
        z-index: 100;
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform: translateY(-20px);
        pointer-events: none;
        z-index: 100;

    }

    .docaccess-nav a:not(.btn-action):not(.btn-gradient) {
        display: block;
        margin-top: -1px;
        margin-left: 0px !important;
        padding: 10px 10px;
        border-top: 1px solid #CCC;
        border-bottom: 1px solid #CCC;
    }

    .docaccess-nav a.btn-action,
    .docaccess-nav a.btn-gradient {
        margin-top: 20px;
    }

    .mobile-nav-enabled .docaccess-nav {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        position: absolute;
        bottom: 0;
        height: auto;
    }
}

#mobile-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
}

#mobile-menu-btn span {
    display: block;
}

.hamburger {
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 20;
}

.hamburger span {
    position: absolute;
    height: 3px;
    width: 100%;
    background: #333;
    left: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

/* Active state (X shape) */
.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 768px) {
    #main-nav ul {
        flex-direction: column;
    }

    #main-nav ul li {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        text-align: center;
    }
}


.font-bold {
    font-weight: 800 !important;
}


.btn-action {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--black);
    background: transparent;
    color: var(--black);
    font-weight: 600;
    text-decoration: none;
    margin-top: 5px;
    transition: box-shadow 0.2s, filter 0.2s;
}

.btn-action:hover {
    background: var(--black);
    color: white !important;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
}

.btn-gradient {
    background: linear-gradient(to bottom, #29c985, #139860);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.0);
    transition: box-shadow 0.2s, filter 0.2s;
    text-shadow: 0 0 2px black;
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 768px) {
    .btn-gradient {
        margin-top: 10px;
    }
}

.btn-gradient:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
    color: white !important;
    text-shadow: 0 0 2px black;
    transition-delay: 0s;
}

@media (max-width: 768px) {
    section.welcome-hero {
        padding-bottom: 100px;
    }

    section.welcome-hero::before {
        width: 75px;
        height: 75px;
    }

    section.welcome-hero::after {
        width: 75px;
        height: 75px;
    }
}

.cky-banner-btn-close img {
    width: 20px;
    height: 20px;
}

.cky-btn-revisit-wrapper {
    display: none;
}

.btn-loading {
    opacity: .9 !important;
    pointer-events: none !important;
    animation: pulse 1s linear infinite;
    filter: grayscale(100%);
}

@keyframes pulse {
    0% {
        opacity: .8;
    }

    50% {
        opacity: 1;
    }
}


.btn-loading span {
    position: relative;
}

.btn-loading span:before {
    content: " ";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--black);
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    position: absolute;
    left: -15px;
    top: 4px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.verification-token-container {
    padding: 20px 10px;
}

#token-container {
    margin: 5px 0;
    font-size: 1.25rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}

.welcome-hero,
.pricing-hero {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(188, 218, 255, 1) 100%);
}

.start-hero {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #e0f2fe 50%, #dbeafe 100%);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 80px;
}

section.start-hero {
    /* padding-bottom: 200px; */
}

.start-step {
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 840px;
}

.welcome-hero .background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background: linear-gradient(150deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 40%, rgba(188, 248, 255, .9) 100%);
    animation: gradientAnimation 6s ease infinite alternate;
}

@keyframes gradientAnimation {
    0% {

        opacity: 0;

    }

    50% {
        opacity: 0;

    }

    100% {
        opacity: 1;

    }
}


.welcome-hero:before {
    content: " ";
    display: block;
    width: 150px;
    height: 150px;
    background: url("/static/pixel-cut-out-left.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    position: absolute;
    bottom: 0;
    left: 0;
}

.welcome-hero:after {
    content: " ";
    display: block;
    width: 150px;
    height: 150px;
    background: url("/static/pixel-cut-out-right.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    position: absolute;
    bottom: 0;
    right: 0;
}


.docaccess-video-container img {
    height: auto !important;
    max-width: 800px;
    margin: 10px auto;
    width: 100%;
}

/* Styles for the auto-playing hero video */
.docaccess-video-container video {
    height: auto !important;
    max-width: 800px;
    margin: 10px auto;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.docaccess-video-container video:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

/* Updated styles for clickable video preview */
.docaccess-video-container .video-preview-link {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.docaccess-video-container .video-preview-link:hover {
    opacity: 0.9;
}

.docaccess-video-container .video-preview-link video {
    display: block;
    pointer-events: none;
    /* Prevent video controls, let click go to link */
    margin: 10px auto;
}

/* Play overlay for the preview video */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.video-preview-link:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button {
    width: 74px;
    height: 74px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.play-button:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

/* Public Stats Section */
.public-stats-section {
    margin-top: 60px;
    padding-top: 0 !important;
}

.public-stats-section .stat-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.public-stats-section .stat-bar {
    padding-bottom: 60px;
}

.public-stats-section .stat-item:hover {
    transform: translateY(-5px);
}

.public-stats-section .stat-number {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    font-size: 4rem;
    color: #178758;
    /* DocAccess green */
}

.public-stats-section .stat-label {
    color: #374151;
}

.public-stats-section .logo-banner-container {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.public-stats-section .logo-banner-image {
    width: 100%;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.public-stats-section .logo-banner-image:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .public-stats-section {
        padding: 40px 20px;
    }

    .public-stats-section .stat-number {
        font-size: 2.5rem !important;
    }

    .public-stats-section .stat-label {
        font-size: 0.95rem !important;
    }

    .public-stats-section .logo-banner-container {
        margin-top: 2rem;
    }
}

.let-users {
    margin-top: 0;
    position: relative;
    padding-top: 60px;
}

.let-users::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: linear-gradient(180deg, rgba(220, 252, 231, 0.5) 0%, rgba(255, 255, 255, 0) 30%);
    z-index: -1;
    pointer-events: none;
}

.simple-setup,
.protect-yourself,
.faqs {
    margin-top: 100px;
}

@media (max-width: 768px) {

    .let-users,
    .simple-setup,
    .protect-yourself,
    .faqs {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    #da section h2 {
        font-size: 1.875rem;
    }

    #da .let-users h2 br {
        display: none;
    }
}

.setup-steps {
    text-align: center;
    margin: 50px auto 80px;
}

.setup-steps h3 {
    color: var(--black);
    font-weight: 600;
    line-height: 110%;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.setup-steps h3 span {
    color: var(--green);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.setup-steps p {
    line-height: 1.2;
}

.lt-blue-gradient {
    background: var(--lt-blue-gradient);
}

.lt-blue-gradient-mid {
    background: var(--lt-blue-gradient-mid);
}

.green-gradient {
    background: var(--green-gradient);
}

.feature-preview-box {
    box-shadow: 0px 1px 9px 0px rgba(0, 0, 0, 0.10);
    border-radius: 10px;
    padding: 20px;
}

/* Ensure feature preview box spans 2 columns in 3-column grid */
@media (min-width: 768px) {
    .feature-preview-box {
        grid-column: span 2;
    }
}

.protect-yourself {
    background-image: url("/static/green-bg-art-horizontal.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right bottom;
    padding: 50px 20px;
    position: relative;
}

@media (max-width: 768px) {
    .protect-yourself {
        background-image: url("/static/green-bg-art-vertical.webp");
        background-position: center center;
    }
}

@media (min-width: 768px) {
    .protect-yourself {
        padding: 100px 20px;
    }
}

.protect-yourself h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.protect-yourself>div {
    margin: 0 auto;
}

.protect-yourself .grid .rounded {
    border: 1px solid #FFF;
    align-content: center;
    line-height: 1.2;
}

section.protect-yourself {
    margin-top: 100px;
}

.accordion-container h3 {
    border-top: 1px solid #E0E0E0;
    font-weight: 800;
    color: var(--black);
    background-color: transparent;
    cursor: pointer;
    margin: 0 0 0 -5px;
    padding: 8px 20px 8px 5px;
    position: relative;
}

.accordion-container h3.accordion-open {
    margin: 0 0 5px -5px;
}

.accordion-container h3:hover {
    color: var(--lt-green);
}

/* Focus styles for keyboard accessibility */
.accordion-container h3:focus {
    outline: 2px solid var(--green);
    outline-offset: 2px;
    color: var(--green);
    background-color: rgba(23, 135, 88, 0.05);
}

/* Ensure focus is visible even when accordion is open */
.accordion-container h3.accordion-open:focus {
    outline: 2px solid var(--lt-green);
    background-color: rgba(31, 178, 116, 0.08);
}

.accordion-container h3:after {
    content: " ";
    background-image: url(/static/accordion.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 16px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    transition: transform 0.3s ease;
}

.accordion-container p {
    margin-bottom: 10px;
}

.accordion-container h3.accordion-open:after {
    transform: rotate(180deg);
}

.accordion-container h3:first-child {
    border-top: 0;
}

.accordion-container h3 span {
    display: inline-block;
    width: 30px;
}

.accordion-container {
    border-bottom: 1px solid #E0E0E0;
}

.accordion-hidden {
    display: none;
}

.accordion-content {
    margin-left: 30px;
}

.faqs .accordion-content {
    margin-left: 0;
}

#da .solve-list {
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--green);
}


#da .solve-list li a {
    color: var(--green);
    font-weight: 600;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

#da .solve-list li a:hover {
    color: var(--lt-green);
    text-decoration: underline;
}

div.cky-consent-bar .cky-banner-btn-close img {
    width: 24px;
    height: 24px;
}

section.protect-yourself:before {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
}

.da .accordion-content {
    padding-right: 20px;
}

.da .accordion-content ul {
    margin-bottom: 10px;
    padding-left: 15px;

}

.da .accordion-content ul li {
    margin-bottom: 10px;
    padding-left: 10px;
    display: list-item;
    list-style-type: "️✔";
    margin-top: 5px;
}

.da .accordion-content a {
    color: var(--dark-green);
}


.customer-quote blockquote {
    font-size: 1.5em;
    font-weight: 600;
    color: #178758;
    /* DocAccess green instead of black */
    line-height: 1.4;
    margin: 0;
}

.customer-quote p {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

.customer-quote .testimonial-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin: 40px 0;
}

.customer-quote .testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.customer-quote .testimonial-content {
    flex: 1;
}

.customer-quote .testimonial-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #d0d0d0 20%, #d0d0d0 80%, transparent);
    margin: 40px 0;
}

@media (max-width: 768px) {
    .customer-quote .testimonial-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .customer-quote blockquote {
        font-size: 1.2em;
    }
}


.related-content {
    text-align: center;
    margin: 40px auto;
}

/* hide related content on mobile */
@media (max-width: 768px) {
    div.related-content {
        display: none;
    }
}

.related-content img {
    margin: 0 auto 10px;

}

.related-content>div {
    position: relative;
}

.related-content>div::before {
    transition: opacity 0.7s ease;
    content: " ";
    display: block;
    background: var(--lt-blue-gradient-mid);
    position: absolute;
    top: 0;
    bottom: -10px;
    left: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    border-radius: 10px;
}

.related-content>div:hover::before {
    opacity: 0.5;
}

.related-content div {
    font-weight: 800;
    color: var(--black);
}

.related-content .btn-action {
    margin-top: 10px;
}

.docaccess-footer {
    background-color: #38354F;
    color: white;
}

.docaccess-footer nav>div {
    row-gap: 10px;
}

.docaccess-footer .lower-footer {
    background-color: #2E2C40;
}

.docaccess-footer .lower-footer a {
    padding: 2px;
    color: white;
    text-decoration: none;
}

.docaccess-footer .lower-footer a:hover {
    text-decoration: underline;
}

.docaccess-footer .lower-footer p {
    min-height: 24px;
}




.pricing-tiers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-tier-selector {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
    margin-top: 5px;
}

.page-tier-selector:focus {
    outline: none;
    border-color: #0A6DEF;
    box-shadow: 0 0 0 2px rgba(43, 92, 230, 0.1);
}

.page-tier-selector:hover {
    border-color: #0A6DEF;
}

/* Remove checkmarks from pricing tier features for dropdowns */
.pricing-tier .tier-features ul {
    list-style: none;
    padding: 0;
}

.pricing-tier .tier-features li {
    padding: 8px 0;
    position: relative;
}

/* Remove the before pseudo-element for first item only (dropdown) */
.pricing-tier .tier-features li:nth-child(1):before {
    display: none;
}

/* Keep checkmarks for all other items including cost line */
.pricing-tier .tier-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.pricing-tier .tier-features li:not(:nth-child(1)) {
    padding-left: 25px;
}

@media (max-width: 1200px) {
    .pricing-tiers {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .pricing-tiers {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .pricing-tiers .pricing-tier {
        margin: 0 auto;
    }
}

@media (min-width: 1000px) {
    #step-1>p {
        padding-right: 160px;
        padding-left: 160px;
    }
}


.pricing-tier {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pricing-tier.popular {
    border: 2px solid #4CAF50;
    position: relative;
}

.pricing-tier.current-plan {
    border: 2px solid #2196F3;
    position: relative;
}

.current-plan-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #2196F3;
    color: white;
    padding: 5px 10px;
    border-radius: 0 8px 0 8px;
    font-size: 0.8em;
    font-weight: bold;
}

.tier-name {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.tier-price {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.tier-price .per-month {
    font-size: 0.4em;
    font-weight: normal;
    color: #666;
}

.tier-description {
    color: #666;
    margin-bottom: 20px;
    min-height: 40px;
}

.tier-features {
    margin-bottom: 30px;
}

.tier-features ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.tier-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features li:before {
    content: "✓";
    color: #4CAF50;
    margin-right: 10px;
}

.tier-button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.tier-button:hover {
    background-color: #45a049;
}

.tier-button.secondary {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.tier-button.secondary:hover {
    background-color: #e9e9e9;
}

@media (max-width: 768px) {
    .pricing-tiers {
        flex-direction: column;
        align-items: center;
    }

    .pricing-tier {
        width: 100%;
        max-width: 350px;
    }
}

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

/* Ensure error messages are focusable */
.error-message {
    outline: none;
}

/* Improve focus visibility */
input:focus,
button:focus,
.input-field:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

/* Improve radio button styling for accessibility */
input[type="radio"] {
    margin-right: 8px;
    transform: scale(1.2);
}

/* Fieldset styling */
fieldset {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 16px;
    margin: 16px 0;
}

legend {
    font-weight: bold;
    padding: 0 8px;
}

.prev-step {
    margin-right: 1em;
}

.input-field {
    padding: 10px 20px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.wizard-hidden {
    display: none;
}

.wizard-visible {
    display: block;
}

.error-message {
    color: #dc2626;
    background-color: #fee2e2;
    padding: 0.75rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

/* Field-specific error messages */
.field-error-message {
    color: #dc2626;
    background-color: #fee2e2;
    border: 1px solid #fecaca;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25;
}

.field-error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.field-error:focus {
    outline: 2px solid #dc2626 !important;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.3);
}

.verification-method {
    margin-bottom: 1rem;
}

.verification-method label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    cursor: pointer;
    line-height: 1.4;
}

.verification-fields {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.checkmark__circle {
    stroke: var(--green);
    stroke-width: 2;
}

.checkmark__check {
    stroke: var(--green);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.verification-method {
    display: none;
}

.verification-method {
    padding: 10px 20px;
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
    border-radius: 10px;
    border: 1px solid white;
    background-color: rgba(255, 255, 255, .4);
}

.verification-method .btn-gradient {
    margin-left: 10px;
}

.verification-method p {
    margin: 20px 0;
    font-weight: 600;
}

.verification-method input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    margin-top: 2px;
    flex-shrink: 0;
}

.tooltip {
    max-width: 320px;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.2;
    border-radius: 0.25rem;
    background: #333;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    z-index: 9999;
}

.tooltip li {
    margin: 10px 0;
}

.tooltip-trigger {
    font-size: 0.85em;
    cursor: pointer;
    border: 0;
    padding: 0 5px;
}

.tooltip-trigger:active,
.tooltip-trigger:focus {
    outline: 1px solid var(--black);
}

blockquote {
    font-style: italic;
    font-size: 1.1em;
    color: #555;
    margin: 10px 0;
}

section.start-hero.login-page {
    padding-bottom: 1px;
}


/* a little yee-haw logic for animating the sections. 
    Mac might have gotten carried away with the levels deep, but it looks cool!  */

section>*>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section>.visible>* {
    opacity: 1;
    transform: translateY(0);
}

.md\:grid-cols-3>div {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section>*>:nth-child(1),
section>*>*>:nth-child(1) {
    transition-delay: 0s;
}

section>*>:nth-child(2),
section>*>*>:nth-child(2) {
    transition-delay: 0.2s;
}

section>*>:nth-child(3),
section>*>*>:nth-child(3) {
    transition-delay: 0.4s;
}

section>*>:nth-child(4),
section>*>*>:nth-child(4) {
    transition-delay: 0.6s;
}

section>*>:nth-child(5),
section>*>*>:nth-child(5) {
    transition-delay: 0.7s;
}

section>*>:nth-child(6),
section>*>*>:nth-child(6) {
    transition-delay: .8s;
}

section>*>:nth-child(7),
section>*>*>:nth-child(7) {
    transition-delay: .9s;
}

section>*>:nth-child(8),
section>*>*>:nth-child(8) {
    transition-delay: .95s;
}

section>*>:nth-child(9),
section>*>*>:nth-child(9) {
    transition-delay: 1s;
}

section>*>:nth-child(10),
section>*>*>:nth-child(10) {
    transition-delay: 1.05s;
}

section>*>:nth-child(11),
section>*>*>:nth-child(11) {
    transition-delay: 1.1s;
}

section>*>:nth-child(12),
section>*>*>:nth-child(12) {
    transition-delay: 1.15s;
}

section>*>:nth-child(13),
section>*>*>:nth-child(13) {
    transition-delay: 1.2s;
}

section>*>:nth-child(14),
section>*>*>:nth-child(14) {
    transition-delay: 1.25s;
}

section>*>:nth-child(15),
section>*>*>:nth-child(15) {
    transition-delay: 1.3s;
}

section>*>:nth-child(n+16),
section>*>*>:nth-child(n+16) {
    transition-delay: 1.35s;
}


section>.visible.md\:grid-cols-3>div {
    opacity: 1;
    transform: translateX(0);
}

section>*>*>* {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section>.visible>*>* {
    opacity: 1;
    transform: translateX(0);
}

/* tailwind */

*,
::before,
::after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

/* ! tailwindcss v3.4.16 | MIT License | https://tailwindcss.com */
*,
::after,
::before {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb
}

::after,
::before {
    --tw-content: ''
}

:host,
html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0;
    line-height: inherit
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
}

abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit
}

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

b,
strong {
    font-weight: bolder
}

code,
kbd,
pre,
samp {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0
}

button,
select {
    text-transform: none
}

button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
    background-color: transparent;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}

progress {
    vertical-align: baseline
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
    margin: 0
}

fieldset {
    margin: 0;
    padding: 0
}

legend {
    padding: 0
}

menu,
ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0
}

dialog {
    padding: 0
}

textarea {
    resize: vertical
}

input::placeholder,
textarea::placeholder {
    opacity: 1;
    color: #9ca3af
}

[role=button],
button {
    cursor: pointer
}

:disabled {
    cursor: default
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
    display: block;
}

img,
video {
    max-width: 100%;
    height: auto
}

[hidden]:where(:not([hidden=until-found])) {
    display: none
}

.visible {
    visibility: visible
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.left-0 {
    left: 0px
}

.top-2 {
    top: 0.5rem
}

.top-4 {
    top: 1rem
}

.top-6 {
    top: 1.5rem
}

.z-20 {
    z-index: 20
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem
}

.my-15 {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem
}

.my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem
}

.mb-2 {
    margin-bottom: 0.5rem
}

.mb-3 {
    margin-bottom: 0.75rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-5 {
    margin-bottom: 1.25rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mb-8 {
    margin-bottom: 2rem
}

.mb-10 {
    margin-bottom: 2.5rem
}

.mb-16 {
    margin-bottom: 4rem
}

.mt-2 {
    margin-top: 0.5rem
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.flex {
    display: flex
}

.grid {
    display: grid
}

.hidden {
    display: none
}

.h-0\.5 {
    height: 0.125rem
}

.h-10 {
    height: 2.5rem
}

.h-12 {
    height: 3rem
}

.h-8 {
    height: 2rem
}

.h-full {
    height: 100%
}

.w-8 {
    width: 2rem
}

.w-full {
    width: 100%
}

.max-w-3xl {
    max-width: 48rem
}

.max-w-7xl {
    max-width: 80rem
}

.max-w-screen-lg {
    max-width: 1024px
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.flex-col {
    flex-direction: column
}

.items-start {
    align-items: flex-start
}

.items-center {
    align-items: center
}

.items-stretch {
    align-items: stretch
}

.justify-between {
    justify-content: space-between
}

.gap-10 {
    gap: 2.5rem
}

.gap-4 {
    gap: 1rem
}

.gap-5 {
    gap: 1.25rem
}

.gap-x-12 {
    column-gap: 3rem
}

.gap-y-2 {
    row-gap: 0.5rem
}

.space-x-7> :not([hidden])~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1.75rem * var(--tw-space-x-reverse));
    margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse)))
}

.rounded {
    border-radius: 0.25rem
}

.rounded-lg {
    border-radius: 0.5rem
}

.bg-gray-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1))
}

.p-3 {
    padding: 0.75rem
}

.p-9 {
    padding: 2.25rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.text-center {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem
}

.font-bold {
    font-weight: 700
}

.font-medium {
    font-weight: 500
}

.text-\[\#38354F\] {
    --tw-text-opacity: 1;
    color: rgb(56 53 79 / var(--tw-text-opacity, 1))
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}

.duration-300 {
    transition-duration: 300ms
}

.hover\:underline:hover {
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px
}

@media (min-width: 768px) {
    .md\:mb-0 {
        margin-bottom: 0px
    }

    .md\:flex {
        display: flex
    }

    .md\:hidden {
        display: none
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .md\:flex-row {
        flex-direction: row
    }

    .md\:items-center {
        align-items: center
    }

    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem
    }

    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1
    }

    .md\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem
    }
}



/* Form styling for wizard */
.form-group {
    margin-bottom: 0.5rem;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--black);
    font-size: 0.95rem;
}

.name-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.name-row .form-group {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .name-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .name-row .form-group {
        margin-bottom: 1.5rem;
    }

    .name-row .form-group:last-child {
        margin-bottom: 0;
    }
}

/* Alert styles */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.375rem;
}

.alert-danger {
    background-color: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* Button link style */
.btn-link {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--green);
    text-decoration: underline;
    background: transparent;
    border: none;
    padding: 0;
    font-weight: 500;
    cursor: pointer;
    margin-left: 20px;
    text-shadow: 0 0 2px white;
}

.btn-link:hover {
    color: var(--dark-green);
    box-shadow: none;
    background: transparent;
}

.card {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
}

.blog-post-content a {
    text-decoration: underline;
    color: var(--dark-blue);
}

.blog-post-content a:hover {
    color: var(--black);
}

.blog-grid,
.blog-post-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

.blog-posts,
.blog-post-content {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-post-header {
    margin-bottom: 30px;
}

.blog-post-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #38354F;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #666;
    font-size: 16px;
    flex-wrap: wrap;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f0f0;
    object-fit: cover;
}

.post-tags,
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.blog-post-content .tag-badge,
.tag-badge {
    background: #e9ecef;
    color: #495057;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.blog-post-content .tag-badge:hover,
.tag-badge:hover {
    background: #f3f5f7;
    color: var(--dark-blue);
}

.blog-content {
    line-height: 1.8;
    color: #333;
}

.blog-content h2,
.blog-post h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8rem;
    line-height: 1.5;
}

.blog-post:first-child h2 {
    margin-top: 0;
}

.blog-content h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.25rem;
    color: var(--dark-green);
}

.blog-content p {
    margin-bottom: 15px;
}

.blog-content ul {
    margin-bottom: 15px;
    padding-left: 0;
    list-style: none;
}

.blog-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
}

.blog-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;
    font-size: 1em;
    line-height: 1.5;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.blog-sidebar {
    position: sticky;
    top: 20px;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.blog-content table th,
.blog-content table td {
    padding: 8px 12px;
    border: 1px solid #ddd;
}

.blog-content table th {
    background: #f8f9fa;
    font-weight: 600;
}

.blog-content table caption {
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-posts .read-more {
    color: var(--dark-blue);
    display: block;
    margin-top: 20px;
}

.post-teaser {
    margin-top: 20px;
    font-size: 16px;
}

.sidebar-section {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.sidebar-section h3 {
    margin-bottom: 15px;
    color: #38354F;
}

.related-links {
    list-style: none;
    padding: 0;
}

.related-link {
    display: block;
    padding: 10px 15px;
    margin-bottom: 8px;
    background: #f8f9fa;
    border-radius: 6px;
    text-decoration: none;
    color: #38354F;
    transition: all 0.3s ease;
}

.related-link:hover {
    background: #007bff;
    color: white;
    transform: translateX(5px);
}

.file-attachments {
    list-style: none;
    padding: 0;
}

.file-attachment {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.file-attachment:last-child {
    border-bottom: none;
}

.breadcrumb {
    margin-bottom: 20px;
    color: #666666;
    font-size: 16px;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-post-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-post-title {
        font-size: 2rem;
    }

    .related-links-mobile {
        display: block;
        margin-top: 40px;
        padding-top: 40px;
        border-top: 1px solid #eee;
    }
}

@media (min-width: 769px) {
    .related-links-mobile {
        display: none;
    }
}

.blog-sidebar h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

.blog-sidebar input {
    border: 1px solid var(--lt-blue);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 16px;
    background-color: white;
    width: 100%;
    margin-bottom: 1rem;
    display: block;
}

.blog-sidebar input:focus {
    outline: none;
    border-color: var(--dark-green);
    box-shadow: 0 0 0 2px rgba(var(--dark-green), 0.2);
}

.blog-sidebar .hs-button.primary {
    background-color: var(--dark-green);
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
}

.hs-error-msg {
    color: var(--dark-red);
}

.blog-sidebar input::placeholder {
    color: #888;
    ;
}

.blog-sidebar .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.blog-sidebar .tag-badge {
    background: #e9ecef;
}

.blog-sidebar .hbspt-form {
    margin-top: 10px;
}



/* HubSpot Form Styling for Contact Page */
.form-card form.hs-form,
.form-card .hs-form-private {
    font-family: inherit;
}

.form-card form.hs-form fieldset,
.form-card .hs-form-private fieldset {
    margin: 0;
    padding: 0;
    border: none;
    max-width: none;
}

.form-card .hs-form-field {
    margin-bottom: 1.25rem;
    width: auto !important;
    float: none !important;
}

.form-card .form-columns-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-card .form-columns-1 {
    display: block;
}

@media (max-width: 600px) {
    .form-card .form-columns-2 {
        grid-template-columns: 1fr;
    }
}

.form-card .hs-form-field>label {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.9rem;
}

.form-card .hs-form-required {
    color: #e11d48;
    margin-left: 2px;
}

.form-card .hs-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8fafc;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    font-family: inherit;
    box-sizing: border-box;
}

.form-card select.hs-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-card textarea.hs-input {
    min-height: 120px;
    resize: vertical;
}

.form-card .hs-input:focus {
    border-color: var(--lt-green);
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(31, 178, 116, 0.1);
}

.form-card .hs-error-msgs {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.form-card .hs-error-msgs li {
    color: #e11d48;
    font-size: 0.85rem;
}

.form-card .legal-consent-container {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #64748b;
}

.form-card .legal-consent-container a {
    color: var(--lt-green);
    text-decoration: underline;
}

.form-card .hs-button {
    background: var(--green-gradient);
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: box-shadow 0.2s, filter 0.2s, transform 0.2s;
    margin-top: 0.5rem;
}

.form-card .hs-button:hover {
    box-shadow: 0 4px 16px rgba(31, 178, 116, 0.25);
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.form-card .hs-button:active {
    transform: translateY(0);
}

.form-card .submitted-message {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #a7f3d0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    color: #065f46;
    font-weight: 500;
}