/* --------------------------------------------------
   MASS TÜRKİYE - POWERMASS DESIGN SYSTEM & CUSTOM CSS
-------------------------------------------------- */

:root {
    --bg-dark: #050b14;
    --bg-darker: #020509;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border-color: rgba(255, 255, 255, 0.08);
    
    --primary-orange: #ff8400;
    --primary-orange-hover: #ff9b26;
    --orange-glow: rgba(255, 132, 0, 0.35);
    --orange-gradient: linear-gradient(135deg, #ff7b00, #ffb347);
    --dark-gradient: linear-gradient(135deg, #07101d, #121f37);
    --glow-gradient: radial-gradient(circle, rgba(255, 132, 0, 0.15), transparent 70%);
    
    --text-white: #ffffff;
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #111827;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.4s;
    --transition-ease: cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-orange-btn: 0 10px 25px rgba(255, 132, 0, 0.25);
    
    --header-height: 80px;
}

/* RESET & BASE */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-orange) var(--bg-darker);
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    max-width: 100%;
    line-height: 1.6;
    font-weight: 400;
}

/* CUSTOM SCROLLBAR FOR WEBKIT */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange-hover);
}

/* GLOBAL CLASSES & TYPOGRAPHY */
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s var(--transition-ease);
}

.scroll-reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* HEADER & NAVIGATION */
.pm-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(5, 11, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 9999;
    transition: var(--transition-speed) var(--transition-ease);
}

.pm-header.scrolled {
    height: 70px;
    background: rgba(2, 5, 9, 0.95);
    box-shadow: var(--shadow-premium);
}

.pm-header-container {
    max-width: 1400px;
    width: 90%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pm-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pm-logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition-speed) var(--transition-ease);
}

.pm-header.scrolled .pm-logo-img {
    height: 40px;
}

.pm-logo span {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 1px;
}

.pm-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.pm-nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.pm-nav-link:hover, .pm-nav-link.active {
    color: var(--primary-orange);
}

.pm-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition-speed) var(--transition-ease);
}

.pm-nav-link:hover::after, .pm-nav-link.active::after {
    width: 100%;
}

.pm-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 132, 0, 0.1);
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 14px;
}

.pm-nav-btn:hover {
    background: var(--primary-orange);
    color: var(--text-white);
    box-shadow: var(--shadow-orange-btn);
}

/* MOBILE TOGGLE */
.pm-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.pm-mobile-menu-toggle .bar {
    width: 28px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: var(--transition-speed) var(--transition-ease);
}

/* FLOATING SUPPORT BUTTONS */
.pm-floating-support {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9998;
}

.pm-float-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 24px;
    border-radius: 100px;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.pm-float-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pm-float-icon i {
    font-size: 22px;
}

.pm-float-text {
    display: flex;
    flex-direction: column;
}

.pm-float-text strong {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.pm-float-text span {
    font-size: 11px;
    opacity: 0.85;
}

.pm-float-btn.whatsapp {
    background: linear-gradient(135deg, #10b981, #059669);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pm-float-btn.support {
    background: linear-gradient(135deg, #1f2937, #111827);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pm-float-btn.support i {
    color: var(--primary-orange);
}

.pm-float-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: floatGlow 3s infinite;
}

@keyframes floatGlow {
    0% { transform: scale(1); opacity: 0.8; }
    70% { transform: scale(1.08); opacity: 0; }
    100% { opacity: 0; }
}

.pm-float-btn:hover {
    transform: translateY(-5px) scale(1.02);
}

/* HERO HERO BANNER */
.ms-hero-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: var(--header-height);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
}

.ms-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ms-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(5, 11, 20, 0.75), rgba(2, 5, 9, 0.9));
    z-index: 2;
}

.ms-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: var(--glow-gradient);
    top: -200px;
    right: -150px;
    z-index: 2;
    animation: heroGlowPulse 10s infinite alternate;
}

@keyframes heroGlowPulse {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-50px, 30px) scale(1.2); }
}

.ms-content {
    position: relative;
    z-index: 5;
    max-width: 1100px;
    width: 90%;
    margin: 80px auto 40px;
    text-align: center;
}

.ms-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.ms-content h1 {
    font-size: 90px;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ms-content h1 span {
    color: var(--primary-orange);
    position: relative;
}

.ms-content p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-muted);
}

.ms-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.ms-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: var(--shadow-premium);
}

.ms-btn-orange {
    background: var(--orange-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-orange-btn);
}

.ms-btn-orange:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 132, 0, 0.4);
}

.ms-btn-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ms-btn-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.ms-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ms-feature-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
}

.ms-feature-box i {
    font-size: 18px;
    color: var(--primary-orange);
}

.ms-feature-box:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 132, 0, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.ms-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: scrollDownBounce 2s infinite;
}

.ms-scroll-down a {
    color: var(--text-muted);
    font-size: 24px;
}

.ms-scroll-down a:hover {
    color: var(--primary-orange);
}

@keyframes scrollDownBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* CERTIFICATES SECTION */
.ms-certificates {
    position: relative;
    padding: 120px 0;
    background: var(--dark-gradient);
    overflow: hidden;
}

.ms-cert-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--glow-gradient);
    bottom: -200px;
    left: -200px;
    pointer-events: none;
}

.ms-cert-container {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.ms-cert-header {
    text-align: center;
    margin-bottom: 60px;
}

.ms-cert-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.ms-cert-header h2 {
    font-size: 48px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.ms-cert-header p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 17px;
    color: var(--text-muted);
}

.ms-cert-slider {
    overflow-x: auto;
    padding: 20px 0 40px;
    scrollbar-width: none;
}

.ms-cert-slider::-webkit-scrollbar {
    display: none;
}

.ms-cert-track {
    display: flex;
    gap: 25px;
    width: max-content;
    padding: 0 10px;
}

.ms-cert-card {
    min-width: 320px;
    max-width: 320px;
    padding: 35px 25px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.ms-cert-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--orange-gradient);
    opacity: 0.7;
}

.ms-cert-icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: var(--orange-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(255, 132, 0, 0.15);
}

.ms-cert-icon i {
    font-size: 28px;
    color: var(--text-white);
}

.ms-cert-card h3 {
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 12px;
}

.ms-cert-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.ms-cert-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--primary-orange);
}

/* PRODUCTS SECTION */
.ms-products-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--bg-darker);
    overflow: hidden;
}

.ms-products-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: var(--glow-gradient);
    top: 30%;
    right: -300px;
    pointer-events: none;
}

.ms-products-container {
    max-width: 1350px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.ms-products-header {
    text-align: center;
    margin-bottom: 80px;
}

.ms-products-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.ms-products-header h2 {
    font-size: 48px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.ms-products-header p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 17px;
    color: var(--text-muted);
}

.ms-product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 50px;
    border-radius: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

.ms-product-card.reverse {
    direction: rtl;
}

.ms-product-card.reverse .ms-product-content {
    direction: ltr;
}

.ms-product-gallery {
    width: 100%;
}

.ms-main-image {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    aspect-ratio: 1;
}

.ms-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ms-main-image:hover img {
    transform: scale(1.05);
}

.ms-thumb-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.ms-thumb-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.ms-thumb-grid img.active, .ms-thumb-grid img:hover {
    border-color: var(--primary-orange);
    opacity: 1;
}

.ms-product-content {
    display: flex;
    flex-direction: column;
}

.ms-product-mini-badge {
    align-self: flex-start;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(255, 132, 0, 0.1);
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ms-product-content h3 {
    font-size: 38px;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.ms-product-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.ms-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.ms-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 600;
}

.ms-feature-item i {
    color: var(--primary-orange);
    font-size: 16px;
}

.ms-tech-table {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.ms-tech-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.ms-tech-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.ms-tech-row:last-child {
    border-bottom: none;
}

.ms-tech-row span {
    color: var(--text-muted);
}

.ms-tech-row strong {
    color: var(--text-white);
}

.ms-buy-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    background: var(--orange-gradient);
    color: var(--text-white);
    font-weight: 700;
    box-shadow: var(--shadow-orange-btn);
}

.ms-buy-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 132, 0, 0.4);
}

/* COMPARE POWER SECTION */
.pm-compare-power {
    padding: 120px 0;
    background: var(--dark-gradient);
}

.pm-container {
    max-width: 1300px;
    width: 90%;
    margin: 0 auto;
}

.pm-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.pm-section-title span {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.pm-section-title h2 {
    font-size: 48px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.pm-section-title p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 17px;
    color: var(--text-muted);
}

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

.pm-compare-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.4s var(--transition-ease);
}

.pm-compare-card.active {
    border-color: var(--primary-orange);
    background: rgba(255, 132, 0, 0.03);
    box-shadow: 0 20px 50px rgba(255, 132, 0, 0.1);
}

.pm-compare-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--orange-gradient);
}

.pm-power-tag {
    align-self: flex-start;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 25px;
}

.pm-compare-card.active .pm-power-tag {
    background: var(--orange-gradient);
    color: var(--text-white);
}

.pm-compare-card h3 {
    font-size: 26px;
    color: var(--text-white);
    margin-bottom: 25px;
    line-height: 1.3;
}

.pm-compare-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.pm-compare-card li {
    font-size: 15px;
    color: var(--text-muted);
    padding-left: 24px;
    position: relative;
}

.pm-compare-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-orange);
    font-size: 14px;
}

.pm-card-select-btn {
    margin-top: auto;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pm-compare-card.active .pm-card-select-btn {
    background: var(--primary-orange);
    box-shadow: var(--shadow-orange-btn);
}

.pm-compare-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: var(--primary-orange);
}

/* BLOG WRAPPER & GUIDE */
.ms-blog-wrapper {
    background-color: var(--bg-dark);
}

.ms-blog-hero {
    position: relative;
    padding: 150px 0 110px;
    background: linear-gradient(rgba(5, 11, 20, 0.8), rgba(5, 11, 20, 0.95)), url('https://i0.wp.com/massturkiye.com.tr/wp-content/uploads/2023/07/2.jpg?fit=1080%2C1080&ssl=1');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.ms-blog-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 40%, var(--bg-dark) 90%);
}

.ms-blog-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--glow-gradient);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.ms-blog-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.ms-blog-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.ms-blog-hero h2 {
    font-size: 62px;
    color: var(--text-white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.ms-blog-hero p {
    max-width: 850px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

.ms-blog-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ms-blog-btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* TOC BOX */
.ms-toc-section {
    background-color: var(--bg-darker);
    padding: 80px 0;
}

.ms-toc-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ms-toc-box h2 {
    font-size: 36px;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 35px;
}

.ms-toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.ms-toc-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ms-toc-item i {
    font-size: 20px;
    color: var(--primary-orange);
}

.ms-toc-item span {
    font-size: 15px;
    font-weight: 700;
}

.ms-toc-item:hover {
    background: var(--primary-orange);
    color: var(--text-white);
    border-color: var(--primary-orange);
    transform: translateY(-4px);
}

.ms-toc-item:hover i {
    color: var(--text-white);
}

/* BLOG ARTICLES */
.ms-content-section {
    padding: 80px 0 100px;
    background-color: var(--bg-dark);
}

.ms-section {
    padding: 70px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ms-section.ms-dark {
    background: var(--dark-gradient);
}

.ms-section h2 {
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-orange);
    padding-left: 20px;
    line-height: 1.2;
}

.ms-section p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.ms-highlight {
    background: rgba(255, 132, 0, 0.06);
    border-left: 4px solid var(--primary-orange);
    padding: 24px;
    border-radius: 0 16px 16px 0;
    margin: 30px 0;
}

.ms-highlight p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--text-white);
}

.ms-image-box {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.ms-article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ms-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.ms-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.ms-card i {
    font-size: 32px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.ms-card h3 {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 12px;
}

.ms-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

.ms-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 132, 0, 0.3);
    transform: translateY(-5px);
}

.ms-top-space {
    margin-top: 30px;
}

.ms-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.ms-spec-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    border-top: 3px solid var(--primary-orange);
}

.ms-spec-box h3 {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.ms-spec-box span {
    font-size: 14px;
    color: var(--text-muted);
}

.ms-final-cta {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin-top: 40px;
}

.ms-final-cta h3 {
    font-size: 32px;
    color: var(--text-white);
    margin-bottom: 15px;
}

.ms-final-cta p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* SERVICES VALUE SECTION */
.ms-services-area {
    position: relative;
    padding: 100px 0;
    background-color: var(--bg-darker);
    overflow: hidden;
}

.ms-services-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--glow-gradient);
    bottom: -200px;
    right: -200px;
    pointer-events: none;
}

.ms-services-container {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}

.ms-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ms-service-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 35px 20px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.ms-service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 132, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.ms-service-icon i {
    font-size: 24px;
}

.ms-service-box h3 {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 12px;
    font-weight: 700;
}

.ms-service-box p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.ms-service-box:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 132, 0, 0.3);
}

.ms-service-box:hover .ms-service-icon {
    background: var(--primary-orange);
    color: var(--text-white);
    box-shadow: var(--shadow-orange-btn);
}

/* ABOUT BRAND */
.ms-about-brand {
    position: relative;
    padding: 120px 0;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.ms-about-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: var(--glow-gradient);
    top: -200px;
    left: -200px;
    pointer-events: none;
}

.ms-about-container {
    max-width: 1350px;
    width: 90%;
    margin: 0 auto;
}

.ms-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.ms-about-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.ms-about-left h2 {
    font-size: 48px;
    color: var(--text-white);
    margin-bottom: 24px;
}

.ms-about-left p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.8;
}

.ms-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.ms-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.ms-about-feature i {
    font-size: 22px;
    color: var(--primary-orange);
    margin-top: 3px;
}

.ms-about-feature div {
    display: flex;
    flex-direction: column;
}

.ms-about-feature strong {
    font-size: 15px;
    color: var(--text-white);
    margin-bottom: 5px;
}

.ms-about-feature span {
    font-size: 13px;
    color: var(--text-muted);
}

.ms-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
}

.ms-about-btn.orange {
    background: var(--orange-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-orange-btn);
}

.ms-about-btn.orange:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 132, 0, 0.4);
}

.ms-about-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ms-logo-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ms-about-logo {
    max-height: 100px;
    width: auto;
}

.ms-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ms-stat-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 24px 15px;
    border-radius: 16px;
    text-align: center;
}

.ms-stat-box h3 {
    font-size: 34px;
    color: var(--primary-orange);
    margin-bottom: 6px;
}

.ms-stat-box span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* FAQ SECTION */
.pm-faq-section {
    padding: 120px 0;
    background-color: var(--bg-darker);
}

.pm-faq-title {
    text-align: center;
    margin-bottom: 60px;
}

.pm-faq-title span {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.pm-faq-title h2 {
    font-size: 48px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.pm-faq-title p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 17px;
    color: var(--text-muted);
}

.pm-faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pm-faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pm-faq-item[open] {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 25px rgba(255, 132, 0, 0.05);
}

summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    cursor: pointer;
    user-select: none;
}

summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-icon i {
    font-size: 14px;
    color: var(--primary-orange);
}

.pm-faq-item[open] .faq-icon {
    background: var(--primary-orange);
    transform: rotate(45deg);
}

.pm-faq-item[open] .faq-icon i {
    color: var(--text-white);
}

.faq-content {
    padding: 0 30px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 15px;
}

/* FOOTER */
.pm-footer {
    background-color: #020407;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 120px;
    color: var(--text-muted);
}

.pm-footer-container {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}

.pm-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.pm-footer-col h3 {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.pm-footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-orange);
}

.pm-footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.pm-footer-logo img {
    height: 48px;
}

.pm-footer-logo h3 {
    margin-bottom: 0;
    padding-bottom: 0;
}

.pm-footer-logo h3::after {
    display: none;
}

.pm-footer-col p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.pm-social-links {
    display: flex;
    gap: 15px;
}

.pm-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.pm-social-links a:hover {
    background: var(--primary-orange);
    color: var(--text-white);
    transform: translateY(-3px);
}

.pm-footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pm-footer-col ul a {
    font-size: 15px;
}

.pm-footer-col ul a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.pm-contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.pm-contact-info i {
    color: var(--primary-orange);
}

.pm-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
}

.pm-designed {
    color: var(--primary-orange);
    font-weight: 700;
}

/* MOBILE STICKY */
.pm-mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(2, 5, 9, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    grid-template-columns: repeat(3, 1fr);
    z-index: 9999;
}

.pm-mobile-sticky a {
    padding: 16px 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.pm-mobile-sticky a:last-child {
    border-right: none;
}

.pm-mobile-sticky a i {
    font-size: 18px;
}

.pm-mobile-sticky a:nth-child(1) i {
    color: #10b981;
}

.pm-mobile-sticky a:nth-child(2) i {
    color: #3b82f6;
}

.pm-mobile-sticky a:nth-child(3) i {
    color: var(--primary-orange);
}

/* MEDIA QUERIES RESPONSIVENESS */
@media (max-width: 1200px) {
    .ms-content h1 {
        font-size: clamp(50px, 8vw, 75px);
    }
    
    .ms-product-card {
        gap: 40px;
        padding: 40px;
    }
    
    .ms-product-content h3 {
        font-size: 30px;
    }
    
    .ms-section {
        padding: 50px;
    }
    
    .ms-services-grid {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }
    
    .ms-service-box:nth-child(4), .ms-service-box:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .ms-content h1 {
        font-size: clamp(40px, 7vw, 55px);
    }
    
    .ms-product-card, .ms-product-card.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
        padding: 30px;
    }
    
    .ms-product-card.reverse .ms-product-content {
        direction: ltr;
    }
    
    .pm-compare-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .ms-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ms-image-box {
        order: -1;
    }
    
    .ms-card-grid {
        grid-template-columns: 1fr;
    }
    
    .ms-spec-grid {
        grid-template-columns: 1fr;
    }
    
    .ms-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pm-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    /* Full-bleed container spacing on mobile */
    .pm-header-container,
    .ms-cert-container,
    .ms-products-container,
    .pm-container,
    .ms-blog-container,
    .ms-services-container,
    .ms-about-container,
    .pm-footer-container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin: 0 auto;
    }

    .pm-mobile-menu-toggle {
        display: flex;
    }
    
    .pm-nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--bg-darker);
        padding: 40px 20px;
        transition: var(--transition-speed) var(--transition-ease);
        border-top: 1px solid var(--border-color);
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
    }
    
    .pm-nav.active {
        left: 0;
        visibility: visible;
        opacity: 1;
    }
    
    .pm-nav ul {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .pm-nav-link {
        font-size: 18px;
    }
    
    .pm-header-cta {
        display: none;
    }
    
    .pm-mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .pm-mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .pm-mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .pm-floating-support {
        display: none; /* Hide floating buttons on mobile to make room for sticky footer */
    }
    
    .pm-mobile-sticky {
        display: grid;
    }
    
    /* Hero Typography */
    .ms-content {
        margin-top: 60px;
        margin-bottom: 20px;
    }

    .ms-content h1 {
        font-size: clamp(34px, 9vw, 48px);
        letter-spacing: -0.5px;
        line-height: 1.15;
    }
    
    .ms-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    .ms-badge {
        font-size: 10px;
        letter-spacing: 1px;
        padding: 6px 14px;
        margin-bottom: 18px;
    }
    
    .ms-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .ms-buttons {
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .ms-cert-header h2, 
    .ms-products-header h2, 
    .pm-section-title h2, 
    .ms-about-left h2, 
    .pm-faq-title h2,
    .ms-blog-hero h2 {
        font-size: clamp(26px, 7vw, 32px);
    }

    .ms-cert-header p,
    .ms-products-header p,
    .pm-section-title p,
    .ms-about-left p,
    .pm-faq-title p,
    .ms-blog-hero p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    /* Product Cards Mobile Spacing */
    .ms-product-card {
        padding: 24px 16px;
        border-radius: 16px;
        margin-bottom: 30px;
    }

    .ms-product-content h3 {
        font-size: clamp(20px, 6vw, 24px);
    }

    .ms-product-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .ms-feature-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .ms-feature-item {
        padding: 10px 12px;
    }

    .ms-tech-table {
        margin-bottom: 20px;
    }

    .ms-tech-row {
        padding: 10px 14px;
        font-size: 13px;
    }

    .ms-buy-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    /* Articles & Blog Sections */
    .ms-section {
        padding: 24px 16px;
        border-radius: 16px;
        margin-bottom: 24px;
    }
    
    .ms-section h2 {
        font-size: clamp(22px, 6vw, 26px);
        padding-left: 12px;
        margin-bottom: 18px;
    }

    .ms-section p {
        font-size: 14px;
        line-height: 1.7;
    }

    .ms-highlight {
        padding: 16px;
        margin: 20px 0;
    }

    .ms-highlight p {
        font-size: 13px;
    }
    
    /* Toc Map */
    .ms-toc-box {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .ms-toc-box h2 {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .ms-toc-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ms-toc-item {
        padding: 16px;
    }

    .ms-toc-item span {
        font-size: 14px;
    }

    /* Compare Grid */
    .pm-compare-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .pm-compare-card h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .pm-compare-card ul {
        margin-bottom: 24px;
        gap: 10px;
    }

    .pm-compare-card li {
        font-size: 13px;
    }
    
    /* Services list */
    .ms-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ms-service-box {
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    /* About Us - Horizontal Compact Stats */
    .ms-about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .ms-stat-box {
        padding: 12px 6px;
        border-radius: 10px;
    }

    .ms-stat-box h3 {
        font-size: clamp(14px, 4.5vw, 18px);
        margin-bottom: 4px;
    }

    .ms-stat-box span {
        font-size: 9px;
        line-height: 1.1;
    }

    .ms-about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ms-logo-box {
        padding: 20px;
        border-radius: 16px;
    }

    /* FAQ Details */
    summary {
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq-icon {
        width: 26px;
        height: 26px;
    }

    .faq-icon i {
        font-size: 12px;
    }

    .faq-content {
        padding: 0 20px 16px;
    }

    .faq-content p {
        font-size: 13.5px;
        margin-top: 10px;
    }

    /* Footer */
    .pm-footer {
        padding: 50px 0 100px;
    }

    .pm-footer-grid {
        gap: 30px;
    }

    .pm-footer-col h3 {
        margin-bottom: 18px;
    }

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

    /* ABSOLUTE PREVENT HORIZONTAL SCROLL AND OVERFLOW */
    html, body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        position: relative;
    }

    /* Ensure all parent containers are strictly restricted */
    .ms-hero-slider,
    .ms-certificates,
    .ms-products-section,
    .pm-compare-power,
    .ms-blog-wrapper,
    .ms-blog-hero,
    .ms-toc-section,
    .ms-content-section,
    .ms-services-area,
    .ms-about-brand,
    .pm-faq-section,
    .pm-footer {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    /* Allow scrolling ONLY inside scrollable elements */
    .ms-cert-slider {
        overflow-x: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
}

