::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f5f6fa; border-radius: 8px; }
::-webkit-scrollbar-thumb { background: linear-gradient(135deg, #ccc, #bbb); border-radius: 8px; transition: background 0.3s ease; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(135deg, #999, #888); }
::-webkit-scrollbar-thumb:horizontal { background: linear-gradient(135deg, #eee, #ddd); }
::-webkit-scrollbar-thumb:horizontal:hover { background: linear-gradient(135deg, #999, #888); }

:root { --primary: #0f172a; --primary-hover: #1e293b; --accent-red: #D32F2F; --color-leads: #3daf57; --color-reach: #1578f5; --color-reflect: #e53935; --gradient-text: linear-gradient(135deg, #10b981 0%, #3b82f6 33%, #8b5cf6 66%, #D32F2F 100%); --text-darK: #0f172a; --text-gray: #475569; --text-light: #94a3b8; --bg-light: #ffffff; --bg-gray: #f8fafc; --bg-darK: #0f172a; --border-color: #e2e8f0; --radius: 25px; --radius-md: 12px; --radius-sm: 4px; --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05); }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-gray); background-color: var(--bg-light); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4, .mg-nav-linKs a, .badge, .btn, .mg-btn-linK, .stat-number, .team-name { font-family: 'Outfit', sans-serif; color: var(--text-darK); line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: all 0.2s ease; outline: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.mg-section-header { text-align: center; margin-bottom: 4rem; }
.mg-section-header h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.02em; }
.mg-section-header p { max-width: 600px; margin: 0 auto; font-size: 1.125rem; }
.mg-menu-toggle { display: none; background: var(--bg-gray); border: 1px solid var(--border-color); padding: 8px 12px; border-radius: 8px; cursor: pointer; color: var(--text-darK); transition: all 0.2s ease; }

@media (max-width: 768px) {
.container { padding: 0 1.25rem; }
nav { padding: 1.25rem; justify-content: space-between; align-items: center; }
.mg-nav-right { position: relative; }
.mg-menu-toggle { display: flex; }
.mg-nav-linKs { display: none; flex-direction: column; position: absolute; top: calc(100% + 10px); right: 0; width: 180px; background: var(--bg-light); border: 1px solid var(--border-color); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 0.75rem; z-index: 1000; transform-origin: top right; animation: fadeInScale 0.2s ease forwards; }
.mg-nav-linKs.active { display: flex; }
.mg-nav-linKs li { margin: 0; }
.mg-nav-linKs a { padding: 0.8rem 1rem; font-size: 0.95rem; border-radius: 6px; width: 100%; }
.mg-nav-linKs a:hover { background: var(--bg-gray); }

@keyframes fadeInScale {
from { opacity: 0; transform: scale(0.95); }
to { opacity: 1; transform: scale(1); }
}

.hero { padding-top: 7rem; }
}

.btn { display: inline-block; padding: 0.8rem 1.75rem; border-radius: var(--radius); font-weight: 600; cursor: pointer; transition: all 0.2s ease; text-align: center; border: 2px solid transparent; font-size: 1rem; letter-spacing: 0.02em; }
.mg-btn-primary { background-color: var(--primary); color: white; box-shadow: 0 4px 6px rgba(15, 23, 42, 0.2); }
.mg-btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 12px rgba(15, 23, 42, 0.3); color: white; }
.mg-btn-linK { display: inline-flex; align-items: center; font-weight: 600; color: var(--text-darK); font-size: 1.05rem; transition: color 0.3s ease; cursor: pointer; }
.mg-btn-linK span { display: inline-block; margin-left: 0.4rem; transition: transform 0.3s ease; }
.mg-btn-linK:hover { color: #616267; }
.mg-btn-linK:hover span { transform: translateX(4px); }
.badge { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; background-color: var(--bg-light); color: var(--text-darK); padding: 0.4rem 1.25rem; border-radius: 999px; font-size: 0.95rem; font-weight: 600; margin-bottom: 2.5rem; letter-spacing: 0.02em; border: 1px solid var(--border-color); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.badge:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08); }
.mg-pulse-dot { width: 8px; height: 8px; background-color: var(--accent-red); border-radius: 50%; box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.5); animation: pulse 2s infinite; }

@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.5); }
70% { box-shadow: 0 0 0 6px rgba(211, 47, 47, 0); }
100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

.icon-box { width: auto; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: flex-start; margin-bottom: 1.5rem; flex-shrink: 0; }
.icon-box img { height: 100%; object-fit: contain; opacity: 0.9; }
nav { display: flex; justify-content: space-between; align-items: center; padding: 2rem 2rem; max-width: 1200px; margin: 0 auto; position: absolute; top: 0; left: 0; right: 0; z-index: 100; }
.logo img { height: 64px; width: auto; object-fit: contain; opacity: 1; }
.logo.product-logo img { height: 50px; width: auto; object-fit: contain; opacity: 0.9; }
.mg-nav-linKs { display: flex; gap: 2.5rem; }
.mg-nav-linKs a { font-weight: 500; color: var(--text-gray); font-size: 1.15rem; }
.mg-nav-linKs a:hover, .mg-nav-linKs a.active { color: var(--text-darK); font-weight: 500; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.hero { text-align: center; padding: 9rem 2rem 5rem; position: relative; background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.08) 0%, rgba(16, 185, 129, 0.03) 40%, transparent 70%); }
.hero h1 { font-size: 4.5rem; font-weight: 700; max-width: 900px; margin: 0 auto 1.5rem; letter-spacing: -0.03em; }
.hero h1 span.gradient-text { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.25rem; max-width: 650px; margin: 0 auto 3rem; color: var(--text-gray); }
.hero-buttons { display: flex; justify-content: center; align-items: center; gap: 1.5rem; }
.about-home { padding: 6rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-home h2, .about-grid h2 { font-size: 2.5rem; margin-bottom: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.about-image { border-radius: var(--radius-md); height: 400px; object-fit: cover; width: 100%; box-shadow: var(--shadow-lg); }
.about-grid p { margin-bottom: 1.5rem; }
.about-grid p:last-of-type { margin-bottom: 2.5rem; }
.values, .products, .testimonials { padding: 6rem 0; }
.values, .testimonials { background-color: var(--bg-gray); }
.card { background-color: var(--bg-light); border-radius: var(--radius-md); border: 1px solid var(--border-color); padding: 2.5rem; transition: all 0.3s ease; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product-img { height: 200px; object-fit: cover; width: 100%; border-bottom: 1px solid var(--border-color); border-radius: var(--radius-md) var(--radius-md) 0 0; }
.product-card { padding: 0; box-shadow: var(--shadow-sm); }
.product-content { padding: 2.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.product-content h3 { font-size: 1.5rem; margin: 1rem 0 0.5rem; font-weight: 700; }
.product-subtitle { font-weight: 600; font-size: 1rem; color: var(--text-darK); margin-bottom: 1.2rem; }
.product-list, .feature-list { list-style: none; margin: 1.5rem 0; padding: 0; }
.product-list li { font-size: 0.95rem; margin-bottom: 0.6rem; position: relative; padding-left: 1.2rem; }
.product-list li::before { content: "•"; color: var(--text-gray); position: absolute; left: 0; font-weight: bold; }
.feature-list li { font-size: 1.1rem; color: var(--text-darK); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.75rem; font-weight: 500; }
.feature-list li svg { width: 22px; height: 22px; flex-shrink: 0; }
.stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.quote { font-size: 1.05rem; color: var(--text-darK); margin-bottom: 2rem; line-height: 1.6; flex-grow: 1; }
.author-wrapper { display: flex; align-items: center; gap: 1rem; border-top: 1px solid var(--border-color); padding-top: 1.5rem; }
.avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.author-info { display: flex; flex-direction: column; }
.author-title { font-size: 0.85rem; color: var(--text-gray); }
.mg-minimal-header { padding: 11rem 2rem 5rem; max-width: 900px; margin: 0 auto; text-align: center; background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.08) 0%, rgba(16, 185, 129, 0.03) 40%, transparent 70%) }
.mg-minimal-header h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: -0.03em; }
.mg-minimal-header p { font-size: 1.25rem; color: var(--text-gray); line-height: 1.6; }
.split-section { padding: 2rem 0 6rem; }
.split-section-pro { padding: 1rem 0 6rem; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 8rem; }
.split-grid-pro { gap: 3.5rem; padding-top: 4rem; margin-bottom: 6rem; }
.split-grid:last-child { margin-bottom: 0; }
.split-content h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 1.2rem; letter-spacing: -0.02em; }
.split-content p { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 1.5rem; line-height: 1.8; }
.split-content-pro h2 { font-size: 1.85rem; }
.split-content-pro h2 span { font-size: 1.63rem; }
.split-content-pro .ref-h2 { font-size: 1.73rem; }
.split-content-pro p { font-size: 1.065rem; }
.split-content-pro .feature-list li { font-size: 1rem; }
.split-image img { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); object-fit: cover; }
.product-hero-split h1 span { font-size: 2.8rem; }
.stats { padding: 4rem 0 6rem; border-bottom: 1px solid var(--border-color); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; text-align: center; }
.stat-number { font-size: 3.5rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1; }
.stat-label { font-size: 1rem; font-weight: 600; color: var(--text-gray); text-transform: uppercase; letter-spacing: 0.05em; }
.bottom-cta { text-align: center; padding: 6rem 2rem; background-color: var(--bg-gray); border-top: 1px solid var(--border-color); }
.support-search { position: relative; max-width: 600px; margin: 2rem auto 0; }
.support-search input { width: 100%; padding: 1.25rem 1.5rem 1.25rem 3.5rem; border-radius: 999px; border: 1px solid var(--border-color); font-size: 1.1rem; font-family: 'DM Sans', sans-serif; color: var(--text-darK); box-shadow: var(--shadow-sm); transition: all 0.2s ease; }
.support-search input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.08); }
.support-search svg { position: absolute; left: 1.25rem; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; fill: var(--text-gray); }
.faq-linK { transition: color 0.2s ease; }
.faq-linK:hover { color: #3b82f6; }
footer { background-color: var(--bg-darK); color: var(--text-light); padding: 5rem 0 2rem; }
.mg-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo img { height: 54px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.9; }
footer h4 { color: white; margin-bottom: 1.2rem; font-size: 1.1rem; font-weight: 600; }
footer ul li { margin-bottom: 0.8rem; }
footer ul li a { font-size: 0.95rem; }
footer ul li a:hover { color: white; }
.mg-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
.mg-legal-linKs { font-size: 0.75rem; opacity: 0.4; }
.mg-legal-linKs a { margin-right: 0.5rem; }
.mg-legal-linKs a:hover { opacity: 1; }
.mg-social-icons { display: flex; gap: 1.5rem; }
.mg-social-icons a { color: var(--text-light); display: flex; align-items: center; justify-content: center; width: auto; height: auto; background-color: transparent; transition: transform 0.2s ease, color 0.2s ease; opacity: 0.8; }
.mg-social-icons a:hover { color: white; }
.mg-social-icons svg { width: 20px; height: 20px; fill: currentColor; }

@media (min-width: 769px) {
.split-grid.reverse .split-content { order: 2; }
.split-grid.reverse .split-image { order: 1; }
}

@media (max-width: 768px) {
.container { padding: 0 1.25rem; }
nav { padding: 1.25rem; }
.mg-nav-linKs { display: none; gap: 1rem; }
.hero { padding-top: 7rem; padding-bottom: 4rem; }
.hero h1 { font-size: 2.75rem; line-height: 1.1; }
.hero p { font-size: 1.1rem; }
.hero-buttons { flex-direction: column; gap: 1rem; width: 100%; }
.hero-buttons .btn { width: 100%; }
.mg-minimal-header { padding: 7rem 1.25rem 3rem; }
.mg-minimal-header h1 { font-size: 2.25rem; }
.grid-3 { grid-template-columns: 1fr; gap: 1.5rem; }
.about-grid, .split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
.split-grid { margin-bottom: 4rem; }
.about-image { height: 250px; order: -1; }
.split-grid.reverse .split-content,
.split-grid.reverse .split-image { order: initial; }
.mg-footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
.mg-footer-bottom { flex-direction: column-reverse; gap: 1.5rem; text-align: left; align-items: flex-start; }
.mg-contact-section { grid-template-columns: 1fr; gap: 3rem; }
.form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
.contact-form-card { padding: 2rem; }
.product-hero-split { padding-top: 8rem; overflow: hidden; }
.product-hero-split h1 { font-size: 2.5rem; }
.product-hero-split p { font-size: 1.1rem; }
.hero-dashboard-img { width: 100%; }
.step-card { margin-top: 2rem; padding: 2.5rem 2rem 2rem; }
.step-number { left: 2rem; }
.pricing-trust-footer { grid-template-columns: 1fr; gap: 2rem; }
.trust-grid { grid-template-columns: 1fr; gap: 1.5rem; }
.pricing-grid { grid-template-columns: 1fr; gap: 3rem; }
.pricing-card.popular { margin-top: 1rem; }
}

.mg-contact-section { padding: 0 2rem 8rem; max-width: 1000px; margin: 0 auto; }
.mg-contact-wide-card { background: var(--bg-light); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 3rem; margin-bottom: 2rem; display: flex; align-items: center; gap: 3rem; transition: border-color 0.3s ease; }
.mg-contact-wide-card:hover { border-color: var(--primary); }
.contact-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.contact-card { background: var(--bg-light); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center; transition: transform 0.3s ease, border-color 0.3s ease; }
.contact-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.contact-icon { width: 48px; height: 48px; fill: var(--primary); margin-bottom: 1rem; }
.contact-card h3 { font-size: 1.3rem; margin-bottom: 1rem; font-weight: 700; }
.contact-card p { font-size: 0.95rem; color: var(--text-gray); margin-bottom: 1.5rem; line-height: 1.6; }
.contact-linK { font-weight: 600; color: var(--primary); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; }
.contact-linK:hover { text-decoration: underline; }
.social-linKs-wrap { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1rem; }
.social-icon-linK svg { width: 24px; height: 24px; fill: var(--text-darK); transition: fill 0.2s; }
.social-icon-linK:hover svg { fill: var(--primary); }

@media (max-width: 850px) {
.mg-contact-wide-card { flex-direction: column; text-align: center; padding: 2rem; }
}

.product-hero-split { padding: 11rem 0 6rem; background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-light) 100%); border-bottom: 1px solid var(--border-color); overflow: hidden; }
.product-hero-split .split-grid { margin-bottom: 0; align-items: center; }
.product-hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1.25rem; border-radius: 999px; font-size: 0.9rem; font-weight: 700; margin-bottom: 1.5rem; font-family: 'Outfit', sans-serif; }
.product-hero-logo { height: 45px; width: auto; margin-bottom: 1.5rem; display: block; }
.badge-leads { color: var(--color-leads); background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); }
.badge-reach { color: var(--color-reach); background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); }
.badge-reflect { color: var(--color-reflect); background: rgba(229, 57, 53, 0.1); border: 1px solid rgba(229, 57, 53, 0.2); }
.product-hero-split h1 { font-size: 3.2rem; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: -0.03em; line-height: 1.1; }
.product-hero-split p { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 2.5rem; line-height: 1.6; }
.hero-dashboard-img { width: 130%; max-width: none; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--border-color); }
.steps-section { padding: 6rem 0; background-color: var(--bg-gray); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.step-card { padding: 3rem 2.5rem 2.5rem; background: var(--bg-light); border-radius: var(--radius-md); border: 1px solid var(--border-color); position: relative; box-shadow: var(--shadow-sm); transition: transform 0.3s ease; }
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-number { position: absolute; top: -20px; left: 2.5rem; width: 44px; height: 44px; color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; border-radius: 50%; font-family: 'Outfit', sans-serif; font-size: 1.25rem; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.step-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.pricing-trust-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 900px; margin: 4rem auto 0; padding-top: 3rem; border-top: 1px solid var(--border-color); }
.trust-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.trust-item svg { width: 32px; height: 32px; flex-shrink: 0; }
.trust-item h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--text-darK); }
.trust-item p { font-size: 0.95rem; color: var(--text-gray); margin: 0; line-height: 1.6; }
.pricing-section { padding: 6rem 0; background-color: var(--bg-light); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1140px; margin: 0 auto; }
.pricing-card { border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 2rem 2rem 2.5rem 2rem; background: var(--bg-light); display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.popular.pricing-leads { border-color: var(--color-leads); box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.2); }
.pricing-card.popular.pricing-reach { border-color: var(--color-reach); box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.2); }
.pricing-card.popular.pricing-reflect { border-color: var(--color-reflect); box-shadow: 0 10px 30px -10px rgba(229, 57, 53, 0.2); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); color: white; padding: 0.3rem 1.2rem; border-radius: 999px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-name { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.pricing-price { font-size: 3rem; font-weight: 700; color: var(--text-darK); margin-bottom: 1rem; font-family: 'Outfit', sans-serif; line-height: 1; }
.pricing-price span { font-size: 1.1rem; color: var(--text-gray); font-weight: 400; }
.pricing-desc { color: var(--text-gray); font-size: 1rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border-color); }
.pricing-features { list-style: none; padding: 0; margin-bottom: 1.5rem; flex-grow: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.95rem; color: var(--text-darK); }
.pricing-features svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 0.1rem; }
.icon-box.light-reach { background-color: rgba(59, 130, 246, 0.1); color: var(--color-reach); font-size: 1.5rem; }
.icon-box.light-leads { background-color: rgba(16, 185, 129, 0.1); color: var(--color-leads); font-size: 1.5rem; }
.icon-box.light-reflect { background-color: rgba(229, 57, 53, 0.1); color: var(--color-reflect); font-size: 1.5rem; }
.support-article-list { max-width: 800px; margin: 0 auto; list-style: none; padding: 0; }
.support-article-item { border-bottom: 1px solid var(--border-color); }
.support-article-linK { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; font-size: 1.15rem; font-weight: 600; color: var(--text-darK); transition: color 0.2s ease; }
.support-article-linK:hover { color: #3b82f6; }
.support-article-linK svg { width: 20px; height: 20px; fill: currentColor; transition: transform 0.2s ease; }
.support-article-linK:hover svg { transform: translateX(4px); }
.text-leads { color: var(--color-leads) !important; }
.text-reach { color: var(--color-reach) !important; }
.text-reflect { color: var(--color-reflect) !important; }
.text-gray { color: var(--text-gray) !important; }
.text-darK { color: var(--text-darK) !important; }
.text-light { color: var(--text-light) !important; }
.text-primary { color: var(--primary) !important; }
.text-underline { text-decoration: underline !important; }
.text-center { text-align: center !important; }
.fw-600 { font-weight: 600 !important; }
.fs-2xl { font-size: 2.5rem !important; }
.fs-lg { font-size: 1.2rem !important; }
.fs-sm { font-size: 0.85rem !important; }
.fill-lead { fill: var(--color-leads) !important; }
.fill-reach { fill: var(--color-reach) !important; }
.fill-reflect { fill: var(--color-reflect) !important; }
.fill-primary { fill: var(--primary) !important; }
.bg-lead { background-color: var(--color-leads) !important; }
.bg-reach { background-color: var(--color-reach) !important; }
.bg-reflect { background-color: var(--color-reflect) !important; }
.bg-transparent { background-color: transparent !important; }
.bg-white { background-color: var(--bg-light) !important; }
.bg-gray-section { background-color: var(--bg-gray); border-radius: var(--radius); }
.border-none { border: none !important; }
.border-top-none { border-top: none !important; }
.shadow-none { box-shadow: none !important; }
.w-100 { width: 100% !important; }
.justify-start { justify-content: flex-start !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 1rem !important; }
.mb-1-5 { margin-bottom: 1.5rem !important; }
.mb-2 { margin-bottom: 2rem !important; }
.mb-6 { margin-bottom: 6rem !important; }
.pb-0 { padding-bottom: 0 !important; }
.pb-2 { padding-bottom: 2rem !important; }
.pb-3 { padding-bottom: 3rem !important; }
.pt-0 { padding-top: 0 !important; }
.pt-6 { padding-top: 6rem !important; }
.py-4 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.py-5 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.py-6 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
.mt-auto { margin-top: auto !important; }
.btn-full { width: 100%; display: block; text-align: center; }
.btn-outline { border: 1px solid var(--border-color); background: transparent; color: var(--text-darK); }
.btn-outline:hover { background: var(--bg-gray); }
.form-select { appearance: none; background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23475569%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; background-position: right 1rem top 50%; background-size: 0.65rem auto; }
.faq-container { max-width: 800px; margin: 0 auto 6rem; padding: 0 2rem; }
.faq-category { font-size: 1.75rem; font-weight: 700; margin: 4rem 0 0rem; color: var(--text-darK); padding-bottom: 2rem; border-bottom: 1px solid var(--border-color); }
.faq-details { border-bottom: 1px solid var(--border-color); }
.faq-summary { list-style: none; padding: 1.5rem 0; font-size: 1.15rem; font-weight: 600; color: var(--text-darK); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.2s ease; }
.faq-summary::-webkit-details-marker { display: none; }
.faq-icon { width: 24px; height: 24px; transition: transform 0.3s ease; fill: currentColor; flex-shrink: 0; margin-left: 1rem; }
details[open] .faq-icon { transform: rotate(180deg); }
.faq-content { padding-bottom: 1.5rem; color: var(--text-gray); line-height: 1.7; font-size: 1.05rem; padding-right: 2rem; }
.mg-narrative-container { max-width: 940px; margin: 0 auto; text-align: left; }
.mg-narrative-container strong { color: var(--text-darK); font-weight: 700; }
.mg-narrative-container em { font-style: normal; color: var(--primary); font-weight: 600; }
.pricing-price-free, .pricing-price-usd, .pricing-price-inr { display: none; }
.mg-minimal-header-blog { max-width: 980px; }

@media (max-width: 768px) {
.btn { width: 100%; }
.mg-nav-linKs.active { gap: 0.65rem; }
.index-container { padding-top: 0rem !important; padding-bottom: 0rem !important; }
.op-container { padding-top: 3rem !important; padding-bottom: 3rem !important; margin-bottom: 0rem !important; }
.ww-container { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.wv-container { padding-top: 1rem; }
.values, .products, .testimonials { padding: 3rem 0; }
footer { padding: 2rem 0 2rem; }
.bottom-cta { padding: 2.5rem 0.5rem 3rem 0.5rem; }
.product-content, .testimonials .card { padding: 2rem; }
.split-grid { display: flex; flex-direction: column-reverse; margin-bottom: 3rem; }
.mg-minimal-header { padding: 6rem 1.25rem 2rem; }
#reflect .split-content, .mg-section-header { margin-bottom: 3rem; }
.pricing-card { padding: 2rem 1.7rem; }
.product-hero-split { padding: 6rem 0 3rem; }
#features { padding-top: 3rem !important; }
#features .split-grid { margin-bottom: 2rem; }
.steps-section, .pricing-section { padding: 3rem 0; }
.step-card { padding: 2.5rem 2rem 2rem; }
.pricing-card.popular { margin-top: 0rem; }
.pricing-trust-footer { display: inline-block; margin: 3rem auto 0; }
.pricing-trust-footer .trust-item:first-child { padding-bottom: 2rem; }
.power-features { padding-top: 0rem !important; padding-bottom: 3rem !important; }
.power-features .mg-section-header { margin-bottom: 0rem; }
.power-features .card { padding: 2rem; }
.mg-contact-section { padding: 0 2rem 3.5rem; }
.faq-container { margin: 0 auto 3rem; }
.faq-category { margin: 1.5rem 0 0.5rem; }
.avg-r-time { margin-top: 3rem !important; }
.logo img { height: 54px; }
.badge { padding: 0.4rem 0.6rem; }
.mg-nav-linKs a { font-size: 0.95rem; }
.split-grid-pro { padding-top: 1rem; }
.fs-2xl { font-size: 2rem !important; }
.product-hero-split h1 { font-size: 2.75rem;  }
.about-home h2, .about-grid h2 { font-size: 2rem;  }
.mg-section-header h2 { font-size: 2rem;  }
.pricing-price { font-size: 2.5rem;  }
.product-hero-split h1 span { font-size: 2.35rem; }
}
