/**
 * service_detail.css
 * Styles for the service detail page template.
 * NOTE: --page-accent and --page-accent-rgb CSS variables are injected
 * dynamically via a <style> block in the PHP view, which is intentional.
 */

.hero-form-input {
                        background: rgba(255,255,255,0.03) !important;
                        border: 2px solid rgba(255,255,255,0.1) !important;
                        border-radius: 12px !important;
                        padding: 10px 16px !important;
                        font-size: 14px !important;
                        color: #fff !important;
                        transition: all 0.3s ease;
                    }
                    .hero-form-input:focus {
                        background: rgba(255,255,255,0.08) !important;
                        border-color: var(--page-accent) !important;
                        box-shadow: none !important;
                    }
                    .hero-form-input::placeholder {
                        color: rgba(255,255,255,0.4) !important;
                    }
                    .form-social-icons a {
                        color: rgba(255,255,255,0.5);
                        transition: all 0.3s;
                    }
                    .form-social-icons a:hover {
                        color: var(--page-accent);
                        transform: translateY(-2px);
                    }

/* ---- next block ---- */

.case-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 15px 15px 0px var(--page-accent);
    border-color: var(--page-accent) !important;
}
.border-accent-dynamic { border-color: var(--page-accent) !important; border-width: 3px !important; }

/* ---- next block ---- */

.floating-sub-nav {
    transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}
.sub-nav-link {
    transition: all 0.3s;
    font-size: 10px;
    position: relative;
    padding-bottom: 4px;
}
.sub-nav-link:hover, .sub-nav-link.active {
    opacity: 1 !important;
    color: var(--page-accent) !important;
    text-shadow: 0 0 10px rgba(var(--page-accent-rgb), 0.5);
}
.sub-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 15px;
    height: 2px;
    background: var(--page-accent);
    transition: transform 0.3s ease;
    border-radius: 2px;
}
.sub-nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}
.floating-sub-nav.scrolled-up {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(-50%) translateY(40px) !important;
}
.btn-quote-pill:hover {
    background: #fff !important;
    color: #000 !important;
}

/* Custom Responsive Floating Sub-Navigation for Mobile & Tablet */
@media (max-width: 991px) {
    .floating-sub-nav {
        width: 92% !important;
        max-width: 480px !important;
        bottom: 15px !important; /* Positioned slightly higher on mobile for thumb comfort */
    }
    .nav-pill-wrapper {
        padding: 4px !important;
        width: 100% !important;
        justify-content: space-between !important;
    }
    .nav-links {
        overflow-x: auto !important;
        white-space: nowrap !important;
        gap: 16px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
        -webkit-overflow-scrolling: touch !important;
        flex-grow: 1 !important;
        scrollbar-width: none !important; /* Firefox */
    }
    .nav-links::-webkit-scrollbar {
        display: none !important; /* Chrome, Safari, Opera */
    }
    .sub-nav-link {
        font-size: 8.5px !important;
        padding-bottom: 2px !important;
    }
    .btn-quote-pill {
        font-size: 8.5px !important;
        padding: 6px 14px !important;
        flex-shrink: 0 !important;
    }
}

/* ---- next block ---- */

/* ===== STRATEGY CHECKLIST CARD ===== */
.sc-card { background:#fff; border:2.5px solid #111; border-radius:24px; box-shadow:8px 8px 0px #111; overflow:hidden; }
.sc-card-header { background:var(--page-accent); padding:20px 24px; }
.sc-tag-pill { display:inline-block; background:rgba(255,255,255,0.18); color:#fff; font-size:10px; font-weight:900; letter-spacing:1.5px; text-transform:uppercase; padding:4px 12px; border-radius:100px; margin-bottom:6px; }
.sc-card-header h4 { color:#fff !important; margin:0 !important; }
.sc-card-body { padding:4px 0; }
.sc-item { display:flex; align-items:flex-start; gap:16px; padding:16px 24px; border-bottom:1px solid rgba(0,0,0,0.06); transition:background 0.2s; }
.sc-item:hover { background:#fafafa; }
.sc-item-last { border-bottom:none; }
.sc-badge { min-width:36px; height:36px; background:var(--page-accent); color:#fff; font-weight:900; font-size:13px; border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; }
.sc-item-label { font-weight:900; color:#111; font-size:0.92rem; margin-bottom:3px; }
.sc-item-desc { font-size:0.82rem; color:#6b7280; line-height:1.5; }

/* ===== PERFORMANCE STATS CARD ===== */
.perf-card { background:#fff; border:2.5px solid #111; border-radius:24px; box-shadow:8px 8px 0px #111; padding:28px; }
.perf-card-title { font-family: 'Avenir', 'Avenir Next', 'Montserrat', sans-serif; font-weight: 500; font-size: 1rem; color:#111; text-transform:uppercase; letter-spacing:1px; margin-bottom:20px; padding-bottom:14px; border-bottom:2px solid rgba(0,0,0,0.07); }
.perf-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.perf-stat { background:#f8f9fa; border:1.5px solid rgba(0,0,0,0.07); border-radius:16px; padding:18px 16px; text-align:center; transition:all 0.3s; }
.perf-stat:hover { background:#fff; border-color:var(--page-accent); transform:translateY(-3px); box-shadow:0 8px 20px rgba(0,0,0,0.08); }
.perf-icon { font-size:1.6rem; color:var(--page-accent); margin-bottom:8px; }
.perf-val { font-family: 'Avenir', 'Avenir Next', 'Montserrat', sans-serif; font-weight: 500; font-size: 1.5rem; color:#111; line-height:1; margin-bottom:4px; }
.perf-label { font-size:0.75rem; font-weight:700; color:#6b7280; text-transform:uppercase; letter-spacing:0.5px; }

/* ===== FORTRESS STACK CARD ===== */
.fortress-card { position:relative; background:linear-gradient(145deg,#0d0d0d 0%,#1a1a2e 100%); border-radius:28px; padding:36px 32px; overflow:hidden; box-shadow:12px 12px 0px var(--page-accent); border:2px solid rgba(255,255,255,0.05); }
.fortress-glow { position:absolute; top:-60px; right:-60px; width:220px; height:220px; background:var(--page-accent); filter:blur(80px); opacity:0.18; border-radius:50%; pointer-events:none; }
.fortress-header { display:flex; align-items:center; gap:18px; margin-bottom:18px; }
.fortress-shield-icon { width:56px; height:56px; background:var(--page-accent); border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:1.6rem; color:#fff; flex-shrink:0; box-shadow:0 8px 20px rgba(0,0,0,0.3); }
.fortress-tag { font-size:10px; font-weight:900; letter-spacing:2px; text-transform:uppercase; color:var(--page-accent); margin-bottom:4px; }
.fortress-title { font-family: 'Avenir', 'Avenir Next', 'Montserrat', sans-serif; font-weight: 500; font-size: 1.65rem; color:#fff !important; margin:0 !important; margin-top:0 !important; margin-bottom:0 !important; }
.fortress-desc { color:rgba(255,255,255,0.72); font-size:0.92rem; line-height:1.7; margin-bottom:24px; padding-bottom:20px; border-bottom:1px solid rgba(255,255,255,0.08); }
.fortress-desc strong { color:#fff; }
.fortress-rows { display:flex; flex-direction:column; }
.fortress-row { display:flex; align-items:flex-start; gap:16px; padding:14px 0; border-bottom:1px solid rgba(255,255,255,0.06); transition:all 0.2s; }
.fortress-row:hover { padding-left:6px; }
.fortress-row-last { border-bottom:none; }
.fortress-row-icon { width:34px; height:34px; background:rgba(39,201,63,0.15); border:1px solid rgba(39,201,63,0.3); border-radius:10px; display:flex; align-items:center; justify-content:center; color:#27c93f; font-size:1rem; flex-shrink:0; }
.fortress-row-label { font-weight:900; font-size:0.9rem; color:#fff; margin-bottom:3px; }
.fortress-row-desc { font-size:0.8rem; color:rgba(255,255,255,0.65); line-height:1.5; }

/* ---- next block ---- */

.authority-content-wrapper h2, .authority-content-wrapper h3, .authority-content-wrapper h4 {
    font-family: 'Avenir', 'Avenir Next', 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}
.authority-content-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}
.authority-pillar-card {
    background: #fff;
    border: 3px solid var(--text-dark);
    box-shadow: 10px 10px 0px var(--text-dark);
    border-radius: 30px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s;
}
.authority-pillar-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px var(--page-accent);
}
.p-faq-item {
    background: #fff;
    border: 3px solid #111;
    border-radius: 20px;
    box-shadow: 8px 8px 0px #111;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.p-faq-item:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0px var(--page-accent);
    border-color: var(--page-accent);
}
.p-faq-item:has(.p-faq-btn:not(.collapsed)) {
    box-shadow: 11px 11px 0px var(--page-accent);
    border-color: var(--page-accent);
}

.p-faq-btn {
    background: transparent;
    border: none;
    padding: 24px 30px;
    color: #111;
    transition: all 0.3s;
}
.p-faq-btn:not(.collapsed) {
    color: var(--page-accent);
    background: rgba(0,0,0,0.02);
}
.p-faq-btn:focus {
    outline: none;
}

.p-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 2px solid #111;
    color: #111;
    transition: all 0.3s;
    position: relative;
    flex-shrink: 0;
}
.p-faq-btn:hover .p-faq-icon {
    background: #111;
    color: #fff;
}
.p-faq-btn:not(.collapsed) .p-faq-icon {
    background: var(--page-accent);
    border-color: var(--page-accent);
    color: #fff;
}

.p-icon-plus, .p-icon-minus {
    position: absolute;
    transition: all 0.3s;
}
.p-faq-btn.collapsed .p-icon-minus { opacity: 0; transform: scale(0.5) rotate(-90deg); }
.p-faq-btn.collapsed .p-icon-plus { opacity: 1; transform: scale(1) rotate(0); }
.p-faq-btn:not(.collapsed) .p-icon-plus { opacity: 0; transform: scale(0.5) rotate(90deg); }
.p-faq-btn:not(.collapsed) .p-icon-minus { opacity: 1; transform: scale(1) rotate(0); }

.p-faq-body {
    background: #fafafa;
}

/* ---- next block ---- */

/* ===== VERTICAL TABS ===== */
.vtabs-wrapper {
    display: flex;
    gap: 0;
    border: 2.5px solid #111;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 8px 8px 0px #111;
    min-height: 340px;
}
.vtabs-nav {
    width: 240px;
    flex-shrink: 0;
    background: #0d0d0d;
    display: flex;
    flex-direction: column;
}
.vtab-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.2s;
}
.vtab-item:last-child { border-bottom: none; }
.vtab-item:hover { background: rgba(255,255,255,0.05); }
.vtab-item.active { background: var(--page-accent); }
.vtab-num {
    font-family: 'Avenir', 'Avenir Next', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    min-width: 22px;
    transition: color 0.2s;
}
.vtab-item.active .vtab-num { color: rgba(255,255,255,0.7); }
.vtab-name {
    font-weight: 700;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}
.vtab-item.active .vtab-name,
.vtab-item:hover .vtab-name { color: #fff; }
.vtab-item:hover .vtab-num { color: rgba(255,255,255,0.6); }
.vtabs-content {
    flex: 1;
    background: #fff;
    padding: 36px 40px;
    position: relative;
}
.vtab-pane { display: none; }
.vtab-pane.active { display: block; animation: vtabFade 0.3s ease; }
@keyframes vtabFade { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }
.vtab-step-tag {
    display: inline-block;
    background: var(--page-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 14px;
}
.vtab-title {
    font-family: 'Avenir', 'Avenir Next', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.65rem;
    color: #111;
    margin-bottom: 16px;
}
.vtab-body {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}
@media (max-width: 768px) {
    .vtabs-wrapper { flex-direction: column; }
    .vtabs-nav { width: 100%; flex-direction: row; flex-wrap: wrap; }
    .vtab-item { flex: 0 0 50%; border-right: 1px solid rgba(255,255,255,0.06); }
    .vtabs-content { padding: 24px 20px; }
}

/* ---- next block ---- */

.price-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 8px 8px 0px var(--text-dark);
}
.price-card:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 15px 15px 0px var(--page-accent);
}
.price-card.recommended {
    border-color: var(--page-accent) !important;
    transform: scale(1.05);
    box-shadow: 15px 15px 0px var(--text-dark);
    z-index: 2;
}
.recommended-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 22px;
    background: #111 !important;
    color: #fff !important;
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 3px 3px 0px var(--page-accent);
    border: none;
}
.pkg-select-btn {
    background: #111;
    color: #fff;
    border: 2px solid #111;
    font-size: 0.95rem;
    transition: all 0.25s;
}
.pkg-select-btn:hover {
    background: var(--page-accent);
    border-color: var(--page-accent);
    color: #fff;
    transform: translateY(-2px);
}
.price-card.recommended .pkg-select-btn {
    background: var(--page-accent);
    border-color: var(--page-accent);
    color: #fff;
    box-shadow: 4px 4px 0px #111;
}
.price-card.recommended .pkg-select-btn:hover {
    background: #111;
    border-color: #111;
}

/* ---- next block ---- */

.hover-bg-white-opacity:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--page-accent) !important;
}
.hover-opacity-100:hover { opacity: 1 !important; }

/* ---- next block ---- */

.tmarquee-track-wrap { overflow: hidden; position: relative; }
.tmarquee-track-wrap::before,
.tmarquee-track-wrap::after {
    content:''; position:absolute; top:0; width:120px; height:100%; z-index:2; pointer-events:none;
}
.tmarquee-track-wrap::before { left:0; background:linear-gradient(to right,#fff,transparent); }
.tmarquee-track-wrap::after  { right:0; background:linear-gradient(to left,#fff,transparent); }
.tmarquee-track {
    display: flex; gap: 18px;
    animation: tscroll-left 40s linear infinite;
    width: max-content;
}
.tmarquee-reverse { animation: tscroll-right 40s linear infinite; }
@keyframes tscroll-left  { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes tscroll-right { from{transform:translateX(-50%)} to{transform:translateX(0)} }
.tmarquee-track:hover { animation-play-state: paused; }
.tcard {
    width: 300px; flex-shrink: 0;
    background: #fff;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s, transform 0.3s;
}
.tcard:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); transform: translateY(-4px); }
.tcard-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.tcard-stars { color: #F4B400; font-size: 1rem; letter-spacing: 1px; }
.tcard-review { font-size: 0.87rem; color: #374151; line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.tcard-footer { display:flex; align-items:center; gap:12px; }
.tcard-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 900; font-size: 0.85rem; flex-shrink: 0;
}
.tcard-name { font-weight: 900; font-size: 0.88rem; color: #111; }
.tcard-verified { color: #4285F4; font-size: 0.75rem; font-weight: 900; }
.tcard-role { font-size: 0.75rem; color: #6b7280; }

/* ---- next block ---- */

.network-card:hover { transform: translate(-5px, -5px); border-color: var(--page-accent) !important; box-shadow: 10px 10px 0px var(--page-accent); }

/* ---- next block ---- */

/* Cinematic Bento Hero Styles */
.service-bento-hero {
    min-height: 90vh;
    background: #fff;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(var(--page-accent-rgb), 0.05), #fff 60%);
}

.bento-card {
    background: #fff;
    border: 3px solid var(--text-dark);
    box-shadow: 12px 12px 0px var(--text-dark);
    border-radius: 40px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 10;
}
.bento-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 16px 16px 0px var(--page-accent);
}

.visual-card-v2 { 
    background: var(--text-dark) !important;
    box-shadow: 12px 12px 0px var(--page-accent);
}

/* Stunning Pricing V3 */
.pricing-card-v3 {
    background: #fff;
    border: 3px solid var(--text-dark);
    box-shadow: 15px 15px 0px var(--text-dark);
    border-radius: 50px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-card-v3:hover {
    transform: translateY(-15px);
    box-shadow: 25px 25px 0px var(--accent);
}

.popular-ribbon {
    position: absolute;
    top: 30px; right: -15px;
    background: var(--accent);
    color: #fff;
    padding: 10px 30px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 1px;
    transform: rotate(5deg);
    box-shadow: 5px 5px 0px var(--text-dark);
}

.pkg-check {
    background: rgba(var(--page-accent-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
}

/* Premium Form Styles */
.lead-form-wrap {
    box-shadow: 20px 20px 0px var(--page-accent);
}
.form-control-punchy {
    width: 100%;
    padding: 20px;
    background: #f8faff;
    border: 3px solid transparent;
    border-radius: 20px;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s;
}
.form-control-punchy:focus {
    outline: none;
    border-color: var(--page-accent);
    background: #fff;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.05);
}

.btn-punchy-big {
    background: var(--page-accent);
    color: #fff;
    border: 3px solid var(--text-dark);
    box-shadow: 8px 8px 0px var(--text-dark);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}
.btn-punchy-big:hover {
    transform: translate(-3px, -3px);
    box-shadow: 12px 12px 0px var(--text-dark);
}

/* Animations & Utilities */
.status-pulse {
    width: 10px; height: 10px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: p-blink 1.5s infinite;
}
@keyframes p-blink { 50% { opacity: 0.3; } }

.lead-bg-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.lb-1 {
    position: absolute;
    bottom: -20%; right: -10%;
    width: 800px; height: 800px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.1;
}

/* ---- next block ---- */

/* Perfected Bento Hero Styles */

.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.blob-1, .blob-2 {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    background: var(--page-accent);
    animation: blobAnim 25s infinite alternate;
}
.blob-1 { top: -20%; right: -10%; }
.blob-2 { bottom: -20%; left: -10%; animation-delay: -7s; }

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
}

.bento-card {
    background: #fff;
    border: 3px solid var(--text-dark);
    box-shadow: 12px 12px 0px var(--text-dark);
    border-radius: 40px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 10;
}
.bento-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 16px 16px 0px var(--page-accent);
}

.main-info-card { 
    border-right-width: 8px;
    border-bottom-width: 8px;
}

.visual-card-v2 { 
    background: var(--text-dark) !important;
    box-shadow: 12px 12px 0px var(--page-accent);
}

.trust-card-punchy {
    background: #fff;
    border-color: var(--text-dark);
}

.marquee-card-v2 {
    background: var(--page-accent);
    border-color: var(--text-dark);
    box-shadow: 12px 12px 0px var(--text-dark);
    transition: all 0.4s ease;
    cursor: pointer;
}
.marquee-card-v2:hover {
    background: var(--text-dark) !important;
    border-color: var(--page-accent);
    box-shadow: 12px 12px 0px var(--page-accent);
}
.marquee-card-v2:hover .marquee-item {
    color: var(--page-accent);
}

/* Punchy Typography */
.gradient-text-dynamic {
    background: linear-gradient(90deg, var(--text-dark), var(--page-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* Standard fallback for -webkit-text-fill-color */
    font-family: 'Avenir', 'Avenir Next', 'Montserrat', sans-serif;
    font-weight: 500;
}

.text-accent-dynamic { color: var(--page-accent); }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--text-dark);
    color: #fff;
    border-radius: 100px;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--page-accent);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

/* Energy Core Visual */
.energy-core {
    position: relative;
    width: 120px; height: 120px;
    margin: 0 auto;
}
.core-inner {
    position: absolute;
    inset: 30px;
    background: var(--page-accent);
    border-radius: 50%;
    box-shadow: 0 0 40px var(--page-accent);
    z-index: 2;
}
.core-ring, .core-ring-2 {
    position: absolute;
    inset: 0;
    border: 2px solid var(--page-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotateCore 4s linear infinite;
}
.core-ring-2 {
    inset: -15px;
    opacity: 0.1;
    animation-direction: reverse;
    animation-duration: 6s;
}

@keyframes rotateCore { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Buttons */
.btn-punchy {
    background: var(--page-accent);
    color: #fff;
    border: 3px solid var(--text-dark);
    box-shadow: 6px 6px 0px var(--text-dark);
    font-weight: 900;
    padding: 18px 35px;
    border-radius: 15px;
    transition: all 0.3s;
}
.btn-punchy:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0px var(--text-dark);
    background: var(--page-accent);
    color: #fff;
}

.btn-outline-dark-punchy {
    background: transparent;
    color: var(--text-dark);
    border: 3px solid var(--text-dark);
    font-weight: 900;
    padding: 18px 35px;
    border-radius: 15px;
    transition: all 0.3s;
}
.btn-outline-dark-punchy:hover {
    background: var(--text-dark);
    color: #fff;
}

/* Marquee V2 */
.marquee-content-v2 {
    animation: marqueeMove 20s linear infinite;
}
.marquee-item {
    font-family: 'Avenir', 'Avenir Next', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #fff;
    white-space: nowrap;
    transition: color 0.4s ease;
}
@keyframes marqueeMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Avatar Stack - Overlapping Google Style */
.avatar-stack {
    display: flex;
    align-items: center;
    padding-left: 8px;
}
.avatar-stack .av {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    color: #fff !important;
    border: 2.5px solid #fff !important; /* Premium separating boundary */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
    margin-left: -12px !important; /* Beautiful overlap spacing */
    position: relative;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}
.avatar-stack .av:first-child {
    margin-left: 0 !important; /* First child doesn't overlap left */
    z-index: 3; /* Render first child on top */
}
.avatar-stack .av:nth-child(2) {
    z-index: 2;
}
.avatar-stack .av:nth-child(3) {
    z-index: 1;
}
.avatar-stack .av:hover {
    transform: translateY(-4px) scale(1.12);
    z-index: 10 !important; /* Pop hovered avatar to the absolute top of stack */
    box-shadow: 0 8px 16px rgba(0,0,0,0.18) !important;
}

/* Official Google Profile Colors */
.bg-google-blue { background-color: #4285F4 !important; }
.bg-google-red { background-color: #EA4335 !important; }
.bg-google-green { background-color: #34A853 !important; }
.bg-google-yellow { background-color: #FBBC05 !important; }
.badge-accent-v2 {
    background: var(--page-accent);
    color: #fff;
    padding: 6px 15px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 12px;
}

/* Pulse animation */
@keyframes pulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Feature Cards Accent */
.sf-icon-wrap { background: rgba(var(--page-accent-rgb), 0.1) !important; }
.service-feat-card-v2:hover .sf-icon-wrap { background: var(--page-accent) !important; }

/* Process Glow */
.process-bg-glow {
    position: absolute;
    top: 50%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.15;
}

/* --- Enhanced Visual Box Animations --- */

/* SEO Dashboard */
.anim-seo-dashboard { position: relative; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.mini-chart-wrapper { width: 100%; max-width: 220px; height: 100px; position: relative; }
.trend-line polyline { stroke-dasharray: 400; stroke-dashoffset: 400; animation: drawLine 3s ease-out infinite alternate; filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5)); }
@keyframes drawLine { 0% { stroke-dashoffset: 400; } 100% { stroke-dashoffset: 0; } }
.trend-line circle { animation: pulseCircle 3s ease-out infinite alternate; filter: drop-shadow(0 0 10px var(--page-accent)); }
@keyframes pulseCircle { 0%, 90% { opacity: 0; transform: scale(0); } 100% { opacity: 1; transform: scale(1.5); } }
.keyword-pill { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; padding: 10px 20px; font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.6); display: inline-flex; align-items: center; justify-content: center; animation: floatPill 4s infinite ease-in-out; white-space: nowrap; }
@keyframes floatPill { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); box-shadow: 0 10px 15px rgba(0,0,0,0.3); } }

/* Window Mockup */
.anim-window-mockup { width: 100%; max-width: 220px; height: 160px; margin: 0 auto; background: #161616; border: 2px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; box-shadow: -15px 25px 30px rgba(0,0,0,0.6); transform: perspective(1000px) rotateY(-15deg) rotateX(5deg); animation: floatWindow 5s infinite ease-in-out; }
.mockup-header { height: 28px; background: rgba(0,0,0,0.4); display: flex; align-items: center; padding: 0 12px; gap: 6px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mockup-header .dot { width: 10px; height: 10px; border-radius: 50%; opacity: 0.8; }
.mockup-header .dot.red { background: #ff5f56; }
.mockup-header .dot.yellow { background: #ffbd2e; }
.mockup-header .dot.green { background: #27c93f; }
.mockup-body { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; gap: 10px; }
.skeleton-title { height: 14px; width: 60%; background: rgba(255,255,255,0.15); border-radius: 6px; animation: loadSkel 2s infinite alternate; }
.skeleton-text { height: 8px; width: 100%; background: rgba(255,255,255,0.08); border-radius: 4px; }
.skeleton-text.short { width: 75%; }
.skeleton-img { flex-grow: 1; background: rgba(255,255,255,0.03); border-radius: 8px; position: relative; overflow: hidden; border: 1px dashed rgba(255,255,255,0.1); }
.img-glow { position: absolute; top:0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); animation: sweep 3s infinite; }
@keyframes loadSkel { 0% { opacity: 0.5; } 100% { opacity: 1; box-shadow: 0 0 10px rgba(255,255,255,0.1); } }
@keyframes floatWindow { 0%, 100% { transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(0); } 50% { transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(-15px); } }
@keyframes sweep { 100% { left: 200%; } }

/* ROAS Ring */
.anim-roas-ring { position: relative; width: 160px; height: 160px; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.roas-svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); filter: drop-shadow(0 0 15px rgba(0,0,0,0.5)); }
.ring-fill { stroke-dasharray: 440; stroke-dashoffset: 440; animation: fillRing 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards infinite alternate; }
@keyframes fillRing { 0% { stroke-dashoffset: 440; } 100% { stroke-dashoffset: 100; } } /* 75% fill */
.roas-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; animation: heartbeat 2s infinite; }
.roas-ping { position: absolute; width: 12px; height: 12px; background: var(--page-accent); border-radius: 50%; box-shadow: 0 0 15px var(--page-accent); }
.ping-1 { top: 15px; left: 120px; animation: pulsePing 2s infinite alternate; }
.ping-2 { bottom: 25px; left: 20px; animation: pulsePing 2s infinite alternate 1s; }
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 10% { transform: scale(1.05); } 20% { transform: scale(1); } }
@keyframes pulsePing { 0% { transform: scale(1); opacity: 0.3; } 100% { transform: scale(1.8); opacity: 1; } }

/* ERP Blocks Dashboard */
.anim-erp-blocks { position: relative; width: 100%; max-width: 200px; height: 200px; margin: 0 auto; }
.erp-hub { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: #111; border: 2px solid var(--page-accent); border-radius: 12px; font-weight: 900; font-size: 14px; z-index: 3; color: white; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; width: 80px; height: 80px; animation: hubPulse 2s infinite alternate; letter-spacing: 1px; }
.erp-module { position: absolute; padding: 6px 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 8px; z-index: 2; backdrop-filter: blur(5px); }
.m-top { top: 0; left: 50%; transform: translateX(-50%); }
.m-right { top: 50%; right: -15px; transform: translateY(-50%); }
.m-bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.m-left { top: 50%; left: -15px; transform: translateY(-50%); }
.erp-connections { position: absolute; top:0; left: 50%; transform: translateX(-50%); width: 200px; height: 200px; z-index: 1; overflow: visible; }
.c-line { opacity: 0.2; stroke-dasharray: 4; stroke-linecap: round; }
.data-packet { position: absolute; width: 8px; height: 8px; background: var(--page-accent); border-radius: 50%; box-shadow: 0 0 12px var(--page-accent); z-index: 4; }
.p-top { top: 35px; left: 50%; transform: translateX(-50%); animation: packTB 2s infinite linear; }
.p-bottom { bottom: 35px; left: 50%; transform: translateX(-50%); animation: packBT 2s infinite linear 1s; }
.p-right { top: 50%; right: 35px; transform: translateY(-50%); animation: packRL 2s infinite linear 0.5s; }
.p-left { top: 50%; left: 35px; transform: translateY(-50%); animation: packLR 2s infinite linear 1.5s; }
@keyframes hubPulse { 0% { box-shadow: 0 0 15px rgba(0,0,0,0.5); } 100% { box-shadow: 0 0 25px var(--page-accent), inset 0 0 15px rgba(255,255,255,0.1); } }
@keyframes packTB { 0% { top: 35px; opacity: 1; transform: translateX(-50%) scale(1); } 50% { transform: translateX(-50%) scale(1.5); } 80% { top: 80px; opacity: 1; } 100% { top: 80px; opacity: 0; } }
@keyframes packBT { 0% { bottom: 35px; opacity: 1; transform: translateX(-50%) scale(1); } 50% { transform: translateX(-50%) scale(1.5); } 80% { bottom: 80px; opacity: 1; } 100% { bottom: 80px; opacity: 0; } }
@keyframes packRL { 0% { right: 35px; opacity: 1; transform: translateY(-50%) scale(1); } 50% { transform: translateY(-50%) scale(1.5); } 80% { right: 80px; opacity: 1; } 100% { right: 80px; opacity: 0; } }
@keyframes packLR { 0% { left: 35px; opacity: 1; transform: translateY(-50%) scale(1); } 50% { transform: translateY(-50%) scale(1.5); } 80% { left: 80px; opacity: 1; } 100% { left: 80px; opacity: 0; } }

/* SaaS Server UI */
.anim-saas-server { width: 100%; max-width: 240px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.server-rack { width: 100%; padding: 18px 15px; background: rgba(0,0,0,0.4); border: 2px solid rgba(255,255,255,0.05); border-radius: 16px; display: flex; flex-direction: column; gap: 12px; box-shadow: inset 0 10px 30px rgba(0,0,0,0.8); }
.server-blade { height: 32px; border: 1px solid rgba(255,255,255,0.05); border-radius: 6px; background: #151515; display: flex; align-items: center; justify-content: flex-start; padding: 0 14px; position: relative; overflow: hidden; }
.server-blade.active { border-color: var(--page-accent); box-shadow: inset 0 0 15px rgba(var(--page-accent-rgb), 0.1); }
.blade-lights { display: flex; gap: 6px; z-index: 2; position: relative; }
.blade-lights span { width: 8px; height: 8px; border-radius: 50%; }
.l-grn { background: #27c93f; animation: blinkGrn 1s infinite alternate; }
.l-blu { background: var(--page-accent); opacity: 0.5; }
.l-blu.pulse { animation: blinkBlu 0.4s infinite; box-shadow: 0 0 10px var(--page-accent); }
.blade-load { position: absolute; right: 0; top: 0; bottom: 0; background: rgba(255,255,255,0.03); z-index: 1; transform-origin: right; animation: loadWobble 2.5s infinite alternate ease-in-out; border-left: 2px solid rgba(255,255,255,0.1); }
@keyframes blinkGrn { 0% { opacity: 0.3; } 100% { opacity: 1; box-shadow: 0 0 8px #27c93f; } }
@keyframes blinkBlu { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
@keyframes loadWobble { 0% { transform: scaleX(0.95); } 100% { transform: scaleX(1.05); } }

/* Energy Core Upgraded */
.energy-core-upgraded { position: relative; width: 160px; height: 160px; margin: 0 auto; display: flex; align-items: center; justify-content: center; perspective: 800px; }
.core-orbit { position: absolute; width: 100%; height: 100%; border: 3px solid rgba(255,255,255,0.05); border-radius: 50%; filter: drop-shadow(0 0 5px var(--page-accent)); }
.o-1 { border-top-color: var(--page-accent); transform: rotateX(70deg); animation: orbSpin1 5s linear infinite; }
.o-2 { border-right-color: var(--page-accent); transform: rotateY(70deg); animation: orbSpin2 6s linear infinite; }
.core-center { width: 50px; height: 50px; background: var(--page-accent); border-radius: 50%; box-shadow: 0 0 40px var(--page-accent), 0 0 80px var(--page-accent); animation: corePulse 2s infinite alternate cubic-bezier(0.4, 0, 0.2, 1); position: relative; z-index: 3; }
.core-ring.pulse-ring { position: absolute; width: 140px; height: 140px; border: 2px solid var(--page-accent); border-radius: 50%; opacity: 0; animation: expandRing 3s infinite ease-out; }
@keyframes orbSpin1 { 0% { transform: rotateX(70deg) rotateZ(0deg); } 100% { transform: rotateX(70deg) rotateZ(360deg); } }
@keyframes orbSpin2 { 0% { transform: rotateY(70deg) rotateZ(0deg); } 100% { transform: rotateY(70deg) rotateZ(360deg); } }
@keyframes corePulse { 0% { transform: scale(0.85); box-shadow: 0 0 20px var(--page-accent); } 100% { transform: scale(1.15); box-shadow: 0 0 50px var(--page-accent), 0 0 100px var(--page-accent); } }
@keyframes expandRing { 0% { transform: scale(0.3); opacity: 0.8; stroke-width: 4px; } 100% { transform: scale(1.2); opacity: 0; stroke-width: 1px; } }

/* --- Compact Pricing Block CSS --- */
.pricing-compact-wrapper {
    transition: transform 0.4s ease;
}
.pricing-col {
    transition: background 0.3s ease;
}
.pricing-col:hover {
    background: rgba(0,0,0,0.015);
}
.recommended-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: var(--page-accent);
}
.btn-punchy-compact {
    background: var(--page-accent);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: none;
    letter-spacing: 0.5px;
}
.btn-punchy-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background: var(--page-accent);
    color: #fff !important;
}
.btn-outline-compact {
    background: transparent;
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    letter-spacing: 0.5px;
}
.btn-outline-compact:hover {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: #fff !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Utility & Replaced Inline Classes */
.max-w-1300 { max-width: 1300px; }
.max-w-900 { max-width: 900px; }
.max-w-800 { max-width: 800px; }
.max-w-600 { max-width: 600px; }
.text-15px { font-size: 15px; }
.text-14px { font-size: 14px; }
.text-11px { font-size: 11px; }
.text-10px { font-size: 10px; }
.h-40px { height: 40px; }

.hero-form-box {
    border: 3px solid #111;
    box-shadow: 8px 8px 0px var(--page-accent);
    border-radius: 24px;
}
.hero-form-glow {
    width: 150px; height: 150px;
    background: var(--page-accent);
    filter: blur(60px);
    opacity: 0.15;
    transform: translate(30%, -30%);
    z-index: 0;
}
.status-badge-custom {
    box-shadow: 3px 3px 0px var(--page-accent);
    font-size: 11px;
}
.status-dot-custom {
    width: 6px; height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}
.btn-punchy-custom {
    border-radius: 12px;
    font-weight: 900;
    padding: 10px;
    font-size: 15px;
}
.shadow-accent { box-shadow: 12px 12px 0px var(--page-accent); }
.auth-card-dark {
    background: linear-gradient(145deg, #000 0%, #000 75%, rgba(var(--page-accent-rgb), 0.12) 100%);
    border-color: #111 !important;
}
.auth-card-glow {
    background: radial-gradient(circle at top right, rgba(var(--page-accent-rgb), 0.1), transparent 70%);
    pointer-events: none;
}
.text-auth-p { font-size: 1.1rem; line-height: 1.8; opacity: 1; }
.floating-nav-pos { z-index: 1050; bottom: 30px; }
.nav-pill-bg { background: rgba(0,0,0,0.92); backdrop-filter: blur(15px); }
.btn-quote-custom {
    font-size: 10px; height: 32px;
    background: var(--page-accent);
    color: #000;
    transition: all 0.3s;
    border: none;
}
.text-sc-title { font-size: 1.15rem; color: #111; }
.text-accent-only { color: var(--page-accent); }
.bg-05 { background: #050505; }
.roi-glow {
    background: radial-gradient(circle at right, rgba(var(--page-accent-rgb), 0.1), transparent 50%);
    top: 0; left: 0;
    pointer-events: none;
}
.text-updates { color: rgba(255,255,255,0.88); line-height: 1.75; margin-bottom: 0; }
.w-50-h-50 { width: 50px; height: 50px; }
.video-wrap-custom { aspect-ratio: 16/9; background: #000; }
.w-80-h-80 { width: 80px; height: 80px; }
.icon-play-custom { font-size: 40px; margin-left: 5px; }
.bg-page-accent { background: var(--page-accent); }

/* Remaining utility classes */
.pkg-badge-custom {
    background: color-mix(in srgb, var(--pkg-color) 20%, transparent);
    color: var(--pkg-color);
    font-size: 10px;
    border: 1px solid color-mix(in srgb, var(--pkg-color) 50%, transparent);
}
.text-pkg-color { color: var(--pkg-color); }
.bg-avatar-color { background: var(--avatar-color); }
.text-light-opacity { color: rgba(255,255,255,0.65); }