﻿/* =========================================================
   AI Video Production page — Figma node 3806:40762
   Do NOT set font-size / line-height / font-family on h1–h6 or p
   (those come from indexmain.css)
   KEEP subtitle + specific typography (FAQ, badges, stats, labels, cards)
   ========================================================= */

:root {
    --avp-purple: #7B61FF;
    --avp-btn-grad: linear-gradient(90deg, rgba(123, 97, 255, 1) 12%, rgba(204, 187, 245, 1) 96%);
    --avp-body: #474650;
    --avp-muted: #C8C5D2;
    --avp-card-border: #A8AED0;
}

.avp-page {
    overflow-x: hidden;
}

.avp-accent {
    color: var(--avp-purple) !important;
}

.avp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 28px;
    border-radius: 12px;
    font-family: Inter, sans-serif !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.avp-btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.avp-btn-primary {
    background: var(--avp-btn-grad);
    color: #fff;
    box-shadow: 0 8px 24px rgba(123, 97, 255, 0.28);
}

.avp-btn-primary i {
    color: #fff;
}

.avp-btn-outline {
    background: #fff;
    color: var(--avp-purple);
    border-color: var(--avp-purple);
    font-weight: 600;
}

.avp-btn-outline i {
    color: var(--avp-purple);
}

/* Hero */
.avp-hero {
    position: relative;
    min-height: 801px;
    display: flex;
    align-items: stretch;
    color: #fff;
}

.avp-hero-bg,
.avp-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.avp-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avp-hero-overlay {
    background: linear-gradient(115deg, rgba(0, 0, 0, 1) 0%, rgba(31, 31, 31, 0.8) 25%, rgba(115, 115, 115, 0) 91%);
}

.avp-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 146px 0 50px;
    gap: 48px;
    width: 100%;
}

.avp-hero-content {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.avp-hero-content h1 {
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0;
}

.avp-hero-content > p {
    font-weight: 400;
    color: #F3EFFC;
    margin: 0;
    max-width: 596px;
}

.avp-hero-btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 23px;
    margin-top: 16px;
}

.avp-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.avp-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 16px;
    min-width: 160px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(234, 234, 234, 0.28);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 12px;
    text-align: center;
}

.avp-stat-card h3 {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    margin: 0;
}

.avp-stat-card p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--avp-muted);
    margin: 0;
}

/* What is AI Video */
.avp-what {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.avp-what-bg,
.avp-what-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.avp-what-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avp-what-gradient {
    background: linear-gradient(146deg, rgba(245, 246, 250, 0.94) 0%, rgba(245, 246, 250, 0.9) 100%);
}

.avp-what-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
}

.avp-what-copy {
    flex: 1 1 52%;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.avp-what-copy h2 {
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #05053E;
    margin: 0;
}

.avp-what-box {
    background: #05053E;
    border-radius: 12px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.avp-what-box h3 {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -0.004em;
    color: #fff;
    margin: 0;
}

.avp-what-box p {
    font-weight: 400;
    color: var(--avp-muted);
    margin: 0;
}

.avp-what-desc {
    font-weight: 400;
    color: var(--avp-body);
    margin: 0;
}

.avp-what-visual {
    position: relative;
    flex: 1 1 42%;
    max-width: 612px;
    height: 580px;
    border-radius: 22px;
    overflow: hidden;
    flex-shrink: 0;
}

.avp-what-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avp-what-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(161deg, rgba(24, 38, 65, 0.1) 0%, rgba(24, 38, 65, 0.55) 100%);
    pointer-events: none;
}

.avp-badge {
    position: absolute;
    z-index: 2;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: 15px 19px;
}

.avp-badge-powered {
    top: 20px;
    left: 20px;
    width: 200px;
    background: #05053E;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.avp-badge-powered strong {
    font-family: Inter, sans-serif;
    font-weight: 800;
    font-size: 13px;
    line-height: 30px;
    color: #fff;
}

.avp-badge-powered span {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 15.4px;
    color: var(--avp-muted);
}

.avp-badge-types {
    right: 18px;
    bottom: 170px;
    width: 123px;
    background: rgba(225, 29, 72, 0.15);
    border: 1px solid rgba(225, 29, 72, 0.35);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.avp-badge-types strong {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 28px;
    line-height: 28px;
    color: #B4B1EE;
}

.avp-badge-types span {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 10px;
    line-height: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.avp-quote {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #05053E;
    border: 1px solid rgba(225, 29, 72, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 18px 20px 18px 38px;
}

.avp-quote p {
    font-style: italic;
    font-weight: 400;
    font-size: 15px;
    line-height: 25.5px;
    color: var(--avp-muted);
    margin: 0 0 12px;
}

.avp-quote cite {
    font-family: Inter, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 11px;
    color: #fff;
}

/* Video types */
.avp-types {
    padding: 50px 0;
    background: #fff;
}

.avp-section-head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.avp-eyebrow {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--avp-purple);
}

.avp-section-head h2 {
    font-weight: 700;
    color: #05053E;
    margin: 0;
}

.avp-section-head p {
    font-weight: 400;
    color: var(--avp-body);
    margin: 0;
    max-width: 780px;
}

.avp-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.avp-type-card {
    background: #fff;
    border: 1px solid var(--avp-card-border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.avp-type-card:hover {
    box-shadow: 0 8px 28px rgba(24, 38, 65, 0.12);
    transform: translateY(-2px);
}

.avp-type-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #eef0f8;
}

.avp-type-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avp-type-card h3 {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.004em;
    color: #302F39;
    margin: 0;
    padding: 14px 12px 18px;
    line-height: 1.35;
}

.avp-type-hidden {
    display: none;
}

.avp-types-cta {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.avp-page.avp-types-expanded .avp-type-hidden,
.avp-types.is-expanded .avp-type-hidden {
    display: flex;
}

/* Audience */
.avp-audience {
    padding: 50px 0 70px;
    background: #fff;
}

.avp-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.avp-audience-card {
    background: #fff;
    border: 1px solid var(--avp-card-border);
    border-radius: 32px;
    padding: 16px;
    box-shadow: 0px 8px 40px 0px rgba(24, 38, 65, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.avp-audience-card > img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.avp-audience-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 4px 8px;
}

.avp-audience-body h3 {
    font-weight: 700;
    color: #05053E;
    margin: 0;
}

.avp-audience-body p {
    font-weight: 400;
    font-size: 15px;
    line-height: 25.5px;
    color: #475067;
    margin: 0;
}

.avp-audience-intro {
    padding: 24px 0 0;
    justify-content: space-between;
}

.avp-audience-intro .avp-audience-body {
    padding: 0 16px;
}

.avp-audience-intro > img {
    height: 240px;
    border-radius: 20px;
    margin-top: auto;
}

/* Legal banner */
.avp-legal-banner {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.avp-legal-banner-bg,
.avp-legal-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.avp-legal-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avp-legal-banner-overlay {
    background: linear-gradient(168deg, rgba(24, 38, 65, 0.88) 0%, rgba(225, 29, 72, 0.1) 100%);
}

.avp-legal-banner-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 0;
}

.avp-legal-banner-inner h2 {
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0 0 8px;
}

.avp-legal-banner-inner p {
    font-weight: 400;
    font-size: 15px;
    line-height: 24.75px;
    color: #fff;
    margin: 0;
}

/* Legal cards */
.avp-legal {
    position: relative;
    padding: 60px 0 70px;
    overflow: hidden;
}

.avp-legal-bg,
.avp-legal-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.avp-legal-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avp-legal-overlay {
    background: linear-gradient(157deg, rgba(24, 38, 65, 0.93) 0%, rgba(24, 38, 65, 0.85) 100%);
}

.avp-legal .container-width {
    position: relative;
    z-index: 1;
}

.avp-legal-head {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.avp-legal-head span {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.avp-legal-head h2 {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    margin: 0;
    max-width: 560px;
}

.avp-legal-head h2 em {
    font-style: normal;
    color: #fff;
}

.avp-legal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.avp-legal-card {
    background: #05053E;
    border: 1px solid var(--avp-card-border);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    padding-bottom: 16px;
}

.avp-legal-img {
    height: 120px;
    overflow: hidden;
    opacity: 0.5;
}

.avp-legal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avp-legal-body {
    padding: 20px 16px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.avp-legal-body h3 {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -0.004em;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.avp-legal-body p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #F3EFFC;
    margin: 0;
    flex: 1;
}

.avp-legal-tag {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 10px;
    line-height: 30px;
    color: var(--avp-purple);
}

.avp-legal-tag-alt {
    color: #D4D2F8;
}

/* FAQ — Bootstrap accordion (matches page markup) */
.avp-faq {
    padding: 50px 0 70px;
    background: #fff;
}

.avp-faq-head {
    margin-bottom: 40px;
}

.avp-faq-head h2 {
    font-weight: 700;
    font-size: 44px;
    line-height: 52px;
    color: #05053E;
    margin: 0 0 8px;
}

.avp-faq-head p {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #05053E;
    margin: 0;
}

.avp-faq .accordion-item {
    background: #fff;
    border: 1px solid rgba(168, 174, 208, 0.55);
    border-radius: 8px !important;
    overflow: hidden;
    margin-bottom: 0;
}

.avp-faq .accordion-item.mt-3 {
    margin-top: 16px !important;
}

.avp-faq .accordion-button {
    font-family: Inter, sans-serif !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #05053E;
    background: #fff;
    box-shadow: none;
    padding: 16px 20px;
    gap: 12px;
}

.avp-faq .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.avp-faq .accordion-button:not(.collapsed) {
    background: #fff;
    color: #05053E;
    box-shadow: none;
}

.avp-faq .accordion-button::after {
    flex-shrink: 0;
}

.avp-faq .accordion-body {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: var(--avp-body);
    padding: 0 20px 16px;
}

/* Contact */
.avp-contact {
    position: relative;
    padding: 80px 0;
    min-height: 720px;
    overflow: hidden;
    background: #1a1a3a;
}

.avp-contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.avp-contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
    opacity: 0.85;
}

.avp-contact .container-width {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

.avp-contact-form-wrap {
    width: 100%;
    max-width: 826px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.avp-contact-header {
    background: linear-gradient(90deg, rgba(105, 87, 255, 1) 0%, rgba(181, 157, 255, 1) 100%);
    padding: 28px 10px;
    text-align: center;
}

.avp-contact-header h2 {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 33px;
    line-height: 42.9px;
    color: #fff;
    margin: 0;
}

.avp-contact-form {
    padding: 24px 40px 32px;
}

.avp-label {
    display: block;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    margin-bottom: 6px;
}

.avp-label span {
    color: #e11d48;
}

.avp-input {
    width: 100%;
    border: 1px solid #767676;
    border-radius: 4px;
    padding: 10px 12px;
    font-family: Inter, sans-serif;
    font-size: 15px;
    line-height: 22px;
    color: #000;
    background: #fff;
    outline: none;
    height: 43px;
}

.avp-input:focus {
    border-color: var(--avp-purple);
}

.avp-textarea {
    height: auto;
    min-height: 100px;
    resize: vertical;
}

.avp-contact-form small {
    display: block;
    margin-top: 4px;
    font-family: Inter, sans-serif;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.8);
}

.avp-phone-row {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.avp-phone-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid #767676;
    border-radius: 4px;
    font-family: Inter, sans-serif;
    font-size: 15px;
    white-space: nowrap;
    background: #fff;
}

.avp-phone-row .avp-input {
    flex: 1;
}

.avp-sms-title {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    margin: 8px 0 10px;
}

.avp-sms-box {
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    margin-bottom: 12px;
    border: 1px solid #000;
    border-radius: 4px;
    padding: 13px 11px;
}

.avp-sms-box a {
    color: #000;
    text-decoration: underline;
}

.avp-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    cursor: pointer;
}

.avp-checkbox input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.avp-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 36px 12px;
    border-radius: 150px;
    border: 0;
    background: linear-gradient(90deg, rgba(105, 87, 255, 1) 0%, rgba(181, 157, 255, 1) 100%);
    color: #fff;
    font-family: Inter, sans-serif !important;
    font-size: 16px;
    line-height: 20.8px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.avp-submit-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1199.98px) {
    .avp-what-inner {
        flex-direction: column;
    }

    .avp-what-visual {
        width: 100%;
        max-width: 100%;
        height: 480px;
    }

    .avp-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .avp-legal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .avp-faq-head h2 {
        font-size: 36px;
        line-height: 44px;
    }
}

@media (max-width: 991.98px) {
    .avp-hero {
        min-height: auto;
    }

    .avp-hero-inner {
        padding: 80px 0 40px;
    }

    .avp-types-grid,
    .avp-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .avp-faq-head h2 {
        font-size: 34px;
        line-height: 42px;
    }

    .avp-faq-head p {
        font-size: 15px;
        line-height: 24px;
    }

    .avp-faq .accordion-button {
        font-size: 15px;
        line-height: 24px;
        padding: 14px 18px;
    }

    .avp-faq .accordion-body {
        font-size: 14px;
        line-height: 22px;
        padding: 0 18px 14px;
    }

    .avp-contact .container-width {
        justify-content: center;
    }

    .avp-contact-form {
        padding: 24px 20px 28px;
    }
}

@media (max-width: 767.98px) {
    .avp-what-copy {
        max-width: 100% !important;
    }

    .avp-hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .avp-btn {
        width: 100%;
    }

    .avp-stat-card {
        flex: 1 1 calc(50% - 12px);
        min-width: 0;
    }

    .avp-what {
        padding: 60px 0;
    }

    .avp-what-visual {
        height: 420px;
    }

    .avp-badge-types {
        right: 12px;
        bottom: 150px;
    }

    .avp-quote {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 14px 14px 14px 28px;
    }

    .avp-quote p {
        font-size: 13px;
        line-height: 20px;
    }

    .avp-types-grid,
    .avp-audience-grid,
    .avp-legal-grid {
        grid-template-columns: 1fr;
    }

    .avp-legal-banner-inner {
        padding: 48px 0;
    }

    .avp-faq-head {
        margin-bottom: 28px;
    }

    .avp-faq .col-md-6 + .col-md-6 {
        margin-top: 12px;
    }

    .avp-faq-head h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .avp-faq-head p {
        font-size: 14px;
        line-height: 22px;
    }

    .avp-faq .accordion-button {
        font-size: 14px !important;
        line-height: 22px !important;
        padding: 14px 16px;
    }

    .avp-faq .accordion-body {
        font-size: 13px;
        line-height: 20px;
        padding: 0 16px 14px;
    }

    .avp-faq .accordion-item.mt-3 {
        margin-top: 12px !important;
    }

    .avp-contact {
        padding: 48px 0;
        min-height: auto;
    }

    .avp-contact-header h2 {
        font-size: 26px;
        line-height: 34px;
    }
}

@media (max-width: 575.98px) {
    .avp-hero-stats {
        gap: 8px;
    }

    .avp-stat-card {
        flex: 1 1 100%;
    }

    .avp-what-visual {
        height: 360px;
    }

    .avp-badge-powered {
        width: 160px;
        padding: 10px 12px;
    }

    .avp-badge-types {
        width: 100px;
        padding: 10px;
    }

    .avp-faq .accordion-button {
        font-size: 13px !important;
        line-height: 20px !important;
    }

    .avp-faq .accordion-body {
        font-size: 12px;
        line-height: 18px;
    }
}
