/* === VARIABLES === */
:root {
    --orange-primary: #FF8B6B;
    --cyan-primary: #5DBEBD;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Helvetica Neue', Arial, sans-serif;
    color: #2D3748;
    line-height: 1.5;
    background: #fff;
}

/* === HERO SECTION === */
.hero-section {
    background: #fff;
    padding: 60px 20px 40px;
    text-align: center;
}

.hero-title {
    font-size: 36px;
    font-weight: 600;
    color: #2D3748;
    line-height: 1.3;
    margin-bottom: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 18px;
    color: #2D3748;
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--orange-primary);
}

/* === FORMULAIRE === */
.form-section {
    background: #fff;
    padding: 50px 20px 80px;
}

.form-container {
    max-width: 560px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 15px;
    color: #2D3748;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 16px;
    color: #2D3748;
    background: #fff;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(255, 139, 107, 0.1);
}

.form-select {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 16px;
    color: #2D3748;
    background: #fff;
    cursor: pointer;
}

.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .form-control {
    padding-right: 45px;
}

.input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #A0AEC0;
    pointer-events: none;
}

.see-password-icon {
    pointer-events: auto;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s;
}

.see-password-icon:hover {
    color: #2D3748;
}

.see-password-icon.active {
    color: var(--orange-primary);
}

.form-check {
    margin-bottom: 16px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid #CBD5E0;
    border-radius: 4px;
    margin-top: 2px;
}

.form-check-input:checked {
    background-color: var(--orange-primary);
    border-color: var(--orange-primary);
}

.form-check-label {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.6;
    margin-left: 8px;
}

.form-check label {
    font-weight: 700;
}

.btn-submit {
    width: 100%;
    height: 56px;
    background: var(--orange-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 32px;
}

.btn-submit:hover {
    background: #ff7555;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 139, 107, 0.3);
}

/* === VALIDATION ERRORS === */
.form-error,
.invalid-feedback,
ul.list-unstyled li {
    display: block;
    color: #E53E3E;
    font-size: 14px;
    margin-top: 6px;
    font-weight: 500;
    line-height: 1.4;
}

.form-error ul,
ul.list-unstyled {
    list-style: none;
    margin: 6px 0 0 0;
    padding: 0;
}

.form-error li,
ul.list-unstyled li {
    margin-bottom: 4px;
    padding: 0;
}

.form-control.is-invalid,
.form-select.is-invalid,
.form-group:has(> .form-error) .form-control,
.form-group:has(> .form-error) .form-select,
.form-group:has(> ul.list-unstyled) .form-control,
.form-group:has(> ul.list-unstyled) .form-select {
    border-color: #E53E3E !important;
    background-color: #FFF5F5;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus,
.form-group:has(> .form-error) .form-control:focus,
.form-group:has(> .form-error) .form-select:focus {
    border-color: #E53E3E !important;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1) !important;
}

.form-check-input.is-invalid,
.form-check:has(+ ul.list-unstyled) .form-check-input,
.form-check:has(> ul.list-unstyled) .form-check-input {
    border-color: #E53E3E;
}

.form-check + .form-error,
.form-check + ul.list-unstyled {
    margin-left: 28px;
}

.alert-danger {
    background-color: #FFF5F5;
    border: 1px solid #E53E3E;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    color: #E53E3E;
}

.alert-danger strong {
    display: block;
    margin-bottom: 8px;
}

/* === SECTION AVANTAGES === */
.advantages-section {
    background: var(--cyan-primary);
    padding: 60px 20px;
}

.advantages-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: transparent;
    color: #fff;
    text-align: center;
}

.advantage-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.advantage-icon i {
    color: #fff;
}

.advantage-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.advantage-text {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}

/* === SECTION APP MOBILE === */
.app-section {
    background: #fff;
    padding: 80px 20px;
}

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

.app-image img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
}

/* === SECTION VIDÉOS === */
.videos-section {
    background: linear-gradient(180deg, #FFB8A0 0%, #FFA08E 100%);
    padding: 80px 20px;
}

.videos-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 50px;
}

.videos-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.video-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Styles pour lite-youtube */
lite-youtube {
    background-color: #000;
    position: relative;
    display: block;
    contain: content;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    aspect-ratio: 16 / 9;
}

lite-youtube::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
    background-position: top;
    background-repeat: repeat-x;
    height: 60px;
    padding-bottom: 50px;
    width: 100%;
    transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}

lite-youtube > .lty-playbtn {
    width: 80px;
    height: 80px;
    position: absolute;
    cursor: pointer;
    transform: translate3d(-50%, -50%, 0);
    top: 50%;
    left: 50%;
    z-index: 1;
    background-color: transparent;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="36" fill="none" stroke="%232D3748" stroke-width="4"/><path d="M 32,28 L 32,52 L 56,40 Z" fill="%232D3748"/></svg>');
    background-size: 100%;
    background-repeat: no-repeat;
    border: none;
    transition: all 0.3s ease;
}

lite-youtube:hover > .lty-playbtn {
    transform: translate3d(-50%, -50%, 0) scale(1.1);
}

lite-youtube.lyt-activated {
    cursor: unset;
}

lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated > .lty-playbtn {
    opacity: 0;
    pointer-events: none;
}

.lty-playbtn:focus {
    outline: 2px solid var(--orange-primary);
    outline-offset: 4px;
}

.video-caption {
    padding: 24px;
    font-size: 16px;
    color: #2D3748;
    line-height: 1.6;
}

/* === SECTION TÉMOIGNAGE === */
.testimonial-section {
    background-color: #fcead7;
    padding: 80px 20px;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Carousel Bootstrap 3 */
.carousel {
    position: relative;
    touch-action: pan-y pinch-zoom;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    min-height: 280px;
}

.carousel-inner > .item {
    position: relative;
    display: none;
    transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
    opacity: 0;
    min-height: 280px;
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
    display: block;
}

.carousel-inner > .active {
    left: 0;
    opacity: 1;
}

.carousel-inner > .next,
.carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0;
}

.carousel-inner > .next {
    left: 100%;
    transform: translateX(30px);
}

.carousel-inner > .prev {
    left: -100%;
    transform: translateX(-30px);
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
    left: 0;
    opacity: 1;
    transform: translateX(0);
}

.carousel-inner > .active.left {
    left: -100%;
    opacity: 0;
    transform: translateX(-30px);
}

.carousel-inner > .active.right {
    left: 100%;
    opacity: 0;
    transform: translateX(30px);
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    gap: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-height: 280px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ed8150 0%, #e75923 100%);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
}

.testimonial-avatar i {
    color: #fff;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 12px;
}

.testimonial-quote {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.8;
    margin: 0 0 16px 0;
    font-style: italic;
}

.testimonial-source {
    font-size: 14px;
    color: #A0AEC0;
    text-align: right;
    font-style: normal;
}

/* Animations témoignages */
.carousel-inner .item .testimonial-avatar {
    animation: fadeInScale 0.8s ease-out 0.2s both;
}

.carousel-inner .item .testimonial-name {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.carousel-inner .item .testimonial-quote {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.carousel-inner .item .testimonial-source {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.carousel-inner .item:not(.active) .testimonial-avatar,
.carousel-inner .item:not(.active) .testimonial-name,
.carousel-inner .item:not(.active) .testimonial-quote,
.carousel-inner .item:not(.active) .testimonial-source {
    animation: none;
    opacity: 0;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pagination dots */
.pagination-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: rgba(45, 55, 72, 0.2);
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.dot:hover {
    background: rgba(45, 55, 72, 0.4);
    transform: scale(1.2);
}

.dot.active {
    background: #2D3748;
    width: 32px;
    border-radius: 6px;
    transform: scale(1);
    animation: dotPulse 0.4s ease-in-out;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* === SECTION PARTICULIERS === */
.clients-section {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}

.clients-title {
    font-size: 36px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 16px;
    line-height: 1.3;
}

.clients-subtitle {
    font-size: 18px;
    color: #4A5568;
    margin-bottom: 60px;
}

/* Carousel des projets */
#projectsCarousel {
    max-width: 600px;
    margin: 0 auto 40px;
    touch-action: pan-y pinch-zoom;
}

#projectsCarousel .carousel-inner {
    border-radius: 12px;
    min-height: 340px;
}

#projectsCarousel .carousel-inner > .item {
    min-height: 340px;
}

.project-example {
    background: #F7FAFC;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-example:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.project-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #ed8150 0%, #e75923 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    overflow: hidden;
}

.project-icon i {
    color: #fff;
}

.project-icon img {
    object-fit: contain;
    filter: invert(1);
}

.project-type {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2D3748;
}

.project-date {
    font-size: 16px;
    color: #A0AEC0;
    margin-bottom: 16px;
}

.project-description {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-location {
    font-size: 15px;
    color: #2D3748;
    font-weight: 500;
}

.project-location i {
    color: var(--cyan-primary);
    margin-right: 6px;
}

/* Animations projets */
#projectsCarousel .item .project-icon {
    animation: fadeInScale 0.8s ease-out 0.1s both;
}

#projectsCarousel .item .project-type {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

#projectsCarousel .item .project-date {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

#projectsCarousel .item .project-description {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

#projectsCarousel .item .project-location {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

#projectsCarousel .item:not(.active) .project-icon,
#projectsCarousel .item:not(.active) .project-type,
#projectsCarousel .item:not(.active) .project-date,
#projectsCarousel .item:not(.active) .project-description,
#projectsCarousel .item:not(.active) .project-location {
    animation: none;
    opacity: 0;
}

.projects-dots {
    margin-bottom: 40px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--orange-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: #ff7555;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 139, 107, 0.3);
    color: #fff;
}

/* === SECTION COMMENT ÇA FONCTIONNE === */
.how-section {
    background-color: #fcead7;
    padding: 80px 20px;
}

.how-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 60px;
    line-height: 1.3;
}

.how-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #2D3748;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.step-icon i {
    color: #fff;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.6;
    margin: 0;
}

.guarantee-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.guarantee-icon {
    font-size: 40px;
    flex-shrink: 0;
    color: var(--cyan-primary);
}

.guarantee-icon i {
    color: var(--cyan-primary);
}

.guarantee-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 12px;
}

.guarantee-content p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.6;
}

/* === SECTION CONTACT === */
.contact-section {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.contact-intro {
    font-size: 18px;
    color: #4A5568;
    margin-bottom: 12px;
}

.contact-phone {
    font-size: 42px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 12px;
}

.contact-hours {
    font-size: 16px;
    color: #4A5568;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 14px;
    color: #A0AEC0;
}

/* === SECTION FAQ === */
.faq-section {
    background: #F7FAFC;
    padding: 80px 20px;
}

.faq-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.panel-group {
    margin-bottom: 20px;
}

.panel {
    margin-bottom: 16px;
    background-color: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.panel-default {
    border-color: transparent;
}

.panel-default > .panel-heading {
    color: #2D3748;
    background-color: #fff;
    border-color: transparent;
    border-radius: 12px;
}

.panel-heading {
    padding: 0;
    border-bottom: 0;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
}

.panel-title > a {
    display: block;
    padding: 24px 28px;
    color: #2D3748;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.panel-title > a:hover,
.panel-title > a:focus {
    color: var(--orange-primary);
    text-decoration: none;
}

.panel-title > a:not(.collapsed) {
    color: var(--orange-primary);
}

.panel-title > a:after {
    content: '\f078';
    font-family: 'FontAwesome';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
    color: var(--orange-primary);
}

.panel-title > a.collapsed:after {
    transform: translateY(-50%) rotate(-90deg);
}

.panel-body {
    padding: 0 28px 28px 28px;
    font-size: 16px;
    color: #4A5568;
    line-height: 1.8;
    border-top: none !important;
}

.panel-collapse {
    border-top: none;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .hero-title {
        font-size: 28px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        min-height: 320px;
    }

    .testimonial-avatar {
        margin: 0 auto;
    }

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

    .carousel-inner {
        min-height: 320px;
    }

    .carousel-inner > .item {
        min-height: 320px;
    }

    #projectsCarousel .carousel-inner {
        min-height: 380px;
    }

    #projectsCarousel .carousel-inner > .item {
        min-height: 380px;
    }

    .project-example {
        min-height: 380px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 24px;
    }

    .form-container {
        padding: 0 16px;
    }

    .testimonial-card {
        padding: 24px 20px;
        min-height: 340px;
    }

    .testimonial-quote {
        font-size: 15px;
    }

    .carousel-inner {
        min-height: 340px;
    }

    .carousel-inner > .item {
        min-height: 340px;
    }

    #projectsCarousel .carousel-inner {
        min-height: 400px;
    }

    #projectsCarousel .carousel-inner > .item {
        min-height: 400px;
    }

    .project-example {
        min-height: 400px;
    }

    .videos-grid {
        gap: 24px;
        grid-template-columns: 1fr;
    }

    lite-youtube > .lty-playbtn {
        width: 60px;
        height: 60px;
    }

    .video-caption {
        padding: 20px;
        font-size: 15px;
    }
}

lite-youtube {
    background-color: #000;
    position: relative;
    display: block;
    contain: content;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    max-width: 720px;
}

/* gradient */
lite-youtube::before {
    content: attr(data-title);
    display: block;
    position: absolute;
    top: 0;
    /* Pixel-perfect port of YT's gradient PNG, using https://github.com/bluesmoon/pngtocss plus optimizations */
    background-image: linear-gradient(180deg, rgb(0 0 0 / 67%) 0%, rgb(0 0 0 / 54%) 14%, rgb(0 0 0 / 15%) 54%, rgb(0 0 0 / 5%) 72%, rgb(0 0 0 / 0%) 94%);
    height: 99px;
    width: 100%;
    font-family: "YouTube Noto",Roboto,Arial,Helvetica,sans-serif;
    color: hsl(0deg 0% 93.33%);
    text-shadow: 0 0 2px rgba(0,0,0,.5);
    font-size: 18px;
    padding: 25px 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

lite-youtube:hover::before {
    color: white;
}

/* responsive iframe with a 16:9 aspect ratio
    thanks https://css-tricks.com/responsive-iframes/
*/
lite-youtube::after {
    content: "";
    display: block;
    padding-bottom: calc(100% / (16 / 9));
}
lite-youtube > iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}

/* play button */
lite-youtube > .lty-playbtn {
    display: block;
    /* Make the button element cover the whole area for a large hover/click target… */
    width: 100%;
    height: 100%;
    /* …but visually it's still the same size */
    background: no-repeat center/68px 48px;
    /* YT's actual play button svg */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24 27 14v20" fill="white"/></svg>');
    position: absolute;
    cursor: pointer;
    z-index: 1;
    filter: grayscale(100%);
    transition: filter .1s cubic-bezier(0, 0, 0.2, 1);
    border: 0;
}

lite-youtube:hover > .lty-playbtn,
lite-youtube .lty-playbtn:focus {
    filter: none;
}

/* Post-click styles */
lite-youtube.lyt-activated {
    cursor: unset;
}
lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated > .lty-playbtn {
    opacity: 0;
    pointer-events: none;
}

.lyt-visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

/*# sourceMappingURL=inscription.css.map */
