/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
    background: var(--color-navy);
}
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 37, 80, 0.65);
}
.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}
.hero-content {
    text-align: center;
    max-width: 850px;
}
.hero h1 {
    color: var(--color-white);
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Client Logos Section ===== */
.clients-section {
    position: relative;
    background: var(--color-teal);
    margin-top: -1px;
}

/* Top wave: positioned inside hero at the bottom */
.wave-top-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 1;
    line-height: 0;
}
.wave-top-divider svg {
    display: block;
    width: 100%;
    height: 52px;
}

/* Client logos area */
.clients {
    background: var(--color-teal);
    padding: 25px 0 25px;
    overflow: hidden;
}

.client-logos-track {
    display: flex;
    width: max-content;
    transition: transform 0.8s ease;
}
.client-logos-track img {
    height: 80px;
    width: auto;
    margin: 0 20px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}
.client-logos-track img:hover { opacity: 1; }

/* Bottom wave: white curve rising into the teal above */
.wave-bottom-divider {
    position: relative;
    background: var(--color-teal);
    line-height: 0;
    margin-bottom: -1px;
}
.wave-bottom-divider svg {
    display: block;
    width: 100%;
    height: 52px;
    transform: rotateY(180deg) rotateX(180deg);
}

/* ===== Problems Section ===== */
.problems-section {
    padding: 80px 0 200px;
    background: var(--color-white);
}
.problems-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}
.problems-image img {
    width: 100%;
    height: auto;
}
.problems-content {
    text-align: left;
}
.problems-section h2 {
    margin-bottom: 16px;
}
.problems-subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    color: var(--color-navy);
    margin-bottom: 20px;
    line-height: 1.3;
}
.problems-subtitle em {
    font-style: italic;
}
.problems-intro {
    color: var(--color-gray-600);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
}
.problems-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}
.problem-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.problem-icon {
    color: var(--color-gold);
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
}
.problem-item p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    color: var(--color-text);
}
.problems-closing {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-navy);
}

/* ===== Mission / Value Props ===== */
.mission-section {
    position: relative;
    padding: 1px 0 110px;
    background-color: #032550;
    background-image: linear-gradient(180deg, rgba(3,37,80,0.5) 0%, #032550 100%),
                      url('../assets/images/Videography-Background-2.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

/* Top wave divider */
.mission-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
}
.mission-wave-top svg {
    display: block;
    width: 100%;
    height: 90px;
}

/* Bottom wave divider */
.mission-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
    transform: rotateY(180deg);
}
.mission-wave-bottom svg {
    display: block;
    width: 100%;
    height: 90px;
}

.mission-card {
    background-image: linear-gradient(150deg, rgba(0,116,170,0.9) 25%, rgba(173,209,65,0.9) 115%),
                       url('../assets/images/Great-Businesses-Studio.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    padding: 90px 50px 100px;
    width: 90vw;
    max-width: 1080px;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: -80px;
    margin-bottom: 0;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.mission-card h2 {
    color: var(--color-white);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.mission-card h2 em {
    font-style: italic;
}
.mission-text {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto;
}
.mission-sub-heading {
    color: var(--color-white);
    font-size: 25px;
    font-weight: 600;
    margin-top: 70px;
    margin-bottom: 16px;
}
.mission-sub {
    color: var(--color-white);
    font-weight: 600;
    font-size: 20px;
    max-width: 660px;
    margin: 0 auto 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 20px;
}
.benefit-card {
    text-align: center;
    padding: 20px 20px;
    background: transparent;
    border-radius: 12px;
    transition: var(--transition);
}
.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.06);
}
.benefit-icon { margin-bottom: 20px; }
.benefit-icon img { width: 120px; height: auto; margin: 0 auto; }
.benefit-card h3 { margin-bottom: 14px; color: var(--color-white); font-size: 28px; }
.benefit-card p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.benefit-card p em { font-style: italic; }

/* ===== Solutions ===== */
.solutions-section {
    padding: 100px 0;
    background: var(--color-white);
}
.solutions-section .section-header h2 { color: var(--color-navy); }
.solutions-section .section-header p { color: var(--color-gray-600); }

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.solution-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    transition: var(--transition);
}
.solution-card:hover { background: var(--color-gray-100); }
.solution-icon {
    height: 90px;
    margin-bottom: 20px;
    position: relative;
}
.solution-icon img {
    height: 90px;
    width: auto;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}
.solution-icon .icon-hover { opacity: 0; }
.solution-card:hover .icon-default { opacity: 0; }
.solution-card:hover .icon-hover { opacity: 1; }
.solution-card h3 { color: var(--color-navy); margin-bottom: 14px; }
.solution-card p { color: var(--color-gray-600); }

/* ===== Portfolio ===== */
.portfolio-section {
    padding: 118px 0 50px;
    background: var(--color-white);
}
.portfolio-section .section-header h2 {
    color: var(--color-navy);
    font-size: 38px;
    font-weight: 600;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 99%;
    max-width: 99%;
    margin: 0 auto;
}
.portfolio-card {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 300ms ease;
    cursor: pointer;
    text-align: center;
}
.portfolio-card:hover {
    transform: scale(1.03);
    z-index: 10;
}

/* Thumbnail area */
.portfolio-thumb {
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--color-teal);
    transition: border-color 300ms ease;
    cursor: pointer;
}
.portfolio-card:hover .portfolio-thumb {
    border-bottom-color: var(--color-gold);
}
.portfolio-thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

/* Play button overlay */
.portfolio-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: background 0.3s ease;
}
.portfolio-play span {
    color: #FFFFFF;
    font-size: 3rem;
    opacity: 0.8;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    transition: opacity 0.3s ease;
}
.portfolio-card:hover .portfolio-play {
    background: rgba(0,0,0,0.4);
}
.portfolio-card:hover .portfolio-play span {
    opacity: 1;
}

/* Info area below image */
.portfolio-info {
    padding: 30px 20px 40px;
}
.portfolio-tag {
    display: block;
    color: var(--color-gold);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.portfolio-info h4 {
    color: var(--color-navy);
    font-size: 22px;
    font-weight: 700;
    max-width: 80%;
    margin: 0 auto 10px;
    transition: color 300ms ease;
}
.portfolio-card:hover .portfolio-info h4 {
    color: var(--color-gold);
}
.portfolio-link {
    color: #6A859C;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 300ms ease;
}
.portfolio-card:hover .portfolio-link {
    color: var(--color-gold);
}

/* Portfolio card link overrides */
a.portfolio-tag {
    color: var(--color-gold);
    text-decoration: none;
}
a.portfolio-tag:hover {
    opacity: 0.8;
}
.portfolio-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
a.portfolio-link {
    text-decoration: none;
    color: #6A859C;
    display: inline-block;
}
a.portfolio-link:hover {
    color: var(--color-gold);
}

/* ===== Video Modal ===== */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-modal.active {
    opacity: 1;
    visibility: visible;
}
.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}
.video-modal-content {
    position: relative;
    z-index: 1;
    width: 90vw;
    max-width: 960px;
}
.video-modal-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.video-modal-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}
.video-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 2;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.4rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
    line-height: 1;
    padding: 4px 10px;
}
.video-modal-close:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* ===== Testimonials ===== */
.testimonials-section {
    position: relative;
    padding: 120px 0;
    background-color: #032550;
    background-image: linear-gradient(180deg, rgba(3,37,80,0.9) 0%, rgba(3,37,80,0.8) 100%),
                      url('../assets/images/Testimonials-Studio.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

/* Testimonials wave dividers */
.testimonials-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
}
.testimonials-wave-top svg {
    display: block;
    width: 100%;
    height: 90px;
}
.testimonials-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
    transform: rotateY(180deg);
}
.testimonials-wave-bottom svg {
    display: block;
    width: 100%;
    height: 90px;
}

.testimonials-section .section-header h2 { color: var(--color-white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: #02152c;
    padding: 40px 32px;
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
}
.testimonial-portrait {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.testimonial-portrait img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.stars {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
    display: none;
}
.quote {
    font-style: normal;
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 18px;
}
.quote strong {
    color: #FFFFFF;
}
.testimonial-author strong {
    display: block;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-top: 10px;
}
.testimonial-author span {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* ===== Video Types ===== */
.video-types-section {
    padding: 100px 0;
    background: var(--color-white);
}
.video-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.video-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: var(--color-gray-100);
    transition: var(--transition);
    cursor: pointer;
}
.video-type-card:hover {
    background: var(--color-navy);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.video-type-card img {
    height: 55px;
    width: auto;
    margin-bottom: 16px;
    transition: var(--transition);
}
.video-type-card:hover img { filter: brightness(0) invert(1); }
.video-type-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    transition: var(--transition);
}
.video-type-card:hover h4 { color: var(--color-white); }
.video-type-card p {
    color: var(--color-gray-600);
    font-size: 0.85rem;
    transition: var(--transition);
}
.video-type-card:hover p { color: rgba(255,255,255,0.75); }

/* ===== Process ===== */
.process-section {
    position: relative;
    padding: 100px 0;
    background-color: #032550;
    background-image: linear-gradient(160deg, rgba(4,37,80,0.95) 30%, #3084ab 150%),
                      url('../assets/images/Videography-Background-4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

/* Process wave dividers */
.process-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
    transform: rotateX(180deg);
}
.process-wave-top svg {
    display: block;
    width: 100%;
    height: 90px;
}
.process-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
    transform: rotateY(180deg);
}
.process-wave-bottom svg {
    display: block;
    width: 100%;
    height: 90px;
}

.process-section .section-header h2 { color: var(--color-gold); }
.process-section .section-header p { color: var(--color-white); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}
.process-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(2,21,44,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
}
.step-icon { margin-bottom: 16px; }
.step-icon img { height: 100px; width: auto; margin: 0 auto; }
.step-label {
    display: block;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.process-step h3 { color: var(--color-white); margin-bottom: 14px; font-size: 24px; }
.process-step p { color: rgba(255,255,255,0.8); }

.process-urgency {
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 1rem;
}
.process-cta-heading {
    color: var(--color-gold) !important;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 100px 0 300px;
    background: var(--color-white);
}
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}
.faq-heading h2 {
    position: sticky;
    top: 100px;
}
.faq-list {
    max-width: 100%;
}
.faq-item {
    border-bottom: 1px solid var(--color-gray-200);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-navy);
    transition: var(--transition);
    gap: 16px;
}
.faq-question:hover { color: var(--color-teal); }
.faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: var(--transition);
}
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer p {
    padding-bottom: 22px;
    color: var(--color-gray-600);
    line-height: 1.8;
}
.email-link {
    color: var(--color-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Closing CTA ===== */
.closing-cta {
    position: relative;
    padding: 1px 0 100px;
    background-color: #032550;
    background-image: linear-gradient(150deg, rgba(3,37,80,0.86) 20%, rgba(3,37,80,0.9) 130%),
                      url('../assets/images/CS_OrthofixProductSizzle.png');
    background-size: cover;
    background-position: center;
    text-align: center;
}

/* Closing CTA wave dividers */
.closing-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
}
.closing-wave-top svg {
    display: block;
    width: 100%;
    height: 90px;
}
.closing-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
    transform: rotateY(180deg);
}
.closing-wave-bottom svg {
    display: block;
    width: 100%;
    height: 90px;
}

/* Gradient card inside closing CTA */
.closing-cta-card {
    background-image: linear-gradient(150deg, rgba(0,116,170,0.9) 25%, rgba(173,209,65,0.9) 115%),
                       url('../assets/images/Video-Project-Corporate.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    padding: 90px 50px;
    width: 90vw;
    max-width: 1080px;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: -190px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.closing-cta-card h2 {
    color: var(--color-white);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.closing-cta-card p {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Lead Magnet (inside closing-cta section) ===== */
.lead-magnet-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 40px;
    text-align: left;
}
.lead-magnet-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.lead-magnet-text h2 { color: var(--color-white); margin-bottom: 6px; font-size: 38px; font-weight: 600; }
.lead-magnet-text h3 { color: var(--color-white); margin-bottom: 20px; font-size: 1.3rem; }
.lead-magnet-text p { color: #FFFFFF; margin-bottom: 10px; }
.lead-magnet-text p em { font-style: italic; }
.lead-magnet-text p strong { font-weight: 700; }
.lead-magnet-subhead { font-weight: 700; }
.lead-magnet-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    max-width: 550px;
}
.lead-magnet-text li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-weight: 700;
    color: #FFFFFF;
}
.lead-magnet-text li::before {
    content: "\2713";
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.lead-magnet-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.lead-magnet-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.lead-magnet-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.lead-magnet-form input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-gray-200);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--color-white);
    transition: var(--transition);
}
.lead-magnet-form input:focus {
    outline: none;
    border-color: var(--color-teal);
}
.lead-magnet-form .btn {
    grid-column: 1 / 2;
}

/* ===== Responsive (Home-specific) ===== */
@media (max-width: 1024px) {
    .video-types-grid { grid-template-columns: repeat(3, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
    /* Disable fixed background on tablet/mobile (performance) */
    .testimonials-section,
    .process-section {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .hero { min-height: auto; padding: 140px 20px 80px; }

    .benefits-grid,
    .solutions-grid,
    .testimonials-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    .video-types-grid { grid-template-columns: repeat(2, 1fr); }
    .lead-magnet-content { grid-template-columns: 1fr; gap: 40px; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .problems-layout { grid-template-columns: 1fr; gap: 40px; }
    .problems-content { text-align: center; }
    .faq-layout { grid-template-columns: 1fr; gap: 30px; }
    .faq-heading h2 { position: static; text-align: center; }

    .testimonials-section { padding: 90px 0; }
    .closing-cta-card { margin-top: -200px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; }
    .video-types-grid { grid-template-columns: 1fr; }
}
