/* Bentley Fresh Style - Auto-themed */
/* Unique bf-* prefix classes */

:root {
    --mpok-forest: #1b3334;
    --mpok-forest-light: #21543c;
    --mpok-forest-dark: #0f271a;
    --mpok-cream: #bfb99e;
    --mpok-cream-light: #e4e1c1;
    --mpok-cream-dark: #b08e6f;
    --mpok-ivory: #faf8f5;
    --mpok-white: #ffffff;
    --mpok-charcoal: #262b24;
    --mpok-slate: #605f58;
    --mpok-mist: #f0ede8;
    --mpok-border: #d6e1e2;
    --mpok-shadow-sm: 0 2px 8px rgba(32,60,51,0.08);
    --mpok-shadow-md: 0 8px 24px rgba(31,66,42,0.12);
    --mpok-shadow-lg: 0 16px 48px rgba(30,56,50,0.16);
    --mpok-shadow-cream: 0 8px 32px rgba(204,184,149,0.25);
    --mpok-success: #27844f;
    --mpok-danger: #c74631;
    --mpok-radius-sm: 7px;
    --mpok-radius-md: 9px;
    --mpok-radius-lg: 19px;
    --mpok-radius-xl: 33px;
    --mpok-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

.mpok-body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--mpok-charcoal);
    background: var(--mpok-ivory);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.mpok-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ===== HEADER ===== */
.mpok-header {
    background: var(--mpok-white);
    border-bottom: 1px solid var(--mpok-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--mpok-shadow-sm);
}

.mpok-header-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 17px 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 33px;
}

.mpok-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--mpok-forest);
}

.mpok-logo-mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(145deg, var(--mpok-forest) 0%, var(--mpok-forest-light) 100%);
    border-radius: var(--mpok-radius-md);
    position: relative;
    box-shadow: var(--mpok-shadow-sm);
}

.mpok-logo-mark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid var(--mpok-cream);
    border-radius: 50%;
}

.mpok-logo-name {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.4px;
}

.mpok-navigation {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mpok-nav-item {
    color: var(--mpok-charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 15px;
    border-radius: var(--mpok-radius-sm);
    transition: var(--mpok-transition);
    position: relative;
}

.mpok-nav-item:hover {
    background: var(--mpok-mist);
    color: var(--mpok-forest);
}

.mpok-nav-item--current {
    background: var(--mpok-forest);
    color: var(--mpok-white);
}

.mpok-nav-item--current:hover {
    background: var(--mpok-forest-light);
    color: var(--mpok-white);
}

.mpok-header-action {
    background: var(--mpok-cream);
    color: var(--mpok-forest-dark);
    padding: 14px 23px;
    border-radius: var(--mpok-radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--mpok-transition);
    box-shadow: var(--mpok-shadow-sm);
}

.mpok-header-action:hover {
    background: var(--mpok-cream-dark);
    transform: translateY(-2px);
    box-shadow: var(--mpok-shadow-md);
}

/* Burger Menu */
.mpok-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 11px;
    z-index: 1001;
}

.mpok-burger-line {
    width: 26px;
    height: 2px;
    background: var(--mpok-forest);
    border-radius: 3px;
    transition: var(--mpok-transition);
}

.mpok-burger.active .mpok-burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mpok-burger.active .mpok-burger-line:nth-child(2) {
    opacity: 0;
}

.mpok-burger.active .mpok-burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mpok-mobile-menu {
    display: none;
    flex-direction: column;
    padding: 19px 28px 21px;
    background: var(--mpok-white);
    border-top: 1px solid var(--mpok-border);
}

.mpok-mobile-menu.active {
    display: flex;
}

.mpok-mobile-item {
    padding: 13px 0;
    color: var(--mpok-charcoal);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--mpok-border);
}

.mpok-mobile-item:last-child {
    border-bottom: none;
}

/* ===== HERO SECTION ===== */
.mpok-hero {
    background: linear-gradient(160deg, var(--mpok-forest-dark) 0%, var(--mpok-forest) 40%, var(--mpok-forest-light) 100%);
    padding: 100px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mpok-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(203,190,157,0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(202,180,148,0.1) 0%, transparent 50%);
}

.mpok-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(201,189,156,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.mpok-hero .mpok-container {
    position: relative;
    z-index: 2;
}

.mpok-hero-label {
    display: inline-block;
    padding: 13px 24px;
    background: rgba(200,179,143,0.2);
    border: 1px solid rgba(199,185,151,0.4);
    border-radius: 52px;
    font-size: 12px;
    font-weight: 600;
    color: var(--mpok-cream);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 29px;
}

.mpok-hero-heading {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--mpok-white);
    line-height: 1.15;
    margin-bottom: 27px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.mpok-hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin: 0 auto 35px;
    line-height: 1.65;
}

.mpok-hero-btns {
    display: flex;
    gap: 19px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.mpok-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    border-radius: var(--mpok-radius-sm);
    transition: var(--mpok-transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.mpok-btn--filled {
    background: var(--mpok-cream);
    color: var(--mpok-forest-dark);
    box-shadow: var(--mpok-shadow-sm);
}

.mpok-btn--filled:hover {
    background: var(--mpok-cream-light);
    transform: translateY(-3px);
    box-shadow: var(--mpok-shadow-md);
}

.mpok-btn--ghost {
    background: transparent;
    color: var(--mpok-white);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.mpok-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.mpok-btn--outline {
    background: transparent;
    color: var(--mpok-forest);
    border: 2px solid var(--mpok-forest);
}

.mpok-btn--outline:hover {
    background: var(--mpok-forest);
    color: var(--mpok-white);
}

.mpok-btn--light {
    background: var(--mpok-white);
    color: var(--mpok-forest);
    box-shadow: var(--mpok-shadow-sm);
}

.mpok-btn--light:hover {
    background: var(--mpok-ivory);
    transform: translateY(-3px);
    box-shadow: var(--mpok-shadow-md);
}

.mpok-btn--full {
    width: 100%;
}

/* ===== TRUST BADGES ===== */
.mpok-trust-section {
    background: var(--mpok-white);
    padding: 39px 0;
    border-bottom: 2px solid var(--mpok-border);
}

.mpok-trust-grid {
    display: flex;
    justify-content: center;
    gap: 46px;
    flex-wrap: wrap;
}

.mpok-trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mpok-trust-icon {
    font-size: 24px;
    color: var(--mpok-forest);
}

.mpok-trust-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--mpok-charcoal);
}

/* ===== SECTION HEADERS ===== */
.mpok-section-top {
    text-align: center;
    margin-bottom: 58px;
}

.mpok-section-label {
    display: inline-block;
    padding: 7px 23px;
    background: var(--mpok-mist);
    border-radius: 51px;
    font-size: 10px;
    font-weight: 700;
    color: var(--mpok-forest);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 16px;
}

.mpok-section-heading {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--mpok-forest);
    margin-bottom: 16px;
}

.mpok-section-intro {
    font-size: 17px;
    color: var(--mpok-slate);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== COMPANY CARDS ===== */
.mpok-providers {
    padding: 90px 0;
    background: var(--mpok-ivory);
}

.mpok-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 31px;
}

.mpok-company-card {
    background: var(--mpok-white);
    border-radius: var(--mpok-radius-lg);
    border: 1px solid var(--mpok-border);
    overflow: hidden;
    transition: var(--mpok-transition);
    position: relative;
    box-shadow: var(--mpok-shadow-sm);
}

.mpok-company-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--mpok-shadow-lg);
    border-color: var(--mpok-cream);
}

.mpok-company-card--featured {
    border: 2px solid var(--mpok-forest);
}

.mpok-company-card--featured::before {
    content: 'Top Pick';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--mpok-forest);
    color: var(--mpok-white);
    padding: 7px 12px;
    border-radius: 53px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    z-index: 2;
}

.mpok-card-rank {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--mpok-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: var(--mpok-forest-dark);
    z-index: 2;
}

.mpok-card-inner {
    padding: 73px 28px 25px;
}

.mpok-card-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--mpok-forest);
    margin-bottom: 5px;
}

.mpok-card-tagline {
    font-size: 17px;
    color: var(--mpok-slate);
    margin-bottom: 17px;
}

.mpok-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 21px;
}

.mpok-card-stars {
    color: var(--mpok-cream-dark);
    font-size: 18px;
    letter-spacing: 1px;
}

.mpok-card-score {
    font-weight: 700;
    color: var(--mpok-forest);
    font-size: 15px;
}

.mpok-card-details {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 21px;
    padding-bottom: 19px;
    border-bottom: 1px solid var(--mpok-border);
}

.mpok-card-detail {
    font-size: 13px;
    color: var(--mpok-slate);
}

.mpok-card-detail strong {
    color: var(--mpok-charcoal);
}

.mpok-card-features {
    list-style: none;
    margin-bottom: 24px;
}

.mpok-card-features li {
    padding: 5px 0 7px 23px;
    position: relative;
    font-size: 14px;
    color: var(--mpok-charcoal);
}

.mpok-card-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--mpok-success);
    font-weight: 700;
}

.mpok-card-btns {
    display: flex;
    gap: 13px;
}

.mpok-card-btns .mpok-btn {
    flex: 1;
    padding: 11px 23px;
    font-size: 14px;
}

/* ===== CTA BANNER ===== */
.mpok-cta-banner {
    background: linear-gradient(145deg, var(--mpok-forest) 0%, var(--mpok-forest-dark) 100%);
    padding: 67px 0;
}

.mpok-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    flex-wrap: wrap;
}

.mpok-cta-content {
    max-width: 600px;
}

.mpok-cta-heading {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--mpok-white);
    margin-bottom: 15px;
}

.mpok-cta-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
}

/* ===== CONTENT SECTION ===== */
.mpok-content {
    padding: 83px 0;
    background: var(--mpok-white);
}

.mpok-article {
    max-width: 780px;
    margin: 0 auto;
}

.mpok-intro-box {
    background: linear-gradient(135deg, var(--mpok-mist) 0%, var(--mpok-ivory) 100%);
    padding: 29px;
    border-radius: var(--mpok-radius-lg);
    margin-bottom: 42px;
    border-left: 3px solid var(--mpok-forest);
}

.mpok-lead {
    font-size: 20px;
    line-height: 1.75;
    color: var(--mpok-charcoal);
    margin: 0;
}

.mpok-article h2 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--mpok-forest);
    margin: 54px 0 27px;
    line-height: 1.25;
    position: relative;
    padding-bottom: 16px;
}

.mpok-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--mpok-cream);
    border-radius: 1px;
}

.mpok-article h3 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--mpok-forest-dark);
    margin: 41px 0 16px;
}

.mpok-article p {
    margin-bottom: 25px;
    line-height: 1.85;
    color: var(--mpok-charcoal);
}

/* Image Block */
.mpok-image-block {
    margin: 48px 0;
    border-radius: var(--mpok-radius-lg);
    overflow: hidden;
    box-shadow: var(--mpok-shadow-md);
}

.mpok-article-img {
    width: 100%;
    height: auto;
    display: block;
}

.mpok-image-block figcaption {
    background: var(--mpok-mist);
    padding: 11px 22px;
    font-size: 13px;
    color: var(--mpok-slate);
    text-align: center;
}

/* Lists */
.mpok-styled-list {
    margin: 31px 0;
    padding-left: 29px;
}

.mpok-styled-list li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--mpok-charcoal);
    position: relative;
    padding-left: 15px;
}

.mpok-styled-list li::marker {
    color: var(--mpok-forest);
}

.mpok-numbered-list {
    margin: 28px 0;
    padding-left: 25px;
    counter-reset: item;
    list-style: none;
}

.mpok-numbered-list li {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--mpok-charcoal);
    position: relative;
    padding-left: 39px;
}

.mpok-numbered-list li::before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--mpok-forest);
    color: var(--mpok-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

/* ===== FAQ SECTION ===== */
.mpok-faq-section {
    padding: 83px 0;
    background: var(--mpok-ivory);
}

.mpok-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.mpok-faq-item {
    background: var(--mpok-white);
    border: 1px solid var(--mpok-border);
    border-radius: var(--mpok-radius-md);
    overflow: hidden;
    transition: var(--mpok-transition);
}

.mpok-faq-item:hover {
    border-color: var(--mpok-cream);
}

.mpok-faq-item.active {
    border-color: var(--mpok-forest);
    box-shadow: var(--mpok-shadow-md);
}

.mpok-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 19px;
    padding: 25px 29px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.mpok-faq-q {
    font-size: 17px;
    font-weight: 600;
    color: var(--mpok-forest);
}

.mpok-faq-toggle {
    width: 32px;
    height: 32px;
    background: var(--mpok-mist);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: var(--mpok-transition);
}

.mpok-faq-toggle::before,
.mpok-faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--mpok-forest);
    border-radius: 1px;
}

.mpok-faq-toggle::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mpok-faq-toggle::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--mpok-transition);
}

.mpok-faq-item.active .mpok-faq-toggle {
    background: var(--mpok-forest);
}

.mpok-faq-item.active .mpok-faq-toggle::before,
.mpok-faq-item.active .mpok-faq-toggle::after {
    background: var(--mpok-white);
}

.mpok-faq-item.active .mpok-faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.mpok-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mpok-faq-item.active .mpok-faq-answer {
    max-height: 600px;
}

.mpok-faq-text {
    padding: 0 31px 24px;
    font-size: 12px;
    line-height: 1.75;
    color: var(--mpok-slate);
}

.mpok-faq-text p {
    margin: 0;
}

/* ===== FOOTER ===== */
.mpok-footer {
    background: var(--mpok-forest-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 72px 0 39px;
    margin-top: 83px;
}

.mpok-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 49px;
    padding-bottom: 46px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 36px;
}

.mpok-footer-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--mpok-white);
    font-weight: 700;
    font-size: 18px;
}

.mpok-footer-brand .mpok-logo-mark {
    width: 36px;
    height: 36px;
}

.mpok-footer-about {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.mpok-footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--mpok-white);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.mpok-footer-nav {
    list-style: none;
}

.mpok-footer-nav li {
    margin-bottom: 12px;
}

.mpok-footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--mpok-transition);
}

.mpok-footer-nav a:hover {
    color: var(--mpok-cream);
}

.mpok-footer-legal {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 29px;
}

.mpok-footer-bottom {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== REVIEW PAGE ===== */
.mpok-review-hero {
    padding: 53px 0 40px;
    border-bottom: 1px solid var(--mpok-border);
    margin-bottom: 42px;
}

.mpok-review-title {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--mpok-forest);
    margin-bottom: 13px;
}

.mpok-review-tagline {
    font-size: 18px;
    color: var(--mpok-slate);
    margin-bottom: 18px;
}

.mpok-review-stars {
    display: flex;
    align-items: center;
    gap: 17px;
}

.mpok-stars {
    color: var(--mpok-cream-dark);
    font-size: 22px;
    letter-spacing: 2px;
}

.mpok-score {
    font-weight: 700;
    font-size: 18px;
    color: var(--mpok-forest);
}

.mpok-bbb {
    background: var(--mpok-mist);
    padding: 5px 17px;
    border-radius: 51px;
    font-size: 11px;
    font-weight: 600;
    color: var(--mpok-forest);
}

.mpok-review-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 23px;
    margin-bottom: 50px;
}

.mpok-metric {
    background: var(--mpok-mist);
    padding: 21px;
    border-radius: var(--mpok-radius-md);
    text-align: center;
}

.mpok-metric-label {
    display: block;
    font-size: 13px;
    color: var(--mpok-slate);
    margin-bottom: 7px;
}

.mpok-metric-value {
    font-size: 25px;
    font-weight: 700;
    color: var(--mpok-forest);
}

.mpok-review-body {
    margin-bottom: 41px;
}

.mpok-review-body h2 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--mpok-forest);
    margin-bottom: 21px;
}

.mpok-review-body p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--mpok-charcoal);
}

.mpok-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px;
    margin-bottom: 52px;
}

.mpok-pros, .mpok-cons {
    background: var(--mpok-white);
    border: 1px solid var(--mpok-border);
    border-radius: var(--mpok-radius-md);
    padding: 31px;
}

.mpok-pros h3, .mpok-cons h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
}

.mpok-pros h3 {
    color: var(--mpok-success);
}

.mpok-cons h3 {
    color: var(--mpok-danger);
}

.mpok-pros ul, .mpok-cons ul {
    list-style: none;
}

.mpok-pros li, .mpok-cons li {
    padding: 13px 0 10px 25px;
    position: relative;
    font-size: 15px;
    border-bottom: 1px solid var(--mpok-border);
}

.mpok-pros li:last-child, .mpok-cons li:last-child {
    border-bottom: none;
}

.mpok-pros li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--mpok-success);
    font-weight: 700;
}

.mpok-cons li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: var(--mpok-danger);
    font-weight: 700;
}

.mpok-fees-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 23px;
}

.mpok-fees-table th,
.mpok-fees-table td {
    padding: 17px 18px;
    text-align: left;
    border-bottom: 1px solid var(--mpok-border);
}

.mpok-fees-table th {
    background: var(--mpok-forest);
    color: var(--mpok-white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.mpok-fees-table td {
    font-size: 15px;
}

.mpok-fees-table tr:hover td {
    background: var(--mpok-mist);
}

.mpok-cta-box {
    background: linear-gradient(135deg, var(--mpok-forest) 0%, var(--mpok-forest-dark) 100%);
    padding: 42px;
    border-radius: var(--mpok-radius-lg);
    text-align: center;
    margin: 49px 0;
}

.mpok-cta-box h3 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--mpok-white);
    margin-bottom: 13px;
}

.mpok-cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 22px;
}

.mpok-other-companies {
    margin-top: 63px;
    padding-top: 50px;
    border-top: 1px solid var(--mpok-border);
}

.mpok-other-companies h3 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--mpok-forest);
    margin-bottom: 27px;
    text-align: center;
}

.mpok-other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 21px;
}

.mpok-other-card {
    background: var(--mpok-mist);
    padding: 22px;
    border-radius: var(--mpok-radius-md);
    text-align: center;
}

.mpok-other-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--mpok-forest);
    margin-bottom: 8px;
}

.mpok-other-card p {
    font-size: 11px;
    color: var(--mpok-slate);
    margin-bottom: 16px;
}

.mpok-other-card a {
    color: var(--mpok-forest);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.mpok-other-card a:hover {
    text-decoration: underline;
}

/* ===== STATIC PAGES ===== */
.mpok-static-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 61px 0;
}

.mpok-page-title {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--mpok-forest);
    margin-bottom: 19px;
}

.mpok-page-updated {
    font-size: 14px;
    color: var(--mpok-slate);
    margin-bottom: 25px;
}

.mpok-page-intro {
    background: var(--mpok-mist);
    padding: 30px;
    border-radius: var(--mpok-radius-md);
    margin-bottom: 35px;
}

.mpok-page-lead {
    font-size: 21px;
    line-height: 1.75;
    color: var(--mpok-charcoal);
    margin: 0;
}

.mpok-static-page h2 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--mpok-forest);
    margin: 42px 0 21px;
}

.mpok-static-page h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--mpok-forest-dark);
    margin: 29px 0 16px;
}

.mpok-static-page p {
    margin-bottom: 17px;
    line-height: 1.8;
}

/* ===== CONTACT PAGE ===== */
.mpok-contact-section {
    padding: 63px 0;
}

.mpok-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 51px;
    margin-top: 38px;
}

.mpok-contact-info {
    display: flex;
    flex-direction: column;
    gap: 31px;
}

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

.mpok-contact-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--mpok-forest);
    border-radius: var(--mpok-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mpok-contact-icon-wrap svg {
    width: 24px;
    height: 24px;
    color: var(--mpok-cream);
}

.mpok-contact-detail h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--mpok-forest);
    margin-bottom: 5px;
}

.mpok-contact-detail p {
    font-size: 15px;
    color: var(--mpok-slate);
    margin: 0;
}

.mpok-contact-form-wrap {
    background: var(--mpok-mist);
    padding: 36px;
    border-radius: var(--mpok-radius-lg);
}

.mpok-contact-form {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.mpok-form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mpok-form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--mpok-charcoal);
}

.mpok-form-input,
.mpok-form-select,
.mpok-form-textarea {
    padding: 17px 19px;
    border: 1px solid var(--mpok-border);
    border-radius: var(--mpok-radius-sm);
    font-family: inherit;
    font-size: 18px;
    background: var(--mpok-white);
    transition: var(--mpok-transition);
}

.mpok-form-input:focus,
.mpok-form-select:focus,
.mpok-form-textarea:focus {
    outline: none;
    border-color: var(--mpok-forest);
    box-shadow: 0 0 0 3px rgba(27,64,52,0.1);
}

.mpok-form-textarea {
    min-height: 140px;
    resize: vertical;
}

.mpok-form-success {
    display: none;
    background: var(--mpok-white);
    padding: 30px;
    border-radius: var(--mpok-radius-md);
    text-align: center;
    border: 1px solid var(--mpok-success);
}

.mpok-form-success.active {
    display: block;
}

.mpok-form-success p {
    color: var(--mpok-success);
    margin: 0;
}

/* ===== 404 PAGE ===== */
.mpok-error-page {
    text-align: center;
    padding: 120px 29px;
}

.mpok-error-code {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 120px;
    font-weight: 700;
    color: var(--mpok-cream);
    line-height: 1;
    margin-bottom: 19px;
}

.mpok-error-msg {
    font-size: 22px;
    color: var(--mpok-slate);
    margin-bottom: 33px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .mpok-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .mpok-header { position: relative !important; }
    .mpok-navigation,
    .mpok-header-action {
        display: none;
    }

    .mpok-burger {
        display: flex;
    }

    .mpok-hero {
        padding: 73px 0 61px;
    }

    .mpok-hero-heading {
        font-size: 34px;
    }

    .mpok-hero-desc {
        font-size: 16px;
    }

    .mpok-hero-btns {
        flex-direction: column;
    }

    .mpok-trust-grid {
        gap: 24px;
    }

    .mpok-trust-badge {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

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

    .mpok-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .mpok-cta-heading {
        font-size: 28px;
    }

    .mpok-section-heading {
        font-size: 30px;
    }

    .mpok-article h2 {
        font-size: 26px;
    }

    .mpok-footer-grid {
        grid-template-columns: 1fr;
        gap: 37px;
    }

    .mpok-review-title {
        font-size: 32px;
    }

    .mpok-review-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .mpok-pros-cons {
        grid-template-columns: 1fr;
    }

    .mpok-contact-layout {
        grid-template-columns: 1fr;
    }

    .mpok-page-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .mpok-container {
        padding: 0 17px;
    }

    .mpok-hero-heading {
        font-size: 28px;
    }

    .mpok-review-metrics {
        grid-template-columns: 1fr;
    }

    .mpok-card-btns {
        flex-direction: column;
    }

    .mpok-error-code {
        font-size: 80px;
    }
}

/* ========================================
   Companies Comparison Table - Fresh Prestige Style
   ======================================== */
.mpok-comparison-section {
    padding: 90px 0;
    background: var(--mpok-cream);
}

.mpok-comparison-header {
    text-align: center;
    margin-bottom: 56px;
}

.mpok-comparison-wings {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--mpok-green);
    color: var(--mpok-cream);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    margin-bottom: 19px;
}

.mpok-comparison-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--mpok-green);
    font-family: var(--mpok-font-display);
    letter-spacing: 2px;
    margin-bottom: 13px;
}

.mpok-comparison-subtitle {
    font-size: 17px;
    color: var(--mpok-gray-600);
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.7;
}

.mpok-comparison-table {
    width: 100%;
    background: var(--mpok-white);
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.mpok-comparison-table thead {
    background: var(--mpok-green);
}

.mpok-comparison-table th {
    padding: 23px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.6px;
    color: var(--mpok-cream);
}

.mpok-comparison-table td {
    padding: 24px 27px;
    border-bottom: 1px solid var(--mpok-cream-dark);
    font-size: 14px;
    color: var(--mpok-gray-700);
}

.mpok-comparison-table tbody tr:hover {
    background: var(--mpok-cream);
}

.mpok-company-cell {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mpok-company-shield {
    width: 55px;
    height: 56px;
    background: var(--mpok-green);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.mpok-company-shield img {
    max-width: 32px;
    max-height: 32px;
    filter: brightness(0) invert(1);
}

.mpok-company-prestige h4 {
    font-size: 17px;
    font-weight: 500;
    color: var(--mpok-green);
    font-family: var(--mpok-font-display);
}

.mpok-company-prestige span {
    font-size: 12px;
    color: var(--mpok-gray-500);
}

.mpok-rating-fresh {
    font-size: 20px;
    font-weight: 600;
    color: var(--mpok-gold);
    font-family: var(--mpok-font-display);
}

.mpok-feature-fresh {
    display: inline-block;
    padding: 10px 15px;
    background: var(--mpok-cream);
    border-left: 3px solid var(--mpok-gold);
    color: var(--mpok-green);
    font-size: 12px;
    font-weight: 600;
}

.mpok-btn-fresh {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 30px;
    background: var(--mpok-gold);
    color: var(--mpok-green);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.mpok-btn-fresh:hover {
    background: var(--mpok-green);
    color: var(--mpok-cream);
}

.mpok-comparison-cards { display: none; }

.mpok-company-card {
    background: var(--mpok-white);
    padding: 29px;
    margin-bottom: 23px;
    box-shadow: 0 5px 22px rgba(0,0,0,0.05);
}

.mpok-card-prestige {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-bottom: 26px;
    padding-bottom: 19px;
    border-bottom: 2px solid var(--mpok-cream-dark);
}

.mpok-card-shield {
    width: 68px;
    height: 68px;
    background: var(--mpok-green);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.mpok-card-name-fresh h4 {
    font-size: 22px;
    font-weight: 500;
    color: var(--mpok-green);
    font-family: var(--mpok-font-display);
}

.mpok-card-elite {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 29px;
}

.mpok-card-elite-item {
    padding: 18px;
    background: var(--mpok-cream);
}

.mpok-card-elite-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--mpok-gray-500);
    margin-bottom: 5px;
}

.mpok-card-elite-value {
    font-size: 17px;
    font-weight: 600;
    color: var(--mpok-green);
}

.mpok-card-cta-fresh {
    display: block;
    text-align: center;
    padding: 19px;
    background: var(--mpok-gold);
    color: var(--mpok-green);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.mpok-card-cta-fresh:hover {
    background: var(--mpok-green);
    color: var(--mpok-cream);
}

@media (max-width: 900px) {
    .mpok-comparison-table { display: none; }
    .mpok-comparison-cards { display: block; }
    .mpok-comparison-title { font-size: 34px; }
}

@media (max-width: 480px) {
    .mpok-comparison-section { padding: 62px 0; }
    .mpok-card-elite { grid-template-columns: 1fr; }
}


/* Force Mobile Table Cards */
@media screen and (max-width: 768px) {
    .mpok-companies-section .mpok-companies-table-wrapper {
        overflow: visible !important;
        background: transparent !important;
    }

    .mpok-companies-section table.mpok-companies-table {
        display: block !important;
        width: 100% !important;
    }

    .mpok-companies-section .mpok-companies-table thead {
        display: none !important;
    }

    .mpok-companies-section .mpok-companies-table tbody,
    .mpok-companies-section .mpok-companies-table tr {
        display: block !important;
        width: 100% !important;
    }

    .mpok-companies-section .mpok-companies-table tbody tr.mpok-company-row {
        background: #fff !important;
        margin-bottom: 23px !important;
        border-radius: 17px !important;
        box-shadow: 0 3px 27px rgba(90,34,39,0.1) !important;
        padding: 20px !important;
        border: 1px solid rgba(89,27,47,0.08);
    }

    .mpok-companies-section .mpok-companies-table td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 14px 0 !important;
        border: none !important;
        border-bottom: 1px solid #f5f5f5 !important;
    }

    .mpok-companies-section .mpok-companies-table td:last-child {
        border-bottom: none !important;
    }

    .mpok-companies-section .mpok-companies-table td::before {
        content: attr(data-label) !important;
        font-weight: 700 !important;
        color: #5e2635 !important;
        flex-shrink: 0 !important;
        margin-right: 18px !important;
        font-size: 0.85rem !important;
    }

    .mpok-companies-section .mpok-td-company {
        flex-direction: column !important;
        text-align: center !important;
        padding-bottom: 17px !important;
        border-bottom: 1px solid #e7deca !important;
    }

    .mpok-companies-section .mpok-td-company::before {
        display: none !important;
    }

    .mpok-companies-section .mpok-td-rank {
        justify-content: center !important;
        padding-top: 0 !important;
        border-bottom: none !important;
    }

    .mpok-companies-section .mpok-td-rank::before {
        display: none !important;
    }

    .mpok-companies-section .mpok-td-action {
        flex-direction: column !important;
        padding-top: 19px !important;
        border-top: 2px solid #f1e2cf !important;
        border-bottom: none !important;
    }

    .mpok-companies-section .mpok-td-action::before {
        display: none !important;
    }

    .mpok-companies-section .mpok-td-action .mpok-btn {
        width: 100% !important;
        text-align: center !important;
        padding: 11px 26px !important;
        font-size: 1rem !important;
    }
}

/* Company Logo Styles */
.mpok-company-logo {
    width: auto !important;
    height: 45px !important;
    max-width: 140px !important;
    max-height: 45px !important;
    object-fit: contain !important;
    margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
    .mpok-company-logo {
        display: block !important;
        margin: 0 auto 15px auto !important;
    }

    .mpok-companies-section .mpok-td-company .mpok-company-info {
        text-align: center;
    }
}


/* Hamburger Menu Styles */
.mpok-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mpok-menu-line {
    width: 23px;
    height: 3px;
    background: var(--mpok-text, #233850);
    border-radius: 3px;
    transition: 0.3s;
}

.mpok-menu-toggle.active .mpok-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.mpok-menu-toggle.active .mpok-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .mpok-menu-toggle {
        display: flex;
    }
}


/* Header Container Fix */
.mpok-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 19px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mpok-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* Navigation Responsive Fix */
@media (max-width: 768px) {
    .mpok-nav {
        display: none !important;
    }

    .mpok-menu-toggle {
        display: flex !important;
    }
}


/* Mobile Navigation Hidden by Default */
.mpok-mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 13px 26px;
    border-top: 1px solid #eee;
}

.mpok-mobile-nav.active {
    display: flex;
}

.mpok-mobile-link {
    padding: 15px 0;
    color: var(--mpok-text, #2d3c41);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.mpok-mobile-link:last-child {
    border-bottom: none;
}

.mpok-mobile-link:hover {
    color: var(--mpok-accent, #e90a1d);
}


/* SVG Logo & Mobile Fixes */
.mpok-logo-svg {
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

.mpok-logo-text {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .mpok-logo-svg {
        width: 28px;
        height: 28px;
    }
}

/* Company logos 50% width on mobile portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .mpok-company-logo {
        width: 50vw !important;
        max-width: 50vw !important;
        height: auto !important;
        max-height: none !important;
    }
}

/* Center company logos on mobile */
@media screen and (max-width: 768px) {
    .mpok-company-logo {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .mpok-company-info {
        text-align: center !important;
    }

    .mpok-company-name {
        text-align: center !important;
    }

    .mpok-company-badge {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}


/* Max width 1400px for desktop */
.mpok-wrapper, .mpok-content, .mpok-hero-inner, .mpok-companies-container, 
.mpok-article, .mpok-container, .mpok-footer-inner, .mpok-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center buttons in company cards */
.mpok-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.mpok-td-action {
    text-align: center !important;
}
.mpok-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 13px !important;
}
