/*
Theme Name: Max M Publicidade
Theme URI: https://maxmpublicidade.com.br
Author: Max M Publicidade
Author URI: https://maxmpublicidade.com.br
Description: Tema institucional da Max M Publicidade. Totalmente responsivo, com instalador automático que importa todo o conteúdo na ativação e deixa todas as seções editáveis pelo Customizer e CPTs.
Version: 1.4.2
Requires at least: 6.0
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: maxm
Tags: business, dark, responsive, customizer, one-page
*/

:root {
    --bg: #0a0a0b;
    --bg-card: #111113;
    --bg-card-hover: #18181b;
    --border: #222225;
    --border-hover: #333338;
    --text: #fafaf9;
    --text-muted: #8a8a8e;
    --text-dim: #5a5a5e;
    --accent: #3ecf8e;
    --accent-dim: rgba(62, 207, 142, 0.10);
    --radius: 16px;
    --radius-sm: 10px;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 320px;
}

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

/* Noise overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ============ NAV ============ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 18px 0;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, padding 0.3s;
}
.site-nav.scrolled { border-bottom-color: var(--border); padding: 14px 0; }

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}
.logo span { color: var(--accent); }

.maxm-logo-img,
.custom-logo {
    height: 36px;
    width: auto;
    max-width: 200px;
    display: block;
}
.maxm-logo-wrap { display: inline-flex; align-items: center; }
.maxm-logo-wrap a { display: inline-flex; }
.site-footer .maxm-logo-img,
.site-footer .custom-logo { height: 32px; }

/* ============ LANGUAGE SWITCHER ============ */
.nav-lang { list-style: none; margin-left: 8px; padding-left: 8px; border-left: 1px solid var(--border); }
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
}
.lang-switch-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 100px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.lang-switch-item:hover { color: var(--text-muted); }
.lang-switch-item.is-active {
    color: var(--text);
    background: var(--bg-card-hover);
}
.lang-flag { font-size: 0.9rem; line-height: 1; }

@media (max-width: 768px) {
    .nav-lang { margin-left: 0; padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding: 14px 24px !important; }
    .nav-lang a { padding: 6px 10px !important; }
    .lang-switch { width: 100%; justify-content: center; }
    .lang-switch-item { flex: 1; justify-content: center; padding: 10px 12px; font-size: 0.8rem; }
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    cursor: pointer;
    padding: 8px 10px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
}
.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    position: relative;
    transition: background 0.2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--text);
    transition: transform 0.25s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 32px 80px;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(600px, 90vw);
    height: min(600px, 90vw);
    background: radial-gradient(ellipse at center, var(--accent-dim) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { max-width: 800px; position: relative; width: 100%; }
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.hero-tag .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.hero h1 {
    font-size: clamp(2.2rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p {
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--text);
    color: var(--bg);
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(62, 207, 142, 0.15); }
.hero-cta svg { width: 16px; height: 16px; }

/* ============ SECTIONS ============ */
section { padding: 100px 32px; }
.container { max-width: var(--container); margin: 0 auto; }
.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 500;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.15;
}
.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 56px;
}

/* ============ ABOUT ============ */
#sobre { border-top: 1px solid var(--border); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.about-text p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 20px; }
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 8px;
}
.stat-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.3s;
}
.stat-card:hover { border-color: var(--border-hover); }
.stat-number { font-size: 2.2rem; color: var(--accent); margin-bottom: 4px; }
.stat-label { font-size: 0.85rem; color: var(--text-dim); }

/* ============ PRODUCTS ============ */
#produtos { border-top: 1px solid var(--border); }
.products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.product-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}
.product-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}
.product-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 200px; height: 200px;
    background: radial-gradient(circle at top right, var(--accent-dim), transparent 70%);
    pointer-events: none;
}
.product-icon { height: 48px; max-width: 200px; border-radius: var(--radius-sm); margin-bottom: 24px; overflow: hidden; }
.product-icon img { height: 48px; width: auto; }
.product-card h3 { font-size: 1.5rem; font-weight: 400; margin-bottom: 12px; letter-spacing: -0.01em; }
.product-card p { color: var(--text-muted); font-size: 0.925rem; line-height: 1.7; margin-bottom: 24px; }
.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
}
.product-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.product-card:hover .product-link svg { transform: translateX(4px); }

/* ============ SERVICES ============ */
#servicos { border-top: 1px solid var(--border); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.3s;
}
.service-card:hover { border-color: var(--border-hover); }
.service-card h4 { font-size: 1rem; font-weight: 500; margin-bottom: 10px; }
.service-card p { color: var(--text-dim); font-size: 0.875rem; line-height: 1.7; }
.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, border-color 0.3s, background 0.3s;
}
.service-card-link:hover {
    transform: translateY(-2px);
    background: var(--bg-card-hover);
}
.service-card-cta {
    display: inline-block;
    margin-top: 14px;
    color: var(--accent);
    font-size: 0.825rem;
    font-weight: 500;
    transition: transform 0.2s;
}
.service-card-link:hover .service-card-cta { transform: translateX(2px); }

/* ============ CONTACT ============ */
#contato { border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info h3 { font-size: 1.8rem; font-weight: 400; margin-bottom: 20px; }
.contact-info > p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 32px; }
.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
    word-break: break-word;
}
.contact-detail svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.contact-detail a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.contact-detail a:hover { color: var(--text); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
    width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
    padding: 14px 28px;
    background: var(--text);
    color: var(--bg);
    border: none;
    border-radius: 100px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    align-self: flex-start;
    margin-top: 8px;
}
.btn-submit:hover { transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form-success {
    display: none;
    padding: 16px;
    background: rgba(62, 207, 142, 0.1);
    border: 1px solid rgba(62, 207, 142, 0.2);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-size: 0.9rem;
}
.form-success.is-visible { display: block; }

/* ============ FOOTER ============ */
.site-footer { border-top: 1px solid var(--border); padding: 48px 32px; }
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-left p { color: var(--text-dim); font-size: 0.8rem; margin-top: 8px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-muted); }

/* ============ LEGAL PAGES ============ */
.legal-nav { padding: 20px 0; border-bottom: 1px solid var(--border); }
.legal-nav .nav-inner { max-width: 900px; }
.legal-main { max-width: 800px; margin: 0 auto; padding: 80px 32px; }
.legal-main h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 400; margin-bottom: 8px; letter-spacing: -0.02em; }
.legal-main .updated { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 48px; }
.legal-main h2 { font-size: 1.1rem; font-weight: 600; margin-top: 40px; margin-bottom: 12px; }
.legal-main p, .legal-main li { color: var(--text-muted); font-size: 0.925rem; line-height: 1.8; margin-bottom: 12px; }
.legal-main ul { padding-left: 20px; margin-bottom: 16px; }
.legal-main a { color: var(--accent); }
.legal-main strong { color: var(--text); }
.back { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; }
.back:hover { color: var(--text); }
.legal-footer { border-top: 1px solid var(--border); padding: 32px; text-align: center; color: var(--text-dim); font-size: 0.8rem; margin-top: 80px; }
.legal-footer a { color: var(--text-dim); }

/* Suporte */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 48px; }
.support-card { padding: 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.support-card h3 { font-size: 1rem; font-weight: 500; margin-bottom: 8px; }
.support-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-top: 4px; }
.support-card a { color: var(--accent); text-decoration: none; }
.support-card a:hover { text-decoration: underline; }
.faq { margin-top: 48px; }
.faq h2 { font-size: 1.6rem; font-weight: 400; margin-bottom: 24px; }
.faq-item { padding: 24px 0; border-bottom: 1px solid var(--border); }
.faq-item h4 { font-size: 0.95rem; font-weight: 500; margin-bottom: 8px; }
.faq-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ============ ANIMATIONS ============ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .nav-inner { padding: 0 24px; }
    section { padding: 80px 24px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contact-grid { gap: 48px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: inline-flex; }
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(10, 10, 11, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 8px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .nav-links.is-open { max-height: 80vh; }
    .nav-links li { border-bottom: 1px solid var(--border); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a { display: block; padding: 18px 24px; font-size: 1rem; color: var(--text); }

    .hero { padding: 110px 22px 60px; min-height: auto; }
    .hero-tag { margin-bottom: 28px; }
    .hero p { margin-bottom: 36px; }

    section { padding: 64px 22px; }
    .about-grid, .contact-grid, .products-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .services-grid, .support-grid { grid-template-columns: 1fr; gap: 16px; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
    .stat-card { padding: 22px; }
    .product-card { padding: 32px 28px; }
    .form-row { grid-template-columns: 1fr; }
    .btn-submit { width: 100%; align-self: stretch; text-align: center; }

    .footer-inner { flex-direction: column; text-align: center; }
    .legal-main { padding: 56px 22px; }
}

@media (max-width: 480px) {
    .nav-inner { padding: 0 18px; }
    .logo { font-size: 1.35rem; }
    .hero { padding: 100px 18px 48px; }
    .hero-tag { font-size: 0.7rem; padding: 6px 14px; }
    section { padding: 56px 18px; }
    .product-card { padding: 28px 22px; }
    .stat-card { padding: 20px; }
    .stat-number { font-size: 1.9rem; }
    .about-stats { grid-template-columns: 1fr; }
    .site-footer { padding: 36px 22px; }
}

/* Admin bar */
.admin-bar .site-nav { top: 32px; }
@media (max-width: 782px) {
    .admin-bar .site-nav { top: 46px; }
    .admin-bar .nav-links { top: 116px; }
}

/* ============ LANDING PAGES (single-maxm_servico) ============ */
.lp-breadcrumb {
    padding: 88px 32px 0;
    font-size: 0.85rem;
    color: var(--text-dim);
}
.lp-breadcrumb .container { max-width: var(--container); margin: 0 auto; }
.lp-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.lp-breadcrumb a:hover { color: var(--text); }
.lp-breadcrumb .sep { margin: 0 8px; color: var(--text-dim); }
.lp-breadcrumb .current { color: var(--text); }

.lp-hero {
    padding: 60px 32px 80px;
    text-align: center;
    position: relative;
}
.lp-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: min(700px, 90vw);
    height: min(500px, 70vw);
    background: radial-gradient(ellipse at center, var(--accent-dim) 0%, transparent 70%);
    pointer-events: none;
}
.lp-hero .container { max-width: 800px; margin: 0 auto; position: relative; }
.lp-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.lp-hero-tag .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.lp-hero-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.lp-hero-title em { font-style: italic; color: var(--accent); }
.lp-hero-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 40px;
}

.lp-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--text);
    color: var(--bg);
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}
.lp-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(62, 207, 142, 0.15); }
.lp-cta-primary svg { width: 16px; height: 16px; }
.lp-cta-large { padding: 16px 32px; font-size: 0.95rem; }

.lp-section { padding: 80px 32px; }
.lp-section-alt { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.lp-section .container { max-width: var(--container); margin: 0 auto; }
.lp-container-narrow { max-width: 760px !important; }

.lp-bullets {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.lp-bullets li {
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: border-color 0.3s;
}
.lp-section-alt .lp-bullets li { background: var(--bg); }
.lp-bullets li:hover { border-color: var(--border-hover); }

.lp-steps {
    list-style: none;
    counter-reset: step;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}
.lp-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    align-items: start;
    padding: 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.lp-step-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid rgba(62, 207, 142, 0.2);
    border-radius: 50%;
    font-weight: 600;
    font-size: 1rem;
}
.lp-step-body h3 {
    font-size: 1.15rem;
    font-weight: 500;
    margin: 4px 0 8px;
    color: var(--text);
}
.lp-step-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.lp-deliverables {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.lp-deliverables li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    align-items: start;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}
.lp-section-alt .lp-deliverables li { background: var(--bg); }
.lp-check { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.lp-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.lp-case {
    padding: 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.lp-case-metric {
    font-size: 1.6rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.lp-case p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

.lp-faq {
    margin-top: 24px;
    border-top: 1px solid var(--border);
}
.lp-faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.lp-faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-right: 36px;
    position: relative;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: transform 0.2s, color 0.2s;
}
.lp-faq-item[open] summary::after { content: '−'; color: var(--accent); border-color: var(--accent); }
.lp-faq-item h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    margin: 0;
}
.lp-faq-item p {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.lp-cta-section { padding: 100px 32px; text-align: center; background: var(--bg-card); border-top: 1px solid var(--border); }
.lp-cta-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; letter-spacing: -0.02em; margin-bottom: 16px; }
.lp-cta-description { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; max-width: 520px; margin: 0 auto 32px; }

.lp-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 24px; }
.lp-related-card {
    display: block;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}
.lp-related-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateY(-2px); }
.lp-related-card h3 { font-size: 1.15rem; font-weight: 500; margin-bottom: 8px; color: var(--text); }
.lp-related-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.lp-related-link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-size: 0.85rem; font-weight: 500; }
.lp-related-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.lp-related-card:hover .lp-related-link svg { transform: translateX(4px); }

@media (max-width: 768px) {
    .lp-breadcrumb { padding: 80px 22px 0; font-size: 0.78rem; }
    .lp-hero { padding: 48px 22px 60px; }
    .lp-section { padding: 56px 22px; }
    .lp-step { padding: 22px; grid-template-columns: 44px 1fr; gap: 16px; }
    .lp-cta-section { padding: 64px 22px; }
}
