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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    color: #2e2545;
    line-height: 1.3;
    margin: 0 0 15px;
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p { margin: 0 0 15px; }

a {
    color: #7272ff;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    color: #474ab6;
    opacity: 0.85;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    margin: 0 0 15px;
    padding: 0 0 0 20px;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.lms-section {
    padding: 80px 0;
    position: relative;
}

.dark-bg {
    background: linear-gradient(180deg, #474ab6 0%, #9271f6 100%);
    color: #fff;
}

.dark-bg h1,
.dark-bg h2,
.dark-bg h3,
.dark-bg h4 {
    color: #fff;
}

.dark-bg a:not(.lms-btn) {
    color: #d4ccff;
}

.light-bg {
    background: #f7f8fc;
}

.section-header {
    margin-bottom: 50px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: #7272ff;
    border-radius: 2px;
    margin: 15px 0 20px;
}

.section-divider.centered {
    margin: 15px auto 20px;
}

.section-divider.teal {
    background: #09e1c0;
}

.highlight-text {
    color: #7272ff;
    font-weight: 600;
}

.muted-text {
    color: #8585bd;
    font-size: 15px;
}

.light-muted {
    color: #d4ccff;
    font-size: 15px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #20292f;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding .site-title {
    font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.site-branding .custom-logo-link img {
    max-height: 45px;
    width: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 5px;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-menu li {
    position: relative;
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 10px 16px;
    font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.3s ease, background 0.3s ease;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

#site-main-area {
    padding-top: 70px;
}

.site-footer {
    background: #20292f;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-widgets {
    padding: 50px 0 30px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-widget-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-widget {
    margin-bottom: 20px;
}

.footer-widget-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    padding: 5px 0;
}

.footer-widget a {
    color: rgba(255,255,255,0.6);
}

.footer-widget a:hover {
    color: #09e1c0;
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    background: #09e1c0;
    color: #20292f;
    transform: translateY(-2px);
}

.footer-credit {
    font-size: 13px;
    text-align: right;
}

.footer-credit a {
    color: #09e1c0;
}

.lms-btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.4;
}

.lms-btn.primary-btn {
    background: #7272ff;
    color: #fff;
    border-color: #7272ff;
}

.lms-btn.primary-btn:hover {
    background: #474ab6;
    border-color: #474ab6;
    color: #fff;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(114,114,255,0.35);
}

.lms-btn.teal-btn {
    background: #09e1c0;
    color: #20292f;
    border-color: #09e1c0;
}

.lms-btn.teal-btn:hover {
    background: #07c0a3;
    border-color: #07c0a3;
    color: #20292f;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9,225,192,0.35);
}

.lms-btn.outline-btn {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.lms-btn.outline-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
    opacity: 1;
}

.lms-btn.outline-btn.light {
    border-color: #d4ccff;
    color: #d4ccff;
}

.lms-btn.outline-btn.light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

.hero-section,
.marketing-hero {
    padding: 120px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 44px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-illustration svg,
.hero-image svg {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.courses-section {
    padding: 80px 0;
}

.courses-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.courses-intro h1 {
    font-size: 36px;
}

.courses-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.course-blurb {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-blurb:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.blurb-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.course-blurb h4 {
    font-size: 15px;
    margin: 0 0 4px;
}

.course-blurb p {
    font-size: 13px;
    color: #8585bd;
    margin: 0;
}

.expert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.expert-image svg {
    width: 100%;
    height: auto;
}

.expert-text h1 {
    font-size: 36px;
}

.features-section {
    padding: 80px 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-icon-svg {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}

.feature-text h1 {
    font-size: 30px;
}

.feature-image svg {
    width: 100%;
    height: auto;
}

.testimonial-section,
.marketing-testimonials {
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.testimonial-content h1 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.testimonial-content p {
    opacity: 0.85;
    font-size: 15px;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.author-avatar.sm {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.author-info strong {
    color: #fff;
}

.author-info {
    font-size: 14px;
    opacity: 0.85;
}

.dots-pattern {
    width: 100%;
    height: 200px;
    background-image: radial-gradient(circle, rgba(255,255,255,0.2) 1px, transparent 1px);
    background-size: 25px 25px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.faq-intro h1 {
    font-size: 36px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #7272ff;
    flex-shrink: 0;
}

.faq-item h4 {
    font-size: 15px;
    margin: 0 0 4px;
}

.faq-item p {
    font-size: 13px;
    color: #8585bd;
    margin: 0;
}

.cta-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.cta-card {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.12);
}

.cta-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    margin: 0 auto 20px;
}

.cta-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.cta-card p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.cta-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.cta-text h1 {
    font-size: 30px;
    margin-bottom: 5px;
}

.cta-text p {
    font-size: 15px;
    opacity: 0.8;
    margin: 0;
}

.pricing-hero-section {
    padding: 120px 0 80px;
}

.pricing-header {
    margin-bottom: 50px;
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-table {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-table:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.pricing-table.featured {
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    border: 2px solid #09e1c0;
    position: relative;
}

.pricing-table.featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.pricing-heading {
    margin-bottom: 20px;
}

.pricing-title {
    font-size: 22px;
    color: #2e2545;
    margin-bottom: 5px;
}

.pricing-subtitle {
    font-size: 13px;
    color: #8585bd;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 25px;
}

.price-currency {
    font-size: 24px;
    vertical-align: super;
}

.price-period {
    font-size: 14px;
    font-weight: 400;
    color: #8585bd;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0 10px 28px;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f5;
    position: relative;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.pricing-features li.available::before {
    background: #09e1c0;
    box-shadow: inset 0 0 0 4px #fff, 0 0 0 2px #09e1c0;
}

.pricing-features li.unavailable {
    color: #ccc;
    text-decoration: line-through;
}

.pricing-features li.unavailable::before {
    background: #e0e0e0;
    box-shadow: inset 0 0 0 4px #fff, 0 0 0 2px #e0e0e0;
}

.pricing-btn {
    width: 100%;
    text-align: center;
}

.what-you-get-section {
    padding: 80px 0;
}

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

.feature-blurb {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-blurb:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.feature-blurb .blurb-icon {
    margin: 0 auto 15px;
}

.feature-blurb h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.feature-blurb p {
    font-size: 13px;
    color: #8585bd;
    margin: 0;
}

.pricing-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.final-cta-section {
    padding: 80px 0;
}

.final-cta-section h1 {
    font-size: 36px;
}

.final-cta-section .lms-btn {
    margin-top: 10px;
}

.about-hero,
.contact-hero {
    padding: 120px 0 80px;
}

.our-story-section {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text h1 {
    font-size: 36px;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.stat-number {
    display: block;
    font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #8585bd;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.team-member {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.12);
}

.member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    margin: 0 auto 15px;
}

.team-member h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 4px;
}

.member-role {
    display: block;
    font-size: 13px;
    color: #d4ccff;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

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

.value-card {
    text-align: center;
    padding: 35px 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: #8585bd;
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h1 {
    font-size: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin: 0 0 4px;
}

.contact-item p {
    font-size: 14px;
    color: #8585bd;
    margin: 0;
}

.lms-contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.form-row {
    margin-bottom: 20px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.lms-contact-form input,
.lms-contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 15px;
    color: #333;
    background: #f7f8fc;
    border: 2px solid transparent;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.lms-contact-form input:focus,
.lms-contact-form textarea:focus {
    border-color: #7272ff;
    background: #fff;
}

.lms-contact-form input::placeholder,
.lms-contact-form textarea::placeholder {
    color: #8585bd;
}

.lms-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.location-section {
    padding: 80px 0;
}

.map-placeholder {
    max-width: 700px;
    margin: 30px auto 0;
    border-radius: 16px;
    overflow: hidden;
}

.map-placeholder svg {
    display: block;
    width: 100%;
    height: auto;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #fff;
    font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.1);
    opacity: 0.9;
    color: #fff;
}

.trust-section {
    padding: 60px 0;
}

.trust-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8585bd;
    margin-bottom: 25px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-logo {
    font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #ccc;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    text-align: center;
    padding: 35px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 20px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 13px;
    color: #8585bd;
    margin: 0;
    line-height: 1.6;
}

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

.testimonial-card {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.12);
}

.testimonial-card p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-card .testimonial-author {
    gap: 12px;
}

.testimonial-card .testimonial-author strong {
    color: #fff;
    font-size: 14px;
}

.testimonial-card .testimonial-author span {
    font-size: 12px;
    opacity: 0.7;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

@media screen and (max-width: 1024px) {
    .pricing-tables {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

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

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

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

@media screen and (max-width: 768px) {
    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    h3 { font-size: 20px; }

    .lms-section {
        padding: 50px 0;
    }

    .site-header {
        height: 60px;
    }

    #site-main-area {
        padding-top: 60px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #20292f;
        flex-direction: column;
        padding: 15px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        gap: 0;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        padding: 12px 16px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .hero-grid,
    .expert-grid,
    .courses-grid-layout,
    .feature-row,
    .testimonial-grid,
    .story-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-section,
    .marketing-hero,
    .pricing-hero-section,
    .about-hero,
    .contact-hero {
        padding: 90px 0 50px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .courses-list {
        grid-template-columns: 1fr;
    }

    .cta-cards {
        grid-template-columns: 1fr;
    }

    .cta-bottom {
        flex-direction: column;
    }

    .pricing-tables {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-table.featured {
        transform: none;
    }

    .pricing-table.featured:hover {
        transform: translateY(-6px);
    }

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

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

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

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

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

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

    .footer-widget-area {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-credit {
        text-align: center;
    }

    .story-stats {
        grid-template-columns: 1fr 1fr;
    }

    .lms-contact-form {
        padding: 25px;
    }
}

@media screen and (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .lms-btn {
        width: 100%;
        text-align: center;
    }

    .trust-logos {
        gap: 20px;
    }

    .trust-logo {
        font-size: 14px;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }
}

.admin-bar .site-header {
    top: 32px;
}

.admin-bar #site-main-area {
    padding-top: 102px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }

    .admin-bar #site-main-area {
        padding-top: 106px;
    }
}

@media screen and (max-width: 600px) {
    .admin-bar .site-header {
        top: 0;
    }

    .admin-bar #site-main-area {
        padding-top: 60px;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
