:root {
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --blue: #0ea5e9;
    --blue-dark: #0284c7;
    --soft: #f8fafc;
    --green: #16a34a;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 0;
}

a {
    color: inherit;
}

.navbar {
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: box-shadow 0.2s ease;
}

.navbar.is-scrolled {
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.brand-text {
    color: var(--blue);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}

.brand-text span {
    color: var(--ink);
}

.brand-text strong {
    color: var(--blue);
}

.nav-link {
    color: #334155;
    border-radius: 999px;
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--blue);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link[aria-current="page"] {
    color: var(--blue-dark);
    background: #e0f2fe;
    font-weight: 800;
}

.btn {
    font-weight: 700;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.btn-info {
    background: var(--blue);
    border-color: var(--blue);
}

.btn-info:hover,
.btn-info:focus {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
}

.btn-outline-info {
    color: var(--blue);
    border-color: var(--blue);
}

.btn-outline-info:hover,
.btn-outline-info:focus {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.hero-section {
    padding: 5rem 0 4.25rem;
    background:
        linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-section h1 {
    max-width: 13ch;
    font-size: clamp(2.45rem, 6vw, 4.7rem);
    font-weight: 800;
    line-height: 1.02;
    margin: 0.75rem 0 1.25rem;
}

.hero-section .lead {
    max-width: 620px;
    color: #475569;
    font-size: clamp(1.03rem, 2vw, 1.22rem);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow.light {
    color: #7dd3fc;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    margin-top: 1.5rem;
    color: #475569;
    font-size: 0.94rem;
    font-weight: 700;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-row svg {
    width: 18px;
    color: var(--green);
}

.product-shot {
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.product-shot img {
    display: block;
    width: 100%;
    border-radius: 6px;
}

.section {
    padding: 5rem 0;
}

.page-hero {
    padding: 4.5rem 0;
    background:
        linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(255, 255, 255, 0) 44%),
        #f8fafc;
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    max-width: 820px;
    margin: 0.75rem 0 1rem;
    font-size: clamp(2.35rem, 5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.05;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: #475569;
    font-size: 1.12rem;
}

.bg-soft {
    background: var(--soft);
}

.section-heading {
    max-width: 740px;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.section-heading h2 {
    margin: 0.65rem 0 0.75rem;
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 800;
    line-height: 1.08;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.section-heading.text-white p {
    color: rgba(255, 255, 255, 0.72);
}

.feature-card,
.module-item,
.pricing-card,
.contact-card,
.split-cta,
.manual-sidebar,
.manual-content {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.split-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
}

.split-cta h2 {
    max-width: 620px;
    margin: 0.65rem 0 0.75rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
}

.split-cta p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
}

.quick-links {
    display: grid;
    gap: 0.75rem;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 56px;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #334155;
    font-weight: 800;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.quick-links a:hover,
.quick-links a:focus {
    border-color: var(--blue);
    color: var(--blue-dark);
    transform: translateY(-1px);
}

.quick-links svg {
    width: 22px;
    color: var(--blue);
}

.feature-card {
    height: 100%;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.feature-card svg {
    width: 34px;
    height: 34px;
    color: var(--blue);
    margin-bottom: 1rem;
}

.feature-card h3,
.module-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.feature-card p,
.module-item p {
    color: var(--muted);
    margin: 0;
}

.module-item .module-summary {
    color: #334155;
    font-weight: 800;
    margin-bottom: 0.65rem;
}

.module-item ul {
    display: grid;
    gap: 0.45rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.module-item li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.45;
}

.module-item li svg {
    flex: 0 0 16px;
    width: 16px;
    margin-top: 0.12rem;
    color: var(--green);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.modules-grid-detailed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.module-item {
    display: flex;
    gap: 1rem;
    min-height: 142px;
    padding: 1.15rem;
}

.modules-grid-detailed .module-item {
    min-height: 0;
    padding: 1.35rem;
}

.module-item span {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 8px;
    color: var(--blue);
    background: #e0f2fe;
}

.module-item svg {
    width: 22px;
}

.tutorial-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
    gap: 1.25rem;
    align-items: start;
}

.tutorial-player-stack {
    display: grid;
    gap: 1.5rem;
}

.video-stage {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: #020617;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.video-stage-wide {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
}

.video-js {
    width: 100%;
}

.video-js .vjs-big-play-button {
    border: 0;
    border-radius: 999px;
    background: var(--blue);
}

.playlist {
    display: grid;
    gap: 0.75rem;
    max-height: 620px;
    overflow: auto;
    padding-right: 0.25rem;
}

.playlist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: none;
    overflow: visible;
    padding-right: 0;
}

.playlist-item {
    width: 100%;
    min-height: 112px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.78);
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.playlist-item:hover,
.playlist-item:focus,
.playlist-item.active {
    border-color: rgba(125, 211, 252, 0.85);
    background: rgba(14, 165, 233, 0.16);
    transform: translateY(-1px);
}

.playlist-item span {
    display: block;
    color: #7dd3fc;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.playlist-item strong {
    display: block;
    margin-top: 0.35rem;
    color: #fff;
    font-size: 0.98rem;
}

.playlist-item small {
    display: block;
    margin-top: 0.35rem;
    color: rgba(226, 232, 240, 0.72);
    line-height: 1.35;
}

.playlist-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 1rem;
    width: 100%;
    min-height: 132px;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.78);
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.playlist-card:hover,
.playlist-card:focus,
.playlist-card.active {
    border-color: rgba(125, 211, 252, 0.85);
    background: rgba(14, 165, 233, 0.16);
    transform: translateY(-1px);
}

.playlist-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    align-self: stretch;
    min-height: 104px;
    border-radius: 8px;
    background: #020617;
}

.playlist-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
}

.playlist-thumb svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 34px;
    color: #fff;
    transform: translate(-50%, -50%);
}

.playlist-meta {
    min-width: 0;
}

.playlist-meta small {
    display: block;
    color: #7dd3fc;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.playlist-meta strong {
    display: block;
    margin-top: 0.35rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1.25;
}

.playlist-meta em {
    display: block;
    margin-top: 0.35rem;
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.85rem;
    font-style: normal;
    line-height: 1.35;
}

.pricing-section {
    background: #fff;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
}

.pricing-card.featured {
    border: 2px solid var(--blue);
}

.plan-badge {
    align-self: flex-start;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    color: #075985;
    background: #e0f2fe;
    font-size: 0.8rem;
    font-weight: 800;
}

.pricing-card h3 {
    margin: 1rem 0 0.5rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.pricing-card h3 small {
    color: var(--muted);
    font-size: 1rem;
    font-weight: 600;
}

.pricing-card p {
    color: var(--muted);
}

.pricing-card ul {
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0 2rem;
    padding: 0;
    list-style: none;
}

.pricing-card li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #334155;
}

.pricing-card li svg {
    flex: 0 0 18px;
    width: 18px;
    color: var(--green);
}

.pricing-card .btn {
    margin-top: auto;
}

.faq-section .section-heading {
    max-width: 780px;
}

.faq-quick-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin: 0 0 1.5rem;
}

.faq-quick-links a {
    min-height: 74px;
    padding: 1rem 1.15rem;
    background: #fff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.faq-quick-links a span {
    line-height: 1.25;
}

.faq-accordion {
    display: grid;
    width: 100%;
    max-width: none;
    gap: 1rem;
    margin: 0;
}

.faq-accordion .accordion-item {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.055);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-accordion .accordion-item:hover {
    border-color: rgba(14, 165, 233, 0.45);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

.faq-accordion .accordion-button {
    gap: 1rem;
    min-height: 72px;
    padding: 1.15rem 1.25rem;
    color: var(--ink);
    background: #fff;
    font-weight: 800;
    line-height: 1.3;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    border-color: transparent;
    box-shadow: inset 0 0 0 2px rgba(14, 165, 233, 0.18);
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--ink);
    background: linear-gradient(180deg, #f8fcff 0%, #eef8ff 100%);
    box-shadow: none;
}

.faq-number {
    display: inline-grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 8px;
    color: var(--blue-dark);
    background: #e0f2fe;
    font-size: 0.82rem;
    font-weight: 900;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-number {
    color: #fff;
    background: var(--blue);
}

.faq-accordion .accordion-body {
    padding: 0 1.25rem 1.25rem 4.9rem;
    color: #475569;
    line-height: 1.75;
}

.contact-section h2 {
    max-width: 460px;
    margin: 0.75rem 0 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-list a,
.contact-list span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #334155;
    font-weight: 700;
    text-decoration: none;
}

.contact-list svg {
    width: 22px;
    color: var(--blue);
}

.contact-card {
    padding: 2rem;
    background: var(--soft);
}

.contact-card h3 {
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.form-label {
    color: #334155;
    font-size: 0.9rem;
    font-weight: 800;
}

.form-control {
    min-height: 52px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.85rem 1rem;
}

.form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.site-footer {
    padding: 2rem 0;
    border-top: 1px solid var(--line);
    color: #475569;
}

.manual-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.manual-sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 0.35rem;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 1.25rem;
}

.manual-sidebar::-webkit-scrollbar {
    width: 8px;
}

.manual-sidebar::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #cbd5e1;
}

.manual-sidebar h2 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 800;
}

.manual-sidebar a {
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    color: #334155;
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
}

.manual-sidebar a:hover,
.manual-sidebar a:focus {
    color: var(--blue-dark);
    background: #e0f2fe;
}

.manual-content {
    padding: clamp(1.25rem, 3vw, 2.5rem);
}

.manual-content section + section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--line);
}

.manual-content h2 {
    margin: 0.75rem 0 1rem;
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    font-weight: 800;
}

.manual-content h3 {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 800;
}

.manual-content p,
.manual-content li {
    color: #475569;
    line-height: 1.7;
}

.manual-content ol,
.manual-content ul {
    padding-left: 1.25rem;
}

.note-box {
    margin: 1.25rem 0;
    padding: 1rem;
    border-left: 4px solid var(--blue);
    border-radius: 8px;
    color: #0f172a;
    background: #e0f2fe;
    font-weight: 700;
}

.note-box.warning {
    border-left-color: #f59e0b;
    background: #fffbeb;
}

.task-grid,
.compare-grid,
.status-grid,
.role-grid,
.problem-list,
.glossary-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

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

.task-grid a,
.flow-list article,
.compare-grid article,
.status-grid article,
.role-grid article,
.problem-list article,
.glossary-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.task-grid a {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 0.35rem 0.85rem;
    padding: 1rem;
    color: #334155;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.task-grid a:hover,
.task-grid a:focus {
    border-color: var(--blue);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.task-grid svg {
    grid-row: span 2;
    width: 28px;
    height: 28px;
    color: var(--blue);
}

.task-grid strong,
.glossary-grid strong,
.status-grid strong {
    color: var(--ink);
    font-weight: 800;
}

.task-grid span,
.status-grid span,
.glossary-grid span {
    color: var(--muted);
    line-height: 1.55;
}

.flow-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

.flow-list article,
.compare-grid article,
.role-grid article,
.problem-list article {
    padding: 1.15rem;
}

.flow-list h3,
.compare-grid h3,
.role-grid h3,
.problem-list h3 {
    margin-top: 0;
}

.compare-grid,
.role-grid,
.problem-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.status-grid,
.glossary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.status-grid article,
.glossary-grid article {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
}

.manual-shot {
    display: block;
    overflow: hidden;
    width: 100%;
    margin: 1.5rem 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #334155;
    background: #fff;
    text-align: left;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.manual-shot:hover,
.manual-shot:focus {
    color: var(--blue-dark);
    border-color: var(--blue);
}

.manual-shot img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top left;
    background: #0f172a;
}

.manual-shot span {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 0.94rem;
    font-weight: 800;
}

.manual-video-card {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    width: 100%;
    margin: 1rem 0;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #334155;
    background: #f8fafc;
    text-align: left;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.manual-video-card:hover,
.manual-video-card:focus {
    border-color: var(--blue);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.manual-video-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    object-fit: cover;
}

.manual-video-card span {
    display: grid;
    gap: 0.35rem;
}

.manual-video-card strong {
    color: var(--ink);
    font-weight: 800;
}

.manual-video-card em {
    color: var(--muted);
    font-size: 0.92rem;
    font-style: normal;
    line-height: 1.45;
}

.manual-lightbox .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 8px;
}

.manual-video-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 8px;
}

.manual-lightbox .modal-body {
    padding: 0;
    background: #0f172a;
}

.manual-video-modal .modal-body {
    padding: 0;
    background: #020617;
}

.manual-lightbox img {
    display: block;
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
}

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 20;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: #22c55e;
    box-shadow: 0 14px 30px rgba(34, 197, 94, 0.35);
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    color: #fff;
    background: #16a34a;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 3.5rem;
    }

    .hero-section h1 {
        max-width: 100%;
    }

    .modules-grid,
    .tutorial-layout,
    .split-cta,
    .manual-layout,
    .task-grid,
    .compare-grid,
    .role-grid,
    .problem-list,
    .status-grid,
    .glossary-grid {
        grid-template-columns: 1fr;
    }

    .playlist {
        max-height: none;
    }

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

    .manual-sidebar {
        position: static;
        max-height: none;
    }

    .faq-quick-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .section {
        padding: 3.5rem 0;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-row {
        display: grid;
    }

    .module-item {
        min-height: auto;
    }

    .playlist-grid,
    .playlist-card,
    .manual-video-card {
        grid-template-columns: 1fr;
    }

    .pricing-card,
    .contact-card {
        padding: 1.35rem;
    }

    .faq-accordion .accordion-button {
        align-items: flex-start;
        min-height: 64px;
        padding: 1rem;
    }

    .faq-number {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }

    .faq-accordion .accordion-body {
        padding: 0 1rem 1rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 1rem;
        bottom: 1rem;
    }
}
