.complete-guide-container {
    width: 100%;
}
.complete-guide-toggle {
    transition: all 0.3s ease;
}
.complete-guide-toggle:hover {
    opacity: 0.8;
}
.complete-guide-arrow {
    transition: transform 0.3s ease !important;
}
.complete-guide-toggle[aria-expanded="true"] .complete-guide-arrow {
    transform: rotate(180deg);
}
.complete-guide-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        opacity 0.3s ease;
    pointer-events: none;
}
.complete-guide-toggle[aria-expanded="true"] + .complete-guide-content {
    max-height: 5000px;
    opacity: 1;
    pointer-events: auto;
}
.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: visible;
    background: #fff;
}
.faq-item.active {
    overflow: visible;
}
.faq-q {
    width: 100%;
    background: #f9fafb;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
}
.faq-q:hover {
    background: #f3f4f6;
}
.faq-q span {
    flex: 1;
    word-break: break-word;
}
.faq-arrow {
    width: 20px;
    height: 20px;
    color: #b91c1c;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    margin-left: 12px;
    display: inline-block;
}
.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}
.faq-a {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        opacity 0.3s ease;
    padding: 0 20px;
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
    display: block;
}
.faq-item.active .faq-a {
    max-height: 2000px;
    opacity: 1;
    padding: 16px 20px;
    overflow: visible;
}
.video-details-container {
    width: 100%;
}
.video-details-toggle {
    transition: all 0.3s ease;
}
.video-details-toggle:hover {
    opacity: 0.85;
}
.video-details-arrow {
    transition: transform 0.3s ease !important;
}
.video-details-toggle[aria-expanded="true"] .video-details-arrow {
    transform: rotate(180deg);
}
.video-details-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        opacity 0.3s ease;
    pointer-events: none;
}
.video-details-toggle[aria-expanded="true"] + .video-details-content {
    max-height: 3000px;
    opacity: 1;
    pointer-events: auto;
}
.faq-sec,
.details-sec {
    padding: 2rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.08);
    margin-bottom: 1.5rem;
    margin-left: 12px;
    margin-right: 12px;
}
.faq-sec h2,
.details-sec h2 {
    font-size: 1.35rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    color: #1f2937;
}
.faq-sec p.desc,
.details-sec p.desc {
    text-align: center;
    color: #555d71;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.details-sec h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin: 1.25rem 0 0.5rem;
}
.details-sec p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.92rem;
    margin: 0 0 0.75rem;
}
.details-sec ul {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.92rem;
    padding-left: 1.25rem;
    margin: 0 0 0.75rem;
}
.details-sec li {
    margin-bottom: 0.4rem;
}
.templates-preview-section {
    padding: 2rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.08);
    margin-bottom: 1.5rem;
    margin-left: 12px;
    margin-right: 12px;
}
.templates-preview-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}
.video-sec {
    padding: 2rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.08);
    margin-bottom: 1.5rem;
    margin-left: 12px;
    margin-right: 12px;
}
.video-wrap {
    display: block !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    line-height: 0;
    padding-bottom: 0 !important;
    height: auto !important;
    overflow: visible !important;
    text-align: center;
}
.video-wrap img {
    max-width: 100% !important;
    margin: 0 auto !important;
    display: inline-block !important;
    border-radius: 24px !important;
}
.footer {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
}
@media (min-width: 768px) {
    .sticky-form-btn {
        position: fixed;
        bottom: 24px;
        right: 11%;
        left: auto;
        top: auto;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        z-index: 999;
        display: none;
    }
    .sticky-form-btn.show {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .sticky-create-btn {
        width: 300px !important;
        max-width: 300px !important;
        min-height: 50px;
        padding: 0 1.5rem;
        margin: 0;
        background-color: #af0535;
        color: #fff;
        border: none;
        border-radius: 9999px;
        font-family: inherit;
        font-size: 1.05rem;
        font-weight: 600;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        box-shadow: none;
        box-sizing: border-box;
    }
    .field-card-inner input,
    .field-card-inner textarea,
    .field-card-inner select {
        font-size: 1rem !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 10px !important;
        padding: 13px 14px !important;
        background: #fff !important;
        color: #1f2937 !important;
        box-shadow: none !important;
        transition:
            border-color 0.2s ease,
            background 0.2s ease !important;
    }
    .field-card-inner input:hover,
    .field-card-inner textarea:hover,
    .field-card-inner select:hover {
        border-color: #cbd5e1 !important;
        box-shadow: none !important;
    }
    .field-card-inner input:focus,
    .field-card-inner textarea:focus,
    .field-card-inner select:focus {
        outline: none !important;
        border-color: #af0535 !important;
        box-shadow: none !important;
        background: #fff !important;
    }
    .field-card-inner input::placeholder,
    .field-card-inner textarea::placeholder,
    .field-card-inner select::placeholder {
        color: #94a3b8 !important;
    }
    .field-card-inner select:has(option:disabled:checked) {
        color: #94a3b8 !important;
    }
    .field-card label {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        color: #334155 !important;
    }
    .field-card label .required {
        color: #dc2626 !important;
    }
    .field-delete-btn {
        background: #fff4f4 !important;
        color: #dc2626 !important;
        border-radius: 7px !important;
        width: 34px !important;
        height: 34px !important;
        opacity: 1 !important;
        margin-left: 2px !important;
        font-size: 16px !important;
    }
    .field-delete-btn svg {
        width: 19px !important;
        height: 19px !important;
    }
    .field-delete-btn:hover:not(:disabled) {
        background: #fecaca !important;
        color: #b91c1c !important;
    }
    .section-title-wrap h2 {
        color: #1f2937 !important;
    }
    .section-title-wrap .section-subtitle-text {
        color: #64748b !important;
    }
    .photo-section {
        flex: 0 0 300px;
        margin: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }
    .photo-box {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        gap: 16px;
        grid-template-columns: none !important;
    }
    .photo-placeholder {
        width: 175px !important;
        height: calc(175px * 297 / 210) !important;
        margin: 0 !important;
        border-radius: 28px !important;
        border: 2px dashed #cbd5e1 !important;
        padding: 16px !important;
        box-sizing: border-box !important;
    }
    .photo-placeholder svg {
        width: 56px !important;
        height: 56px !important;
    }
    #imagePreview {
        width: 161px !important;
        height: calc(161px * 297 / 210) !important;
        object-fit: cover;
        border-radius: 28px !important;
    }
    .photo-content-wrapper {
        align-items: center !important;
        text-align: center;
    }
    .photo-upload-btn {
        margin: 0 auto !important;
    }
    .templates-preview-section {
        margin: 0 auto !important;
        padding: 52px 100px !important;
    }
    .templates-preview-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    .video-sec {
        margin: 22px auto 44px !important;
    }
    .video-wrap {
        display: block !important;
        max-width: 50% !important;
        margin: 0 auto !important;
        line-height: 0;
        padding-bottom: 0 !important;
        height: auto !important;
        overflow: visible !important;
        text-align: center;
    }
    .video-wrap img {
        max-width: 100% !important;
        margin: 0 auto !important;
        display: inline-block !important;
        border-radius: 24px !important;
    }
    .footer {
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto !important;
    }
    .faq-sec,
    .details-sec {
        margin: 22px auto 44px !important;
    }
}
.highlight-field {
    animation: highlightPulse 2s ease;
    border-color: #af0535 !important;
    outline: none;
}
.templates-view-all {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
    padding: 0 0;
}
.templates-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: #fff0;
    color: #af0535;
    border: 1px solid #af0535;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.templates-view-all-btn:hover {
    background: #af0535;
    color: #fff;
}
.templates-arrow {
    font-size: 0.9rem;
    font-weight: 700;
}
@media (min-width: 768px) {
    .templates-preview-section {
        background: #fff0;
        padding: 40px 20px;
        margin: 40px 0;
    }
    .templates-preview-container {
        max-width: 1160px;
        margin: 0 auto;
        background: #fff;
        border-radius: 12px;
        box-shadow: none;
        border: 1px solid #e5e7eb;
        padding: 40px 20px;
    }
}
.templates-header {
    text-align: center;
    margin-bottom: 30px;
}
.templates-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 15px 0;
}
.templates-description {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.templates-gallery-wrapper {
    overflow: visible;
}
.templates-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    padding: 0;
}
.template-card {
    width: 100%;
    aspect-ratio: 210 / 297;
    background: #fff;
    cursor: pointer;
}
.template-card:hover {
    border-color: #5127db;
}
.template-card img {
    width: 100%;
    height: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 2px;
    object-fit: cover;
    display: block;
}
@media (min-width: 768px) {
    .video-sec {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
.custom-value-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 0.5);
    z-index: 10000;
    padding: 20px;
    font-family: inherit;
}
.custom-value-dialog {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgb(0 0 0 / 0.3);
    max-width: 400px;
    width: 100%;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}
.dialog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    gap: 12px;
}
.dialog-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}
.dialog-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.dialog-close:hover {
    background: #f3f4f6;
    color: #1f2937;
}
.dialog-content {
    padding: 20px;
}
.custom-input {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #898989;
    border-radius: 4px;
    font-size: 15px;
    color: #1f2937;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}
.custom-input:focus {
    outline: none;
    border-color: #6b3939;
    box-shadow: 0 0 0 3px rgb(107 57 57 / 0.1);
}
.custom-input::placeholder {
    color: #c5c7cf;
}
.dialog-actions {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid #e5e7eb;
    justify-content: flex-end;
}
.dialog-cancel,
.dialog-add {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}
.dialog-cancel {
    background: #f3f4f6;
    color: #374151;
}
.dialog-cancel:hover {
    background: #e5e7eb;
}
.dialog-add {
    background: #af0535;
    color: #fff;
}
.dialog-add:hover {
    background: #6b1818;
}
.dialog-add:active {
    transform: scale(0.98);
}
.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: calc(100% - 64px);
    max-width: 400px;
    margin: 100px auto 100px;
    padding: 1rem 2rem;
    background: var(--primary);
    color: #fff;
    border: 0;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    box-shadow:
        0 4px 20px rgb(185 28 28 / 0.3),
        0 1px 3px rgb(0 0 0 / 0.1);
    transition:
        transform 0.15s,
        box-shadow 0.15s;
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 25px rgb(185 28 28 / 0.4),
        0 2px 4px rgb(0 0 0 / 0.12);
}
.cta-btn:active {
    transform: translateY(0);
}
.form-intro-text {
    text-align: center;
    font-size: 1.067rem;
    color: #000;
    margin: 58px 22px 0;
    padding: 1rem 0 0;
    position: relative;
    z-index: 1;
}
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 2rem;
}
.footer-brand {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.footer-brand .grad {
    background: linear-gradient(90deg, #ff4d6d, #c5c50c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    font-weight: 600;
}
.footer-small {
    font-size: 0.75rem;
    color: #6b7280;
    margin-left: 0.5rem;
}
.footer-disclaimer {
    font-size: 0.8rem;
    line-height: 1.7;
    margin: 1rem auto 1.25rem;
    max-width: 900px;
    color: #9ca3af;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1rem;
}
.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.85rem;
}
.footer-links a:hover {
    color: #fff;
}
.footer-copy {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 80px;
}
.video-sec {
    padding: 2rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.08);
    margin-bottom: 1.5rem;
    margin-left: 12px;
    margin-right: 12px;
}
.video-sec h2 {
    font-size: 1.35rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    color: #1f2937;
}
.video-sec p.desc {
    text-align: center;
    color: #555d71;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}
.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}
.video-steps-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}
.video-steps-list li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #374151;
}
.faq h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-align: center;
    color: #1f2937;
}
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-q {
    background: #f9fafb;
    border: 0;
    padding: 0.875rem 1rem;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1f2937;
    font-family: inherit;
}
.faq-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.25s;
}
.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}
.faq-a {
    display: none;
    padding: 0.875rem 1rem;
    color: #555d71;
    font-size: 0.875rem;
    line-height: 1.7;
    background: #fff;
}
.faq-item.open .faq-a {
    display: block;
}
.form-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.form-page h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}
.sep {
    height: 1px;
    background: #e5e7eb;
    margin: 2rem 0;
}
.biodata-counter {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 6px;
    padding: 5px 12px 5px 9px;
    background: rgb(255 255 255 / 0.7);
    border: 1px solid rgb(34 197 94 / 0.3);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.4s ease;
    width: fit-content;
}
.biodata-counter.visible {
    opacity: 1;
}
.counter-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #22c55e;
    flex-shrink: 0;
    animation: counterDotPulse 1.6s ease-in-out infinite;
}
.counter-text {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    white-space: nowrap;
}
#biodataCount {
    font-weight: 700;
    color: #16a34a;
}
.topbar select#languageSelector {
    margin-left: auto;
    font-size: 14px;
    padding: 4px 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
}
.hero-simple h1 .highlight {
    background: linear-gradient(90deg, #f97316 0%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    padding: 0 2px;
}
.recovery-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #d1fae5;
    border-bottom: 1px solid #10b981;
    color: #065f46;
    font-size: 13px;
    line-height: 1.4;
}
.recovery-banner svg {
    flex-shrink: 0;
    color: #059669;
}
.topbar {
    position: sticky;
    top: 0;
    background: rgb(255 255 255 / 0.95);
    border-bottom: 1px solid #eaeef6;
    padding: 10px 12px;
    display: flex;
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #111827;
}
.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f97316 0%, #db2777 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 8px rgb(219 39 119 / 0.12);
}
.logo-text {
    line-height: 1;
}
.logo-text span {
    background: linear-gradient(90deg, #f97316 0%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
}
.logo-img {
    height: 24px;
    width: auto;
    padding: 4px 0 4px 0;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}
.preview-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0;
}
.preview-scroll img {
    width: 120px;
    aspect-ratio: 210 / 297;
    background: #fff;
    object-fit: cover;
    transition: none;
    opacity: 1;
}
.preview-scroll img:not(.loaded) {
    opacity: 1;
}
.hero-simple {
    padding: 0 28px 60px;
    text-align: center;
    background: linear-gradient(135deg, #e9edff 0%, #f3e8ff 50%, #e0f2fe 100%);
    border-bottom-left-radius: 56px;
    border-bottom-right-radius: 56px;
}
.hero-container {
    max-width: 1160px;
    margin: 0 auto;
    padding-top: 40px;
    display: flex;
    align-items: flex-end;
    gap: 28px;
}
.hero-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 28px;
    flex: 1 1 auto;
}
.video-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    margin-bottom: 50px;
    background-color: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}
.video-help-btn:hover {
    background-color: #e5e7eb;
    border-color: #d1d5db;
    transform: translateY(-2px);
}
.video-help-btn svg {
    flex-shrink: 0;
    color: #dc2626;
}
.hero-demo {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 0;
    overflow-x: auto;
    width: auto;
    white-space: nowrap;
    min-height: 180px;
}
.hero-demo img {
    flex: none;
}
.hero-demo img {
    display: block;
    width: 90%;
    max-width: 520px;
    height: auto;
    margin: 0 22px;
    object-fit: contain;
    object-position: bottom center;
}
.preview-scroll {
    display: inline-flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 16px;
    align-items: flex-end;
}
.preview-scroll::-webkit-scrollbar {
    display: none;
}
.preview-scroll img {
    height: 140px;
    width: auto;
    flex: none;
    object-fit: contain;
    min-width: 100px;
    min-height: 140px;
    background-color: #ffffff3d;
    opacity: 1;
    transition: none;
}
.preview-scroll img.loaded {
    opacity: 1;
}
.highlight {
    background: linear-gradient(90deg, #f97316 0%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
}
.hero-simple h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111827;
}
.hero-simple p {
    font-size: 17px;
    color: #374151;
    margin-bottom: 30px;
}
#detailsContent {
    contain: layout;
    transition:
        max-height 0.3s ease,
        opacity 0.3s ease,
        padding 0.3s ease;
    max-height: 5000px;
    opacity: 1;
    overflow: hidden;
}
#detailsContent[style*="display:none"] {
    max-height: 0;
    opacity: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    pointer-events: none;
    visibility: hidden;
}
.features {
    padding: 70px 20px 28px;
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
    contain: layout style paint;
}
.features-container {
    max-width: 1120px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.feature-card {
    background: #fff;
    border: 1px solid #fde7d7;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 10px 28px rgb(219 39 119 / 0.08);
}
.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffe7d0, #ffd6ec);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #9d174d;
}
.feature-title {
    margin: 0 0 8px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: #9f1239;
}
.feature-text {
    margin: 0;
    font-size: 19px;
    line-height: 1.45;
    color: #1f2937;
}
.footer {
    padding: 34px 20px 42px;
    text-align: center;
    font-size: 14px;
    color: #e5e7eb;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    contain: layout;
}
.footer-inner {
    max-width: 1100px;
    margin: auto;
}
.footer-title {
    margin: 0 0 10px;
    font-size: 18px;
    color: #fff;
}
.footer-subtitle {
    margin: 0 0 18px;
    color: #cbd5e1;
    font-size: 14px;
}
.footer-links a {
    margin: 0 4px;
    text-decoration: none;
    color: #f8fafc;
}
.footer-links a:hover {
    color: #f9a8d4;
}
.footer-copy {
    margin-top: 16px;
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 80px;
}
.faq-container {
    max-width: 1160px;
    margin: 0 auto;
    width: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgb(0 0 0 / 0.07);
    box-sizing: border-box;
}
.faq h2 {
    margin: 0 0 20px;
    font-size: 30px;
    color: #111827;
}
.faq-item {
    background: #e8e8e8;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 16px 18px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #9f1239;
    transition: background-color 0.2s ease;
    text-align: left;
    font-family: inherit;
}
.faq-question:hover {
    background-color: #fdf3ec;
}
.faq-question span {
    flex: 1;
}
.faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform 0.3s ease;
    color: #9f1239;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        padding 0.3s ease;
    color: #374151;
    line-height: 1.55;
    background: #fff;
}
.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 18px 16px;
    display: block;
}
.seo-content {
    padding: 6px 20px 80px;
    background: #fff;
    contain: layout style paint;
}
.seo-container {
    max-width: 900px;
    margin: auto;
}
.seo-content h2 {
    margin: 0 0 12px;
    font-size: 30px;
    color: #111827;
}
.seo-content h3 {
    margin: 20px 0 8px;
    font-size: 19px;
    color: #9f1239;
}
.seo-content p,
.seo-content li {
    color: #374151;
    line-height: 1.7;
    font-size: 16px;
}
.seo-content ul {
    margin: 10px 0 0;
    padding-left: 20px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 0;
    margin-bottom: 20px;
}
.trust-chip {
    font-size: 12px;
    font-weight: 600;
    background: rgb(240 253 244 / 0.92);
    border: 1px solid rgb(22 163 74 / 0.28);
    color: #15803d;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.01em;
}
.hero-demo-mode1 .hero-trust {
    justify-content: flex-start;
}
.hero-scroll-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 32px;
    padding: 11px 22px;
    background: rgb(255 255 255 / 0.92);
    border: 1.5px solid rgb(249 115 22 / 0.4);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #f97316;
    cursor: pointer;
    transition:
        background 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.15s ease;
    box-shadow: 0 2px 12px rgb(249 115 22 / 0.14);
    -webkit-tap-highlight-color: #fff0;
}
.hero-scroll-toggle:hover,
.hero-scroll-toggle:focus-visible {
    background: #fff7f0;
    box-shadow: 0 4px 18px rgb(249 115 22 / 0.22);
    transform: translateY(-1px);
    outline: none;
}
.hero-scroll-toggle svg {
    flex-shrink: 0;
}
.video-guide {
    padding: 40px 20px;
    background: #fff0;
    margin: 40px 0;
}
.video-container {
    max-width: 1160px;
    margin: 0 auto;
    width: 100%;
}
.video-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
}
.video-description {
    font-size: 16px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.video-wrapper {
    position: relative;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.1);
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}
.video-steps {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgb(0 0 0 / 0.07);
}
.video-steps h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    margin-top: 0;
}
.video-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.video-steps li {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #f97316;
    margin: 0;
}
.video-steps strong {
    color: #1f2937;
    font-weight: 600;
}
.templates-preview-section {
    background: #fff0;
    padding: 12px 12px 22px 12px !important;
    margin: 40px 0;
}
.templates-preview-container {
    max-width: 1160px;
    margin: 0px !important;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgb(0 0 0 / 0.07);
    padding: 40px 20px;
}
.language-selector-inline {
    margin-top: 10px;
}
.language-selector-inline .language-options {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.language-selector-inline .language-options::-webkit-scrollbar {
    display: none;
}
@media (max-width: 768px) {
    .templates-preview-section {
        padding: 0 !important;
        margin: 0 12px 1.5rem 12px;
        background: #fff0;
        border-radius: 0;
        box-shadow: none;
    }
    .templates-preview-container {
        padding: 30px 16px;
    }
    .templates-header {
        margin-bottom: 20px;
    }
    .templates-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .templates-description {
        font-size: 14px;
    }
    .templates-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .hero-container {
        flex-direction: column;
    }
    .features-container {
        grid-template-columns: 1fr;
    }
    .hero-simple {
        padding: 0 28px 70px;
        text-align: center;
        background: linear-gradient(135deg, #e9edff 0%, #f3e8ff 50%, #e0f2fe 100%);
        border-bottom-left-radius: 56px;
        border-bottom-right-radius: 56px;
    }
    .hero-simple h1 {
        margin-top: 0;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 0;
        color: #111827;
    }
    .hero-simple p {
        font-size: 16px;
        color: #374151;
        margin-top: 8px;
        margin-left: 12px;
        margin-right: 12px;
        margin-bottom: 18px;
    }
    .hero-row {
        flex-direction: column;
        text-align: center;
        gap: 0;
        justify-content: center;
        align-items: center;
        flex: initial;
        width: 100%;
        max-width: 100%;
    }
    .video-help-btn {
        width: fit-content;
        margin: 0 auto;
    }
    .hero-image img {
        max-width: 90%;
    }
    #detailsContent {
        contain: layout;
        transition:
            max-height 0.3s ease,
            opacity 0.3s ease,
            padding 0.3s ease;
        max-height: 5000px;
        opacity: 1;
        overflow: hidden;
    }
    #detailsContent[style*="display:none"] {
        max-height: 0;
        opacity: 0;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        pointer-events: none;
        visibility: hidden;
    }
    .faq h2 {
        font-size: 24px;
    }
    .hero-image {
        height: auto;
        width: auto;
        margin: 0 auto !important;
        max-width: 800px;
        padding: 0 !important;
        display: block;
        object-fit: contain;
        min-height: 0;
    }
    .preview-scroll {
        margin-bottom: 12px;
        display: flex;
        align-items: flex-end;
        gap: 12px;
        width: max-content;
        padding-left: 16px;
        padding-right: 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .preview-scroll img {
        height: 150px;
        width: auto;
        flex: none;
    }
    .hero-demo::-webkit-scrollbar {
        display: none;
    }
    .preview-scroll::-webkit-scrollbar {
        display: none;
    }
    .seo-content h2 {
        font-size: 24px;
    }
    .video-guide {
        padding: 46px 16px 0 16px;
        margin: 0 0 0 0;
    }
    .video-title {
        font-size: 24px;
    }
    .video-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .video-wrapper {
        margin-bottom: 24px;
        padding-bottom: 56.25%;
    }
    .video-steps {
        padding: 20px;
    }
    .video-steps h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .video-steps ul {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .video-steps li {
        font-size: 13px;
        padding: 10px;
    }
    .faq-container {
        padding: 20px;
        border-radius: 10px;
    }
    .faq-item {
        margin-bottom: 12px;
    }
    .faq-question {
        font-size: 15px;
        padding: 14px 16px;
    }
    .template-card {
        width: 100%;
        aspect-ratio: 210 / 297;
    }
     .how-to-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 800px;
        margin: 0 auto;
    }
    .how-to-step img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
        /* box-shadow: 0 2px 8px rgb(0 0 0 / 0.06); */
    }
     @media (max-width: 768px) {
        .how-to-steps {
            grid-template-columns: 1fr;
            gap: 16px;
        }
    }
}

/* ======================================================================
   Below-top-UI styles moved from index.html inline <style>.
   These render below the app bar / hero (form fields, photo, FAQ,
   templates, video, details, footer, sticky button).
   ====================================================================== */
.nav-link:hover {
        color: #af0535;
    }

@media (min-width: 769px) {
        .templates-preview-section {
            max-width: 1000px !important;
            margin: 40px auto !important;
            padding: 0 !important;
            background: none !important;
            border: none !important;
            box-shadow: none !important;
        }
        .templates-preview-container {
            width: 100% !important;
            max-width: 100% !important;
            margin: 0 auto !important;
            padding: 40px 50px !important;
            background: #fff !important;
            border-radius: 12px !important;
            border: 1px solid #e5e7eb !important;
        }
        .video-sec {
            max-width: 1000px !important;
            margin: 22px auto 44px !important;
            padding: 2rem 50px !important;
            width: auto !important;
        }
        .faq-sec,
        .details-sec {
            max-width: 1000px !important;
            margin: 22px auto 44px !important;
            padding: 2rem 50px !important;
            width: auto !important;
        }
        #faqSection {
            max-width: 1000px !important;
            margin: 0 auto !important;
            padding: 30px 50px !important;
        }
        .footer {
            width: 100% !important;
            max-width: none !important;
            margin: 0 auto !important;
            padding: 2rem 1rem !important;
        }
        section[style*="max-width:1200px"] {
            max-width: 1000px !important;
            margin: 0 auto !important;
            padding: 30px 50px !important;
        }
        section[style*="max-width:1100px"] {
            max-width: 1000px !important;
            margin: 0 auto !important;
            padding: 30px 50px !important;
        }
        section[style*="max-width: 1100px"] {
            max-width: 1000px !important;
            margin: 0 auto !important;
            padding: 30px 50px !important;
        }
        .trust-badges {
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            padding: 1rem 0;
        }
}

.hero h1.animate-title {
        animation: titleChange 1.2s ease-out;
    }

.hero h1 {
        font-size: clamp(2rem, 6vw, 3rem) !important;
        line-height: 1.4 !important;
        text-align: center !important;
        padding: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }

@media (min-width: 769px) {
        .hero h1 {
            padding-left: 0;
            padding-right: 0;
        }
        .language-selector-inline .language-options {
            justify-content: center;
        }
        .layout {
            flex-direction: row-reverse !important;
            align-items: flex-start;
            gap: 32px;
        }
        .form-column {
            margin: 0;
        }
}

.photo-section {
        flex: 0 0 280px;
        margin: 0 !important;
        border: none !important;
        box-shadow: none !important;
        padding: 12px !important;
    }

.photo-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

.photo-item {
        position: relative;
        width: 100%;
        border-radius: 16px;
        overflow: hidden;
        background: #f9fafb;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.photo-item img {
        width: auto;
        max-height: 250px;
        display: block;
        align-self: center;
    }

@media (max-width: 768px) {
        .form-section {
            padding: 0 !important;
        }
        .photo-section {
            flex: 0 0 auto !important;
            border: 1px solid #e5e7eb !important;
            margin: 0 12px !important;
        }
        .photo-list {
            flex-direction: row;
            flex-wrap: nowrap;
            gap: 10px;
            width: auto;
            justify-content: center;
        }
        .photo-item {
            flex: 0 0 auto;
            width: auto;
            min-width: 72px;
            display: flex;
            flex-direction: column;
            position: static !important;
            overflow: visible !important;
            max-height: none !important;
        }
        .photo-item img {
            width: auto;
            max-height: 100px;
            display: block;
            align-self: center;
        }
        .photo-item .photo-delete-btn {
            position: static !important;
            width: 100% !important;
            height: 32px !important;
            min-height: 32px !important;
            line-height: 32px !important;
            border-radius: 6px !important;
            border: none;
            background: #dc2626 !important;
            color: #fff !important;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            padding: 0;
            font-size: 12px;
            font-weight: 600;
            margin-top: 4px;
            box-shadow: none !important;
        }
        .photo-item .photo-delete-btn svg {
            display: block !important;
            width: 14px;
            height: 14px;
        }
        .photo-box {
            display: flex !important;
            flex-direction: row !important;
            align-items: flex-start !important;
            gap: 12px;
        }
        .photo-placeholder {
            width: 70px !important;
            height: 100px !important;
            flex-shrink: 0;
            border-radius: 8px;
        }
        .photo-placeholder svg {
            width: 22px !important;
            height: 22px !important;
        }
        .photo-content-wrapper {
            flex-direction: column !important;
            align-items: flex-start !important;
            gap: 6px;
        }
        .photo-title {
            font-size: 0.85rem;
            white-space: nowrap;
        }
        .photo-upload-btn {
            padding: 6px 12px;
            font-size: 0.8rem;
        }
    }

.photo-box {
        align-items: center;
        justify-content: center;
    }

.photo-content-wrapper {
        align-items: center;
        text-align: center;
    }

.photo-item .photo-delete-btn {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,0.92);
        color: #dc2626;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        z-index: 5;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }

.photo-item .photo-delete-btn:hover {
        background: #fff;
        transform: scale(1.08);
    }

.photo-item .photo-delete-btn svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
    }

.sticky-form-btn {
        position: fixed;
        bottom: 24px;
        right: 11%;
        left: auto;
        top: auto;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        z-index: 999;
        display: none;
    }

.sticky-form-btn.show {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

.form-section {
        flex: 1 1 auto;
        min-width: 0;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

.form-column {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        margin: 18px 12px 22px 12px;
    }

.biodata-heading-field {
        margin: 16px 0 0;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        overflow: hidden;
    }

.section-last {
        margin-bottom: 0 !important;
    }

.section-last .section-card,
    .section-last .add-more-row {
        margin-bottom: 0 !important;
    }

.biodata-heading-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        cursor: pointer;
        /* user-select: none; */
        font-size: 15px;
        font-weight: 600;
        color: #374151;
        transition: background 0.2s;
    }

.biodata-heading-toggle:hover {
        background: #f9fafb;
    }

.heading-arrow {
        transition: transform 0.3s ease;
        color: #9ca3af;
        flex-shrink: 0;
    }

.heading-arrow.open {
        transform: rotate(180deg);
    }

.biodata-heading-content {
        padding: 0 20px 16px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

.biodata-heading-content label {
        font-size: 14px;
        font-weight: 600;
        color: #374151;
    }

.biodata-heading-content .optional-tag {
        font-weight: 400;
        color: #9ca3af;
        font-size: 12px;
    }

.biodata-heading-content input {
        padding: 10px 14px;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        font-size: 15px;
        outline: none;
        transition: border-color 0.2s;
    }

.biodata-heading-content input:focus {
        border-color: #af0535;
        box-shadow: 0 0 0 3px rgba(142,31,31,0.1);
    }

.form-actions {
        margin-bottom: 2px;
        margin-top: 0 !important;
        display: flex;
        gap: 1rem;
        justify-content: center;
    }

.primary-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 12px 2rem;
        min-height: 55px;
        background: #af0535;
        color: #fff;
        border: none;
        border-radius: 9999px !important;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        box-shadow: none !important;
        margin: 12px 24px 0 24px !important;
    }

#nextBtn {
        position: relative;
        overflow: hidden;
        isolation: isolate;
    }

#nextBtn::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.20) 50%, transparent 70%);
        background-size: 200% 100%;
        animation: btnShimmer 6s ease-in-out infinite;
        pointer-events: none;
        border-radius: inherit;
    }

@keyframes btnShimmer {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }

.primary-btn:hover {
        background: #7a1a1a;
        transform: translateY(-2px);
        box-shadow: none !important;
    }

.primary-btn:active {
        transform: translateY(0);
    }

.btn-arrow {
        width: 20px;
        height: 20px;
    }

.button-container {
        margin-top: 1rem;
        text-align: center;
        padding-bottom: 1rem;
    }

.secondary-btn {
        padding: 10px 1.5rem;
        background: transparent;
        color: #6b7280;
        margin-top: 22px;
        border: 1px solid #d1d5db;
        border-radius: 66px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
    }

.secondary-btn:hover {
        border-color: #a78bfa;
        color: #7c3aed;
        background: #f3e8ff;
    }

@media (max-width: 768px) {
          .sticky-form-btn {
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            width: 100% !important;
            background: #fff !important;
            padding: 12px 16px !important;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.08) !important;
        }
        .sticky-form-btn .sticky-create-btn {
            width: 90%;
            margin: 0 auto !important;
            padding-left: 16px !important;
            padding-right: 16px !important;
        }
}

.trust-badges {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
        padding: 1rem 1rem;
    }

/* FAQ (from index.html body inline <style>) */
.faq-item{margin-bottom:20px;border-radius:12px;overflow:visible;background:#fff}.faq-item.active{overflow:visible}.faq-q{width:100%;background:#f9fafb;padding:16px 20px;border:none;cursor:pointer;text-align:left;display:flex;align-items:center;justify-content:space-between;font-weight:600;color:#1f2937;font-size:14px;transition:all .3s ease;border-radius:12px 12px 0 0}.faq-q:hover{background:#f3f4f6}.faq-q span{flex:1;word-break:break-word}.faq-arrow{width:20px;height:20px;color:#b91c1c;flex-shrink:0;transition:transform .3s ease;margin-left:12px;display:inline-block}.faq-item.active .faq-arrow{transform:rotate(180deg)}.faq-a{max-height:0;opacity:0;overflow:hidden;transition:max-height .4s ease,opacity .3s ease;padding:0 20px;color:#6b7280;line-height:1.6;font-size:14px;margin:0;display:block}.faq-item.active .faq-a{max-height:2000px;opacity:1;padding:16px 20px;overflow:visible}
