/* AVSEC · página editorial del Curso 11.2.6 · ES/EN */

body.course-page {
    background: #ffffff;
}

.avc-page {
    --avc-ink: #203448;
    --avc-dark: #10261b;
    --avc-panel: #263a4d;
    --avc-copy: #5d6f80;
    --avc-muted: #66788a;
    --avc-green: #65bd42;
    --avc-green-deep: #397d28;
    --avc-mint: #eef7f0;
    --avc-mint-soft: #f7fbf8;
    --avc-paper: #ffffff;
    --avc-line: #d9e5dc;
    --avc-shadow: 0 22px 60px rgba(28, 55, 42, 0.1);
    overflow: clip;
    background: var(--avc-paper);
    color: var(--avc-copy);
}

.avc-page *,
.avc-page *::before,
.avc-page *::after {
    box-sizing: border-box;
}

.avc-page section {
    padding-block: 0;
}

.avc-page .container {
    width: min(calc(100% - 40px), 1240px);
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 0;
}

.avc-page h1,
.avc-page h2,
.avc-page h3,
.avc-page p {
    text-wrap: pretty;
}

.avc-page :is(a, button, summary):focus-visible {
    outline: 3px solid #2e6d20;
    outline-offset: 4px;
}

/* Hero */
.avc-page .hero-section {
    position: relative;
    min-height: 0;
    padding: clamp(62px, 6vw, 88px) 0 clamp(68px, 7vw, 96px);
    background: linear-gradient(135deg, #f8fcf9 0%, #ffffff 100%);
}

.avc-page .hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-areas:
        "copy visual"
        "conversion visual";
    grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.97fr);
    align-items: center;
    gap: 0 clamp(54px, 7vw, 100px);
}

.avc-page .hero-text {
    grid-area: copy;
    min-width: 0;
    text-align: left;
}

.avc-page .badge {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    margin: 0 0 24px;
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--avc-green);
    box-shadow: 0 8px 20px rgba(57, 125, 40, 0.18);
    color: #fff;
    text-shadow: 0 1px 1px rgba(16, 38, 27, 0.42);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1;
}

.avc-page .hero-text h1 {
    max-width: 680px;
    margin: 0;
    color: var(--avc-ink);
    font-family: var(--font-heading);
    font-size: clamp(3.25rem, 4.45vw, 4.65rem) !important;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.99;
}

.avc-page .hero-text h1 .highlight {
    display: block;
    color: var(--avc-green-deep);
}

.avc-page .hero-text .subtitle {
    max-width: 670px;
    margin: clamp(24px, 3vw, 32px) 0 0;
    color: var(--avc-copy);
    font-size: clamp(1.03rem, 1.35vw, 1.2rem);
    line-height: 1.7;
}

.avc-page .hero-conversion {
    grid-area: conversion;
    min-width: 0;
}

.avc-page .hero-cta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 32px;
}

.avc-page .btn {
    position: relative;
    display: inline-flex;
    min-height: 58px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding: 15px 27px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(57, 125, 40, 0.2);
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.avc-page .btn > span,
.avc-page .btn > i {
    position: relative;
    z-index: 1;
}

.avc-page .btn > i {
    margin-left: 9px;
    font-size: 1.1rem;
}

.avc-page .btn-primary {
    background: var(--avc-green);
    color: var(--avc-dark);
}

.avc-page .btn-primary::after {
    position: absolute;
    top: -45%;
    left: -55%;
    width: 36%;
    height: 190%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
    content: "";
    transform: rotate(18deg);
    animation: avc-button-sheen 4.2s ease-in-out infinite;
    pointer-events: none;
}

.avc-page .btn-primary:hover {
    background: #70c84b;
    box-shadow: 0 18px 36px rgba(57, 125, 40, 0.26);
    color: var(--avc-dark);
    transform: translateY(-2px);
}

@keyframes avc-button-sheen {
    0%,
    64% {
        left: -55%;
    }

    82%,
    100% {
        left: 125%;
    }
}

.avc-page .price-info {
    min-width: 132px;
}

.avc-page .price-info .price {
    display: block;
    color: var(--avc-ink);
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1;
}

.avc-page .price-info .tax {
    display: block;
    margin-top: 7px;
    color: var(--avc-muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.avc-page .hero-features.grid-layout {
    display: grid;
    max-width: 670px;
    margin: 30px 0 0;
    padding-top: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 24px;
    border-top: 1px solid rgba(32, 52, 72, 0.12);
}

.avc-page .hero-features .feature-item {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--avc-ink);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.45;
}

.avc-page .hero-features .feature-item > i {
    flex: 0 0 auto;
    margin-top: 1px;
    color: var(--avc-green-deep);
    font-size: 1rem;
}

.avc-page .hero-features.grid-layout .language-feature {
    grid-column: 1 / -1;
    justify-self: start;
}

.avc-page .language-icon {
    width: 18px;
    height: 18px;
    color: var(--avc-green-deep);
}

.avc-page .hero-image {
    position: relative;
    grid-area: visual;
    align-self: end;
    text-align: center;
}

.avc-page .hero-image img,
.avc-page .hero-image img.large-image {
    display: block;
    width: min(100%, 560px);
    max-width: 560px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 26px 30px rgba(22, 50, 35, 0.13));
    transform: none;
    transition: none;
}

/* Organismos oficiales */
.avc-page .logos-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.avc-page .logos-section .container {
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;
}

.avc-page .logo-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
}

.avc-page .official-logo-track {
    --logo-width: 220px;
    --logo-count: 4;
    --animation-duration: 25s;
    display: flex;
    width: calc(var(--logo-width) * var(--logo-count) * 2);
    margin: 0;
    align-items: center;
    animation: scroll-official var(--animation-duration) linear infinite;
}

.avc-page .official-logo-track .logo-slide {
    width: var(--logo-width);
    flex: 0 0 var(--logo-width);
    padding: 0 20px;
}

.avc-page .official-logo-track .logo-slide img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
}

/* Ventajas */
.avc-page .features-grid-section {
    padding: clamp(82px, 9vw, 118px) 0;
    background: var(--avc-paper);
}

.avc-page .section-title {
    max-width: 850px;
    margin: 0 auto clamp(42px, 5vw, 62px);
    text-align: center;
}

.avc-page .section-title h2,
.avc-page .faq-intro h2 {
    margin: 0;
    color: var(--avc-ink);
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 4vw, 3.65rem) !important;
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.04;
}

.avc-page .title-underline {
    width: 70px;
    height: 4px;
    margin: 20px auto 0;
    border-radius: 999px;
    background: var(--avc-green);
}

.avc-page .features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.avc-page .feature-card {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    padding: 32px 27px 30px;
    border: 1px solid var(--avc-line);
    border-radius: 26px;
    background: var(--avc-mint-soft);
    box-shadow: 0 16px 38px rgba(28, 55, 42, 0.055);
    text-align: left;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.avc-page .feature-card:hover {
    border-color: rgba(57, 125, 40, 0.24);
    background: var(--avc-paper);
    box-shadow: var(--avc-shadow);
    transform: translateY(-4px);
}

.avc-page .feature-card i {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 16px;
    background: rgba(101, 189, 66, 0.14);
    color: var(--avc-green-deep);
    font-size: 1.8rem;
}

.avc-page .feature-card h3 {
    margin: 42px 0 13px;
    color: var(--avc-ink);
    font-family: var(--font-heading);
    font-size: 1.3rem !important;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.avc-page .feature-card p {
    margin: 0;
    color: var(--avc-copy);
    font-size: 0.88rem;
    line-height: 1.68;
}

/* Planes de empresa */
.avc-page .corporate-plans-section {
    padding: 0 0 clamp(86px, 9vw, 118px);
    background: var(--avc-paper);
}

.avc-page .corporate-plans-section > .container {
    position: relative;
    overflow: hidden;
    padding: clamp(42px, 6vw, 72px);
    border-radius: 36px;
    background: var(--avc-panel);
    box-shadow: 0 28px 70px rgba(38, 58, 77, 0.18);
}

.avc-page .corporate-plans-section .section-title {
    max-width: 900px;
    margin: 0 0 42px;
    text-align: left;
}

.avc-page .corporate-plans-section .section-title h2 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: clamp(2.45rem, 4.2vw, 3.8rem) !important;
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.03;
}

.avc-page .corporate-plans-section .highlight {
    color: var(--avc-green);
}

.avc-page .corporate-plans-section .subtitle-text {
    max-width: 760px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.7;
}

.avc-page .pricing-tiers {
    display: grid;
    margin: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.avc-page .tier {
    position: relative;
    min-width: 0;
    min-height: 180px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    text-align: left;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.avc-page .tier > i {
    position: absolute;
    right: 24px;
    bottom: 23px;
    color: var(--avc-green);
    font-size: 1.35rem;
    font-weight: 800;
}

.avc-page .tier:hover {
    border-color: rgba(101, 189, 66, 0.78);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: none;
    transform: translateY(-3px);
}

.avc-page .tier h3 {
    max-width: 210px;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1rem !important;
    font-weight: 750;
    line-height: 1.45;
}

.avc-page .tier-price {
    margin: 28px 0 0;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
}

.avc-page .tier-price span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0;
}

/* Temario */
.avc-page .faq-section {
    padding: clamp(84px, 9vw, 118px) 0;
    background: var(--avc-mint-soft);
}

.avc-page .faq-intro {
    display: grid;
    max-width: none;
    margin: 0 0 42px;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
    align-items: end;
    gap: 70px;
    text-align: left;
}

.avc-page .faq-intro p {
    margin: 0;
    color: var(--avc-copy);
    font-size: 1rem;
    line-height: 1.7;
}

.avc-page .faq-container {
    max-width: none;
    overflow: hidden;
    border: 1px solid var(--avc-line);
    border-radius: 28px;
    background: var(--avc-paper);
    box-shadow: 0 20px 54px rgba(28, 55, 42, 0.075);
}

.avc-page .faq-container details {
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.avc-page .faq-container details + details {
    border-top: 1px solid var(--avc-line);
}

.avc-page .faq-container details:hover,
.avc-page .faq-container details[open] {
    border-color: var(--avc-line);
    background: #fbfdfb;
    box-shadow: none;
}

.avc-page .faq-container summary {
    position: relative;
    min-height: 84px;
    justify-content: flex-start;
    padding: 22px 76px 22px 28px;
    color: var(--avc-ink);
    font-size: 0.98rem;
    font-weight: 750;
    line-height: 1.45;
}

.avc-page .faq-container summary::after {
    position: absolute;
    top: 50%;
    right: 25px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--avc-mint);
    color: var(--avc-green-deep);
    content: "+";
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-50%);
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.avc-page .faq-container details[open] summary::after {
    background: var(--avc-dark);
    color: #ffffff;
    content: "−";
    transform: translateY(-50%);
}

.avc-page .faq-container details > div {
    padding: 0 76px 26px 28px;
    border-top: 0;
}

.avc-page .faq-container details > div p {
    max-width: 880px;
    margin: 0;
    color: var(--avc-copy);
    font-size: 0.91rem;
    line-height: 1.75;
}

/* Público y certificado */
.avc-page .course-content-section {
    padding: clamp(86px, 9vw, 118px) 0;
    background: var(--avc-paper);
}

.avc-page .course-content-section .two-cols-grid {
    display: grid;
    margin: 0 0 clamp(34px, 5vw, 54px);
    padding: clamp(34px, 5vw, 60px);
    grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1.06fr);
    align-items: center;
    gap: clamp(42px, 7vw, 88px);
    border: 1px solid var(--avc-line);
    border-radius: 32px;
    background: var(--avc-mint-soft);
    box-shadow: 0 18px 50px rgba(28, 55, 42, 0.065);
    text-align: left;
}

.avc-page .course-content-section .two-cols-grid:last-child {
    margin-bottom: 0;
    background: #ffffff;
}

.avc-page .course-content-section .two-cols-grid.reverse {
    grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
}

.avc-page .course-content-section .two-cols-grid.reverse .col-text {
    order: 2;
}

.avc-page .course-content-section .two-cols-grid.reverse .col-image {
    order: 1;
}

.avc-page .col-text h2 {
    margin: 0 0 21px;
    color: var(--avc-ink);
    font-family: var(--font-heading);
    font-size: clamp(2.15rem, 3.6vw, 3.35rem) !important;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.avc-page .col-text p {
    margin: 0;
    color: var(--avc-copy);
    font-size: 0.98rem;
    line-height: 1.75;
}

.avc-page .personnel-tags {
    display: grid;
    margin: 28px 0 0;
    grid-template-columns: 1fr;
    gap: 10px;
}

.avc-page .personnel-tag {
    position: relative;
    display: block;
    padding: 13px 16px 13px 43px;
    border: 1px solid var(--avc-line);
    border-radius: 12px;
    background: #ffffff;
    color: var(--avc-ink);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.45;
    transition: none;
}

.avc-page .personnel-tag::before {
    position: absolute;
    top: 16px;
    left: 17px;
    width: 9px;
    height: 9px;
    border: 2px solid var(--avc-green);
    border-radius: 50%;
    content: "";
}

.avc-page .personnel-tag:hover {
    background: #ffffff;
    color: var(--avc-ink);
    transform: none;
}

.avc-page .info-video {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(32, 52, 72, 0.1);
    border-radius: 24px;
    background: #dbe8df;
    box-shadow: 0 24px 54px rgba(28, 55, 42, 0.13);
    cursor: default;
    transform: none;
    transition: none;
}

.avc-page .info-video:hover {
    transform: none;
}

.avc-page .video-poster {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #dbe8df;
    cursor: pointer;
}

.avc-page .video-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.avc-page .video-poster:hover .video-thumbnail {
    transform: scale(1.025);
}

.avc-page .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    border-radius: 50%;
    background: var(--avc-dark);
    box-shadow: 0 14px 34px rgba(16, 38, 27, 0.28);
    color: #ffffff;
    font-size: 2.25rem;
    transform: translate(-50%, -50%);
}

.avc-page .info-video:hover .play-button {
    background: #173528;
}

.avc-page .info-video.playing .video-poster {
    display: none;
}

.avc-page #youtube-player-container,
.avc-page #youtube-player {
    width: 100%;
    height: 100%;
    border: 0;
}

.avc-page .col-image > img {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    border-radius: 22px;
    box-shadow: none;
}

.avc-page .col-image-mobile {
    display: none;
}

.avc-page .benefits-list {
    display: grid;
    margin: 28px 0 0;
    padding: 0;
    gap: 10px;
    list-style: none;
}

.avc-page .benefits-list li {
    display: flex;
    min-height: 54px;
    align-items: flex-start;
    margin: 0;
    padding: 14px 16px;
    border: 1px solid var(--avc-line);
    border-radius: 12px;
    background: var(--avc-mint-soft);
    color: var(--avc-ink);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.45;
}

.avc-page .benefits-list li i {
    flex: 0 0 auto;
    margin: 1px 10px 0 0;
    color: var(--avc-green-deep);
    font-size: 1.2rem;
}

/* Preguntas visibles que respaldan el FAQPage */
.avc-page .course-faq-section {
    padding: 0 0 clamp(86px, 9vw, 118px);
    background: var(--avc-paper);
}

.avc-page .course-faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
    align-items: start;
    gap: clamp(42px, 7vw, 86px);
}

.avc-page .course-faq-intro {
    position: sticky;
    top: 128px;
}

.avc-page .course-faq-intro h2 {
    margin: 0;
    color: var(--avc-ink);
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 3.8vw, 3.5rem) !important;
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.04;
}

.avc-page .course-faq-intro p {
    margin: 20px 0 0;
    color: var(--avc-copy);
    font-size: 0.96rem;
    line-height: 1.7;
}

.avc-page .course-faq-section .faq-container summary {
    min-height: 78px;
}

/* CTA final */
.avc-page .final-cta-section {
    padding: 0 0 clamp(88px, 9vw, 120px);
    background: var(--avc-paper);
    color: #ffffff;
}

.avc-page .final-cta-section .two-cols-grid.course-layout {
    position: relative;
    display: grid;
    min-height: 470px;
    overflow: hidden;
    margin: 0;
    padding: clamp(42px, 6vw, 76px);
    grid-template-areas: "text image";
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.68fr);
    align-items: center;
    gap: clamp(40px, 7vw, 90px);
    border-radius: 36px;
    background: var(--avc-panel);
    box-shadow: 0 28px 74px rgba(38, 58, 77, 0.2);
}

.avc-page .final-cta-section .col-text {
    position: relative;
    z-index: 1;
    grid-area: text;
}

.avc-page .final-cta-section .col-image {
    position: relative;
    z-index: 1;
    grid-area: image;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.09);
}

.avc-page .final-cta-section .col-image img {
    max-width: 370px;
    border-radius: 17px;
}

.avc-page .final-cta-section .col-text h2 {
    max-width: 650px;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 4.6vw, 4.2rem) !important;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1.01;
}

.avc-page .final-cta-section .col-text p {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.72;
}

.avc-page .avc-final-action {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

.avc-page .final-cta-section .btn-primary {
    background: var(--avc-green);
    color: #ffffff !important;
}

.avc-page .avc-final-price strong,
.avc-page .avc-final-price span {
    display: block;
}

.avc-page .avc-final-price strong {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.avc-page .avc-final-price span {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    font-weight: 600;
}

@media (max-width: 1080px) {
    .avc-page .hero-container {
        grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
        gap: 0 46px;
    }

    .avc-page .hero-text h1 {
        font-size: clamp(3rem, 5.3vw, 4rem) !important;
    }

    .avc-page .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .avc-page .feature-card {
        min-height: 270px;
    }
}

@media (max-width: 900px) {
    .avc-page .hero-container {
        grid-template-areas:
            "copy"
            "visual"
            "conversion";
        grid-template-columns: 1fr;
        gap: 0;
    }

    .avc-page .hero-text {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .avc-page .hero-text h1,
    .avc-page .hero-text .subtitle {
        margin-right: auto;
        margin-left: auto;
    }

    .avc-page .hero-image {
        width: min(100%, 540px);
        margin: 24px auto 0;
    }

    .avc-page .hero-conversion {
        width: min(100%, 680px);
        margin: 0 auto;
    }

    .avc-page .hero-cta,
    .avc-page .hero-features.grid-layout {
        justify-content: center;
    }

    .avc-page .hero-features.grid-layout .language-feature {
        justify-self: center;
    }

    .avc-page .pricing-tiers {
        grid-template-columns: 1fr;
    }

    .avc-page .tier {
        min-height: 150px;
    }

    .avc-page .faq-intro {
        grid-template-columns: 1fr;
        gap: 19px;
    }

    .avc-page .faq-intro p {
        max-width: 680px;
    }

    .avc-page .course-content-section .two-cols-grid,
    .avc-page .course-content-section .two-cols-grid.reverse {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: left;
    }

    .avc-page .course-content-section .two-cols-grid.reverse .col-text {
        order: 2;
    }

    .avc-page .course-content-section .two-cols-grid.reverse .col-image {
        display: block;
        order: 1;
    }

    .avc-page .course-faq-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .avc-page .course-faq-intro {
        position: static;
        max-width: 680px;
    }

    .avc-page .final-cta-section .two-cols-grid.course-layout {
        min-height: 0;
        grid-template-areas:
            "text"
            "image";
        grid-template-columns: 1fr;
        text-align: left;
    }

    .avc-page .final-cta-section .col-image {
        width: min(100%, 470px);
        margin: 0 auto;
    }
}

@media (max-width: 700px) {
    .avc-page .container {
        width: min(calc(100% - 28px), 1240px);
    }

    .avc-page .hero-section {
        padding: 46px 0 64px;
    }

    .avc-page .badge {
        min-height: 34px;
        margin-bottom: 22px;
        padding: 8px 14px;
        font-size: 0.67rem;
    }

    .avc-page .hero-text h1 {
        font-size: clamp(2.55rem, 11.6vw, 3.35rem) !important;
        line-height: 1;
    }

    .avc-page .hero-text .subtitle {
        margin-top: 22px;
        font-size: 1rem;
        line-height: 1.7;
    }

    .avc-page .hero-image {
        width: min(100%, 410px);
        margin-top: 18px;
    }

    .avc-page .hero-cta {
        align-items: stretch;
        flex-direction: column;
        gap: 15px;
        margin-top: 12px;
    }

    .avc-page .hero-cta .btn {
        width: 100%;
    }

    .avc-page .price-info {
        text-align: center;
    }

    .avc-page .price-info .price {
        font-size: 2.35rem;
    }

    .avc-page .hero-features.grid-layout {
        margin-top: 26px;
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .avc-page .hero-features.grid-layout .language-feature {
        grid-column: auto;
        justify-self: start;
    }

    .avc-page .features-grid-section,
    .avc-page .faq-section,
    .avc-page .course-content-section {
        padding: 70px 0;
    }

    .avc-page .section-title {
        margin-bottom: 34px;
    }

    .avc-page .section-title h2,
    .avc-page .faq-intro h2 {
        font-size: 2.35rem !important;
    }

    .avc-page .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .avc-page .feature-card {
        min-height: 0;
        padding: 25px 23px 26px;
        border-radius: 21px;
    }

    .avc-page .feature-card h3 {
        margin-top: 30px;
    }

    .avc-page .corporate-plans-section {
        padding-bottom: 70px;
    }

    .avc-page .corporate-plans-section > .container {
        width: 100%;
        padding: 46px 14px;
        border-radius: 0;
    }

    .avc-page .corporate-plans-section .section-title {
        margin-bottom: 32px;
        padding-inline: 8px;
    }

    .avc-page .corporate-plans-section .section-title h2 {
        font-size: 2.55rem !important;
    }

    .avc-page .corporate-plans-section .subtitle-text {
        font-size: 0.92rem;
    }

    .avc-page .tier {
        min-height: 140px;
        padding: 23px;
        border-radius: 18px;
    }

    .avc-page .tier-price {
        margin-top: 22px;
    }

    .avc-page .faq-intro {
        margin-bottom: 28px;
    }

    .avc-page .faq-container {
        border-radius: 20px;
    }

    .avc-page .faq-container summary,
    .avc-page .course-faq-section .faq-container summary {
        min-height: 76px;
        padding: 19px 64px 19px 20px;
        font-size: 0.88rem;
    }

    .avc-page .faq-container summary::after {
        right: 17px;
        width: 36px;
        height: 36px;
    }

    .avc-page .faq-container details > div {
        padding: 0 20px 22px;
    }

    .avc-page .course-content-section .two-cols-grid {
        margin-bottom: 22px;
        padding: 26px 21px;
        gap: 30px;
        border-radius: 22px;
    }

    .avc-page .col-text h2 {
        font-size: 2.25rem !important;
    }

    .avc-page .info-video {
        border-radius: 18px;
    }

    .avc-page .play-button {
        width: 62px;
        height: 62px;
        font-size: 1.9rem;
    }

    .avc-page .course-faq-section {
        padding-bottom: 70px;
    }

    .avc-page .course-faq-intro h2 {
        font-size: 2.35rem !important;
    }

    .avc-page .final-cta-section {
        padding-bottom: 70px;
    }

    .avc-page .final-cta-section > .container {
        width: 100%;
    }

    .avc-page .final-cta-section .two-cols-grid.course-layout {
        padding: 44px 14px 0;
        gap: 34px;
        border-radius: 0;
    }

    .avc-page .final-cta-section .col-text {
        padding-inline: 8px;
    }

    .avc-page .final-cta-section .col-text h2 {
        font-size: 2.6rem !important;
    }

    .avc-page .final-cta-section .col-text p {
        font-size: 0.91rem;
    }

    .avc-page .avc-final-action {
        align-items: stretch;
        flex-direction: column;
        gap: 17px;
    }

    .avc-page .avc-final-action .btn {
        width: 100%;
    }

    .avc-page .avc-final-price {
        text-align: center;
    }

    .avc-page .final-cta-section .col-image {
        width: 100%;
        padding: 18px;
        border-radius: 22px 22px 0 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .avc-page .logo-track {
        animation: none !important;
        transform: none !important;
    }

    .avc-page *,
    .avc-page *::before,
    .avc-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .avc-page .hero-section,
    .avc-page .features-grid-section,
    .avc-page .corporate-plans-section,
    .avc-page .faq-section,
    .avc-page .course-content-section,
    .avc-page .course-faq-section {
        padding: 28px 0;
    }

    .avc-page .hero-image,
    .avc-page .logos-section,
    .avc-page .info-video,
    .avc-page .final-cta-section {
        display: none !important;
    }

    .avc-page .faq-container details > div {
        display: block !important;
    }
}
